/* ============================================================
   WIDDLE WUTA — wuta.css
   Purpose-built stylesheet. No template bloat.
   ============================================================ */

/* ------------------------------------------------------------
   CSS Variables
   ------------------------------------------------------------ */
:root {
  /* Colors — pulled directly from Wuta's logo and coat */
  --blue:        #5ab4e8;   /* logo "Wuta" blue / her eye color */
  --blue-dark:   #3a8fc0;   /* darker blue for hover states */
  --blue-light:  #85cef5;   /* lighter blue for accents on dark bg */
  --blue-pale:   #e8f4fc;   /* very pale blue for light section tints */
  --dark:        #141414;   /* near-black — logo background */
  --dark-mid:    #222222;   /* slightly lighter dark for cards/bands */
  --dark-section:#1a1a1a;   /* dark sections (nav, hero, footer) */
  --charcoal:    #2e2e2e;   /* dark body text */
  --gray:        #6e7080;   /* secondary text */
  --gray-mid:    #9a9ba8;   /* lighter secondary */
  --gray-light:  #f4f5f7;   /* light section backgrounds */
  --white:       #ffffff;

  /* Merle accent — her coat's blue-grey tone */
  --merle:       #7db8d4;
  --merle-pale:  #daedf5;
  --merle-soft:  rgba(125, 184, 212, 0.12);

  /* Typography */
  --font-display: 'Akaya Telivigala', cursive;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --gap:    clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(2.5rem, 5vw, 4rem);

  /* Radius */
  --radius:    12px;
  --radius-lg: 24px;

  /* Shadow */
  --shadow-sm: 0 2px 12px rgba(90, 180, 232, 0.12);
  --shadow-md: 0 8px 32px rgba(90, 180, 232, 0.18);
  --shadow-lg: 0 20px 60px rgba(90, 180, 232, 0.22);

  /* Nav height */
  --nav-h: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark-section);
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

p { color: var(--gray); }
em { font-style: italic; color: var(--blue); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-label-light { color: var(--blue-light); }

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.bg-light { background: var(--gray-light); }
.bg-dark  { background: var(--dark); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,.7); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header p { margin-top: .75rem; }

.section-footer {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.section > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,143,192,.4);
}
.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   Preloader
   ------------------------------------------------------------ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s var(--ease), visibility .5s;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-sprite { position: absolute; width: 0; height: 0; }
.preloader-paws {
  display: flex;
  gap: .5rem;
  align-items: flex-end;
}
.preloader-paw {
  width: 40px; height: 40px;
  fill: var(--blue);
  opacity: 0;
  animation: pawBounce 1.2s var(--ease) infinite;
}
.preloader-paw:nth-child(1) { animation-delay: 0s; }
.preloader-paw:nth-child(2) { animation-delay: .15s; }
.preloader-paw:nth-child(3) { animation-delay: .3s; }
.preloader-paw:nth-child(4) { animation-delay: .45s; }
.preloader-paw:nth-child(5) { animation-delay: .6s; }

@keyframes pawBounce {
  0%, 100% { opacity: .2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-12px); }
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(20,20,20,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
  gap: 1.5rem;
}

.navbar-brand img {
  height: 58px;
  width: auto;
  transition: transform .2s var(--ease);
}
.navbar-brand:hover img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .5rem .75rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue-light);
  background: rgba(255,255,255,.06);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-width: 200px;
  padding: .5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.dropdown a:hover {
  color: var(--blue-light);
  background: rgba(255,255,255,.06);
}

/* Social icons in nav */
.nav-socials {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.hero-title em {
  display: block;
  font-style: normal;
  color: var(--blue-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(90,180,232,.18);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 70px; height: 70px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(90,180,232,.45);
  animation: heroFloat 6s ease-in-out infinite;
  animation-delay: .5s;
}
.hero-paw {
  width: 38px; height: 38px;
  fill: var(--white);
}

/* Hero entrance animations — single container fade, no layout shift */
.hero-text {
  animation: fadeUp .8s var(--ease) both;
  animation-delay: .7s;
}
.hero-image {
  animation: fadeIn .9s var(--ease) both;
  animation-delay: .8s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ------------------------------------------------------------
   About Snippet
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { margin-bottom: 1rem; }
.about-content .btn { margin-top: .75rem; }

/* ------------------------------------------------------------
   Feature Cards
   ------------------------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg {
  width: 24px; height: 24px;
  color: var(--blue);
  stroke: var(--blue);
  fill: none;
}
.feature-icon svg[viewBox="0 0 249 209.32"] {
  fill: var(--blue);
  stroke: none;
}

.feature-card h4 { margin-bottom: .5rem; }

/* ------------------------------------------------------------
   CTA Band
   ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--dark-mid) 100%);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.cta-band-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-band-decor-1 {
  width: 180px; height: 180px;
  top: -60px; left: -40px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-band-decor-2 {
  width: 140px; height: 140px;
  bottom: -50px; right: 10%;
  background: radial-gradient(circle, rgba(90,180,232,.09) 0%, transparent 70%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text h3 { color: var(--white); margin-bottom: .5rem; }
.cta-band-text p  { color: rgba(255,255,255,.7); }

/* ------------------------------------------------------------
   Products
   ------------------------------------------------------------ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card-link { display: block; }
.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-label {
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark-section);
  background: var(--white);
  text-align: center;
  border-top: 2px solid var(--blue-pale);
}

/* ------------------------------------------------------------
   Gallery Tease
   ------------------------------------------------------------ */
.gallery-tease-decor-1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(90,180,232,.07) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-tease-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.gallery-tease-image img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(90,180,232,.15);
}
.gallery-tease-content { padding-block: 1rem; }
.gallery-tease-content h2 { margin-bottom: 1rem; }
.gallery-tease-content p  { margin-bottom: 1.5rem; }


/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { height: 56px; width: auto; margin-bottom: 1.25rem; }
.footer-about p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-socials {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.footer-socials .social-icon {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
}
.footer-socials .social-icon:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav h5, .footer-shop-nav h5, .footer-snaps h5 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav ul li + li, .footer-shop-nav ul li + li { margin-top: .6rem; }
.footer-nav a, .footer-shop-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-nav a:hover, .footer-shop-nav a:hover { color: var(--blue-light); }

.footer-bottom {
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; margin: 0; }
.footer-bottom a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--blue-light); }

/* ------------------------------------------------------------
   Breadcrumb (inner pages)
   ------------------------------------------------------------ */
.breadcrumb-hero {
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  margin-top: var(--nav-h);
  position: relative;
}
.breadcrumb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,.3), rgba(20,20,20,.7));
}
.breadcrumb-hero .container { position: relative; z-index: 1; }
.breadcrumb-hero h1 {
  color: var(--white);
  margin-bottom: .5rem;
}
.breadcrumb-path {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb-path a { color: var(--blue-light); }
.breadcrumb-path li + li::before { content: '/'; margin-right: .5rem; opacity: .5; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(20,20,20,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
    pointer-events: none;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .nav-link { padding: .75rem 1rem; font-size: 1rem; border-radius: 8px; }

  .dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,.05);
    box-shadow: none;
    border: none;
    padding: .25rem .5rem;
    margin-top: .25rem;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }

  .nav-socials { justify-content: center; }

  /* Layout stacks */
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-cta          { justify-content: center; }
  .hero-subtitle     { margin-inline: auto; }
  .hero-image        { order: -1; }
  .hero-image-frame  { max-width: 340px; margin-inline: auto; }
  .hero-image-frame img { max-height: 360px; }

  .about-grid           { grid-template-columns: 1fr; }
  .gallery-tease-inner  { grid-template-columns: 1fr; }
  .cta-band-inner       { text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image-frame img { max-height: 280px; }
}

/* ------------------------------------------------------------
   Inner Pages — Page Hero
   ------------------------------------------------------------ */
.page-hero {
  height: 300px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-overlay {
  display: none;
}
.page-hero-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-bubble-1 {
  width: 320px; height: 320px;
  top: -120px; right: 8%;
  background: radial-gradient(circle at center, rgba(90,180,232,.18) 0%, transparent 65%);
}
.page-hero-bubble-2 {
  width: 200px; height: 200px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle at center, rgba(125,184,212,.12) 0%, transparent 65%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 2.5rem;
}
.page-hero-inner h1 {
  color: var(--white);
  margin-top: .25rem;
}

/* Blue gradient background — for timeline and other mid-page dark sections */
.bg-blue-grad {
  background: linear-gradient(135deg, #0e2a3a 0%, #1a3d52 50%, #0e2a3a 100%);
  color: var(--white);
}
.bg-blue-grad h2, .bg-blue-grad h3, .bg-blue-grad h4 { color: var(--white); }
.bg-blue-grad p { color: rgba(255,255,255,.7); }

/* About page */
.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.about-grid-reverse .about-image { order: 2; }
.about-grid-reverse .about-content { order: 1; }
.about-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* ------------------------------------------------------------
   Timeline
   ------------------------------------------------------------ */
.timeline-section .section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
}

/* Image always on the left for normal items */
.timeline-item .timeline-image {
  padding: 0 2rem 3rem 0;
  grid-column: 1;
}
.timeline-item .timeline-connector {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-item .timeline-content {
  padding: 0 0 3rem 2rem;
  grid-column: 3;
}

/* Reversed items — image on the right */
.timeline-item-reverse .timeline-image {
  grid-column: 3;
  grid-row: 1;
  padding: 0 0 3rem 2rem;
}
.timeline-item-reverse .timeline-connector {
  grid-column: 2;
  grid-row: 1;
}
.timeline-item-reverse .timeline-content {
  grid-column: 1;
  grid-row: 1;
  padding: 0 2rem 3rem 0;
  text-align: right;
}

.timeline-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 3/2;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #1a3d52;
  box-shadow: 0 0 0 3px var(--blue);
  flex-shrink: 0;
  margin-top: .25rem;
  z-index: 1;
}

.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 2rem;
  background: linear-gradient(to bottom, var(--blue), rgba(90,180,232,.2));
  margin-top: .5rem;
}

.timeline-date {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: .6rem;
}

.timeline-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: .3rem;
}
.timeline-content h4 {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.timeline-content p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.7;
}

/* Timeline responsive */
@media (max-width: 768px) {
  .timeline-item,
  .timeline-item-reverse {
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto;
  }

  .timeline-item .timeline-image,
  .timeline-item-reverse .timeline-image {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 1rem 1rem;
  }
  .timeline-item .timeline-connector,
  .timeline-item-reverse .timeline-connector {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .timeline-item .timeline-content,
  .timeline-item-reverse .timeline-content {
    grid-column: 2;
    grid-row: 2;
    padding: 0 0 2.5rem 1rem;
    text-align: left;
  }
}

/* Feature cards inside blue gradient section */
.bg-blue-grad .feature-card h4 { color: var(--charcoal); }
.bg-blue-grad .feature-card p  { color: var(--gray); }

/* ------------------------------------------------------------
   Gallery
   ------------------------------------------------------------ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-filter-btn {
  padding: .5rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: 2px solid rgba(90,180,232,.3);
  color: var(--gray);
  background: transparent;
  transition: all .2s var(--ease);
}
.gallery-filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.gallery-filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Masonry-style grid using CSS grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.gallery-card-tall {
  grid-row: span 2;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.9) 0%, rgba(20,20,20,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .3rem;
}
.gallery-card-overlay p {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  line-height: 1.5;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.gallery-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(90,180,232,.5);
  border-radius: 50px;
  padding: .2rem .6rem;
}

.gallery-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.gallery-count {
  font-size: .85rem;
  color: var(--gray-mid);
  margin: 0;
}

/* Gallery responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-card-tall { grid-row: span 1; }
}

/* ------------------------------------------------------------
   Lightbox
   ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  gap: 1rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  text-align: center;
  max-width: 600px;
}
.lightbox-caption h4 {
  color: var(--white);
  margin-bottom: .3rem;
}
.lightbox-caption p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin: 0;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(255,255,255,.7);
  line-height: 1;
  transition: color .2s;
  z-index: 9001;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255,255,255,.6);
  line-height: 1;
  padding: .5rem;
  transition: color .2s;
  z-index: 9001;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--blue-light); }

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: .75rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .02em;
}

.required { color: var(--blue); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(90,180,232,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; cursor: pointer; }

.btn-submit { align-self: flex-start; min-width: 160px; justify-content: center; }

.form-feedback {
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
}
.form-feedback-success {
  background: rgba(90,180,232,.12);
  color: var(--blue-dark);
  border: 1px solid rgba(90,180,232,.3);
}
.form-feedback-error {
  background: rgba(220,60,60,.08);
  color: #c0392b;
  border: 1px solid rgba(220,60,60,.2);
}

/* Contact — right column */
.contact-connect { padding-top: .5rem; }
.contact-connect h3 { margin-bottom: .75rem; }
.contact-connect > p { margin-bottom: 2rem; }

.contact-globe {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-globe img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.contact-social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .75rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.04);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-social-link:hover {
  background: var(--blue-pale);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.contact-social-icon {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-social-icon svg {
  width: 16px; height: 16px;
  color: var(--blue);
  stroke: var(--blue);
}
.contact-social-link div:last-child {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}
.contact-social-link strong {
  font-size: .8rem;
  color: var(--charcoal);
  font-weight: 700;
  white-space: nowrap;
}
.contact-social-link span {
  font-size: .72rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Blog Index
   ------------------------------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.blog-card-category {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-card-date {
  font-size: .78rem;
  color: var(--gray-mid);
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  line-height: 1.3;
}
.blog-card-title a {
  color: var(--navy, #1a2e35);
  transition: color .2s;
}
.blog-card-title a:hover { color: var(--blue); }

.blog-card-excerpt {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .03em;
  transition: color .2s;
  align-self: flex-start;
}
.blog-card-read-more:hover { color: var(--blue-dark); }

.blog-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray);
}

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Blog Post
   ------------------------------------------------------------ */
.blog-post-container {
  max-width: 780px;
}

.blog-post-header {
  margin-bottom: 2rem;
}
.blog-post-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.blog-post-date {
  font-size: .85rem;
  color: var(--gray);
}
.blog-post-category {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border-radius: 50px;
  padding: .25rem .75rem;
}
.blog-post-tags {
  font-size: .8rem;
  color: var(--gray-mid);
}

.blog-post-hero-image {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

.blog-post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.blog-post-body p { margin-bottom: 1.5rem; }

.blog-figure {
  margin: 2rem 0;
  text-align: center;
}
.blog-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.blog-figure figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--gray);
  font-style: italic;
}

.blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Blog video */
.blog-video {
  width: 100%;
  max-height: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  display: block;
  background: var(--dark);
}

/* YouTube embed hero */
.blog-post-video-hero {
  margin-bottom: 2.5rem;
}
.blog-youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.blog-youtube-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ------------------------------------------------------------
   Shop — Overview
   ------------------------------------------------------------ */
.shop-categories-preview {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0 1.5rem;
}
.shop-cat-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 50px;
  padding: .3rem .85rem;
}
.shop-disclaimer {
  font-size: .78rem;
  color: var(--gray-mid);
  font-style: italic;
  margin-top: .5rem;
}

/* ------------------------------------------------------------
   Shop — Fluffy Finds
   ------------------------------------------------------------ */
.finds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.find-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.find-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.find-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-light);
}
.find-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.find-card:hover .find-card-image img { transform: scale(1.04); }

.find-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.find-card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.find-cat-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border-radius: 50px;
  padding: .2rem .6rem;
}

.find-card h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
}
.find-card h4 a { color: var(--charcoal); transition: color .2s; }
.find-card h4 a:hover { color: var(--blue); }

.find-card-variant {
  font-size: .78rem;
  color: var(--gray-mid);
  margin: 0;
}

.find-card-blurb {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  flex: 1;
}

.find-card-btn {
  margin-top: .5rem;
  font-size: .82rem;
  padding: .6rem 1.25rem;
  align-self: flex-start;
}

/* Finds responsive */
@media (max-width: 1024px) {
  .finds-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .finds-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Shop — Bark & Browse Coming Soon
   ------------------------------------------------------------ */
.coming-soon-hero {
  min-height: calc(100svh - var(--nav-h));
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.coming-soon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.coming-soon-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.coming-soon-content h1 em {
  color: var(--blue-light);
  font-style: normal;
}
.coming-soon-content p {
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  max-width: 480px;
}
.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.coming-soon-preview-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(90,180,232,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.coming-soon-paw-icon {
  width: 72px;
  height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.coming-soon-paw-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.coming-soon-preview-card h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.coming-soon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.coming-soon-list li {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.coming-soon-list li:last-child { border-bottom: none; }

.coming-soon-note {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .coming-soon-inner { grid-template-columns: 1fr; }
  .coming-soon-hero { min-height: auto; }
}

/* ------------------------------------------------------------
   Privacy Policy
   ------------------------------------------------------------ */
.privacy-content {
  max-width: 780px;
}
.privacy-updated {
  font-size: .85rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
  font-style: italic;
}
.privacy-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
  color: var(--charcoal);
}
.privacy-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.privacy-content a {
  color: var(--blue);
  text-decoration: underline;
}
.privacy-content a:hover {
  color: var(--blue-dark);
}

/* ------------------------------------------------------------
   404 Error Page
   ------------------------------------------------------------ */
.error-page {
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.error-page-inner {
  text-align: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}
.error-paw {
  width: 80px;
  height: 80px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.error-paw svg {
  width: 44px;
  height: 44px;
  fill: var(--white);
}
.error-page-inner h1 {
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--blue);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-page-inner h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.error-page-inner p {
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.error-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
