/* ================================================================
   PET'S CARE SERVICE — STYLESHEET
   ================================================================
   Aesthetic : Luxury Medical / Warm Professional
   Palette   : Deep Navy · Warm Gold · Ivory
   Fonts     : Cormorant Garamond (headings) + Outfit (body)
   Grid      : CSS Grid + Flexbox, mobile-first responsive
   ================================================================ */


/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Navy spectrum */
  --navy:       #0b1f35;
  --navy-mid:   #162f4e;
  --navy-light: #1e4070;
  --navy-pale:  #243858;

  /* Gold spectrum */
  --gold:       #c9922a;
  --gold-light: #e8b252;
  --gold-pale:  #fdf3e3;
  --gold-faint: #faf0dc;

  /* Neutrals */
  --ivory:      #f9f6f0;
  --white:      #ffffff;
  --text:       #1a2b3c;
  --muted:      #5a7080;

  /* Borders & shadows */
  --border:      rgba(201,146,42,0.18);
  --border-soft: rgba(201,146,42,0.10);
  --shadow:      0 8px 40px rgba(11,31,53,0.10);
  --shadow-lg:   0 24px 64px rgba(11,31,53,0.18);
  --shadow-xl:   0 40px 80px rgba(11,31,53,0.22);

  /* Radii */
  --r:    18px;
  --r-sm: 10px;
}


/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}


/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }
em { font-style: italic; color: var(--gold); }


/* ── LAYOUT UTILITIES ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 108px 0; }

.section__label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 600;
}

.section__desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.section__header { text-align: center; margin-bottom: 72px; }
.section__header .section__desc { margin: 0 auto; }


/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
              transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: 0.3px;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.3s ease;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%);
  color: var(--white);
}

.btn--3d {
  box-shadow: 0 4px 0 #8a5a10, 0 8px 24px rgba(201,146,42,0.35);
  transform: translateY(0);
}
.btn--3d:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #8a5a10, 0 14px 32px rgba(201,146,42,0.45);
}
.btn--3d:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #8a5a10, 0 4px 12px rgba(201,146,42,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn--full { width: 100%; }


/* ── FLOATING CALL BUTTON ─────────────────────────────────────── */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #e8b252, var(--gold));
  color: var(--white);
  padding: 13px 22px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 0 #8a5a10, 0 12px 32px rgba(201,146,42,0.45);
  transition: all 0.3s ease;
}
.fab svg { width: 18px; height: 18px; }
.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #8a5a10, 0 18px 40px rgba(201,146,42,0.5);
}


/* ── NAVBAR ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(11,31,53,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(201,146,42,0.15);
}

.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nav__logo-mark {
  width: 52px; height: 52px; border-radius: 14px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.nav__logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__logo:hover .nav__logo-mark {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.nav__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 700; color: var(--white);
  display: block; line-height: 1;
}
.nav__logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 9px; letter-spacing: 3px; color: var(--gold);
  font-weight: 600; display: block;
}

.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 14px; font-weight: 400; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold-light); }

.nav__cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--white) !important;
  padding: 9px 22px; border-radius: 50px;
  font-weight: 600 !important; letter-spacing: 0.3px;
  box-shadow: 0 3px 0 #7a4808, 0 6px 18px rgba(201,146,42,0.4);
  transition: all 0.3s ease !important;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #7a4808, 0 10px 24px rgba(201,146,42,0.5) !important;
}

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--white);
  display: block; transition: all 0.3s; border-radius: 2px;
}


/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 80px;
  background: var(--navy); position: relative; overflow: hidden;
}

/* 3D geometric backdrop */
.hero__scene { position: absolute; inset: 0; pointer-events: none; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.geo { position: absolute; border-radius: 50%; }

.geo--sphere-lg {
  width: 520px; height: 520px; right: -100px; top: -160px;
  background: radial-gradient(circle at 35% 35%, rgba(201,146,42,0.18) 0%, rgba(22,47,78,0.6) 50%, transparent 75%);
  box-shadow: inset -30px -30px 60px rgba(0,0,0,0.4), inset 20px 20px 40px rgba(201,146,42,0.05);
  border: 1px solid rgba(201,146,42,0.12);
  animation: sphere-breathe 8s ease-in-out infinite;
}
.geo--sphere-sm {
  width: 240px; height: 240px; left: -60px; bottom: 80px;
  background: radial-gradient(circle at 40% 35%, rgba(42,100,180,0.2) 0%, transparent 70%);
  border: 1px solid rgba(42,100,180,0.1);
  animation: sphere-breathe 6s ease-in-out infinite reverse;
}
.geo--ring {
  width: 300px; height: 300px; right: 15%; top: 15%;
  border: 1px solid rgba(201,146,42,0.1); background: transparent;
  animation: spin-slow 25s linear infinite;
}
.geo--ring::after {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.06);
}
.geo--cube {
  width: 80px; height: 80px; border-radius: 16px;
  right: 8%; bottom: 25%;
  background: rgba(201,146,42,0.06); border: 1px solid rgba(201,146,42,0.12);
  transform: rotate(18deg);
  animation: cube-float 6s ease-in-out infinite;
}
.geo--pill {
  width: 140px; height: 48px; border-radius: 50px;
  left: 12%; top: 22%;
  background: rgba(42,100,180,0.06); border: 1px solid rgba(42,100,180,0.1);
  transform: rotate(-12deg);
  animation: cube-float 7s ease-in-out infinite reverse;
}

@keyframes sphere-breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes spin-slow      { to {transform:rotate(360deg)} }
@keyframes cube-float     { 0%,100%{transform:rotate(18deg) translateY(0)} 50%{transform:rotate(18deg) translateY(-14px)} }

.hero__wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.eyebrow-line { flex: 1; max-width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }

.hero__h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.06; font-weight: 600;
  color: var(--white); margin-bottom: 22px; letter-spacing: -0.5px;
}
.hero__h1 em { display: block; color: var(--gold-light); }

.hero__desc {
  font-size: 17px; color: rgba(255,255,255,0.62);
  line-height: 1.8; margin-bottom: 14px; max-width: 440px;
}
.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic;
  color: rgba(255,255,255,0.45); margin-bottom: 38px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* 3D Card Stack */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.card-stack { position: relative; width: 340px; height: 420px; }

.card-stack__bg-2 {
  position: absolute; inset: 28px 24px 0; border-radius: 24px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  transform: rotate(6deg) translateY(8px);
}
.card-stack__bg-1 {
  position: absolute; inset: 14px 12px 0; border-radius: 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  transform: rotate(3deg) translateY(4px);
}
.card-stack__main {
  position: absolute; inset: 0 0 28px;
  animation: card-levitate 5s ease-in-out infinite;
}
@keyframes card-levitate { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(-0.5deg)} }

.hero-card {
  width: 100%; height: 100%; border-radius: 24px;
  background: linear-gradient(145deg, rgba(30,64,112,0.9) 0%, rgba(11,31,53,0.95) 100%);
  border: 1px solid rgba(201,146,42,0.25); padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
}
.hero-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.hero-card__status { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 400; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring { 0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,0.2)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0.1)} }
.hero-card__art { flex: 1; border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
.hero-card__art img { width: 100%; height: 100%; object-fit: contain; }

/* Floating badges */
.floating-badge {
  position: absolute; background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--navy);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.floating-badge svg { width: 16px; height: 16px; }
.floating-badge--a { top: 10%; right: -40px; animation: badge-float-a 4s ease-in-out infinite; }
.floating-badge--b { bottom: 15%; left: -36px; animation: badge-float-b 4.5s ease-in-out infinite; }
@keyframes badge-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes badge-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-track {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,146,42,0), rgba(201,146,42,0.6));
  animation: track-grow 2s ease-in-out infinite;
}
@keyframes track-grow { 0%{height:0;opacity:0} 50%{height:50px;opacity:1} 100%{height:50px;opacity:0} }
.hero__scroll span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }


/* ── TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,146,42,0.15);
  border-bottom: 1px solid rgba(201,146,42,0.15);
  padding: 32px 0;
}
.trust-strip__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
}
.trust-stat { display: flex; flex-direction: column; align-items: center; padding: 0 48px; }
.trust-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.trust-stat__suf {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--gold);
}
.trust-stat__label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }
.trust-sep { width: 1px; height: 56px; background: rgba(255,255,255,0.08); }


/* ── ABOUT ────────────────────────────────────────────────────── */
.about { background: var(--ivory); }
.about__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: center; }

.about__3d-scene { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; }
.about__3d-card {
  width: 300px; height: 360px; border-radius: 28px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
  box-shadow: 20px 20px 60px rgba(11,31,53,0.25), -10px -10px 30px rgba(255,255,255,0.8), inset 0 1px 0 rgba(255,255,255,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  border: 1px solid rgba(201,146,42,0.2);
  animation: card-3d-float 6s ease-in-out infinite;
}
@keyframes card-3d-float { 0%,100%{transform:perspective(800px) rotateY(-8deg) rotateX(4deg) translateY(0)} 50%{transform:perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-12px)} }

.about__stethoscope { width: 160px; height: 180px; }
.about__heartbeat   { width: 220px; height: 50px; overflow: visible; }
.heartbeat-path {
  stroke-dasharray: 500; stroke-dashoffset: 500;
  animation: draw-hb 3s ease forwards, hb-repeat 3s ease 3s infinite;
}
@keyframes draw-hb   { to { stroke-dashoffset: 0; } }
@keyframes hb-repeat { 0%{stroke-dashoffset:500} 60%{stroke-dashoffset:0} 100%{stroke-dashoffset:0} }

.about__chip {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(11,31,53,0.14); border: 1px solid var(--border-soft);
  animation: chip-float 4s ease-in-out infinite;
}
.about__chip--a { top: 8%; right: -20px; animation-delay: 0s; }
.about__chip--b { bottom: 10%; left: -20px; animation-delay: 1s; }
@keyframes chip-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.chip__icon {
  width: 36px; height: 36px; background: var(--gold-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.chip__icon svg { width: 18px; height: 18px; }
.chip__icon--red { background: #fff0f0; color: #e05050; }
.about__chip strong { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.about__chip small  { font-size: 11px; color: var(--muted); }

.about__text .section__title { font-size: clamp(28px, 3.5vw, 46px); }
.about__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.65; color: var(--navy);
  margin-bottom: 20px; font-style: italic;
}
.about__text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.about__pillars { display: flex; gap: 0; margin-top: 36px; }
.pillar {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 20px 16px; border-right: 1px solid var(--border-soft);
}
.pillar:last-child { border-right: none; }
.pillar__icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 12px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.pillar span  { font-size: 12px; color: var(--muted); }


/* ── SERVICES ─────────────────────────────────────────────────── */
.services { background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.svc-card {
  background: var(--ivory); border-radius: var(--r);
  padding: 30px 24px; border: 1px solid rgba(0,0,0,0.06);
  position: relative; transition: all 0.4s cubic-bezier(.22,1,.36,1);
  cursor: default;
}
.svc-card:hover {
  background: var(--navy); border-color: var(--navy);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(11,31,53,0.2);
}
.svc-card:hover h3 { color: var(--white); }
.svc-card:hover p  { color: rgba(255,255,255,0.62); }
.svc-card:hover .svc-card__arrow { opacity: 1; transform: translateX(0); color: var(--gold); }

.svc-card__icon-wrap { width: 52px; height: 52px; margin-bottom: 20px; }
.svc-card__icon-wrap svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }

.svc-card h3 {
  font-size: 17px; font-weight: 600; color: var(--navy);
  margin-bottom: 10px; font-family: 'Outfit', sans-serif;
  transition: color 0.4s;
}
.svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; transition: color 0.4s; }

.svc-card__arrow {
  position: absolute; bottom: 20px; right: 22px;
  width: 20px; height: 20px; opacity: 0;
  transform: translateX(-6px); transition: all 0.3s ease; color: var(--muted);
}
.svc-card__arrow svg { width: 100%; height: 100%; }

/* Emergency highlight card */
.svc-card--highlight { background: linear-gradient(145deg, #1a0a18, #2a0a20); border-color: rgba(200,42,80,0.3); }
.svc-card--highlight h3 { color: rgba(255,255,255,0.9); }
.svc-card--highlight p  { color: rgba(255,255,255,0.6) !important; }
.svc-card--highlight:hover { background: linear-gradient(145deg, #2a1030, #3a0a28) !important; transform: translateY(-8px) scale(1.02); }
.svc-card__tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(200,42,80,0.2); color: #f08080;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
  border: 1px solid rgba(200,42,80,0.3);
}


/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery__filters {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.gallery__filter {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500;
  padding: 10px 24px; border-radius: 50px;
  border: 1.5px solid #e4e8ee; background: transparent;
  color: var(--muted); cursor: pointer;
  transition: all 0.3s ease; letter-spacing: 0.3px;
}
.gallery__filter:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-faint);
}
.gallery__filter.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white); border-color: transparent;
  box-shadow: 0 3px 0 #8a5a10, 0 6px 18px rgba(201,146,42,0.3);
}

/* Masonry-style grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  grid-auto-flow: dense;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__img-wrap {
  position: relative; width: 100%; height: 100%;
  border-radius: var(--r); overflow: hidden;
  cursor: pointer;
}
.gallery__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.gallery__img-wrap:hover img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,31,53,0.85) 100%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery__img-wrap:hover .gallery__overlay { opacity: 1; }

.gallery__overlay-content {
  color: var(--white); width: 100%;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.gallery__img-wrap:hover .gallery__overlay-content { transform: translateY(0); }

.gallery__overlay-content svg { width: 28px; height: 28px; color: var(--gold-light); margin-bottom: 10px; opacity: 0.85; }
.gallery__overlay-content h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.gallery__overlay-content p  { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Filter animation states */
.gallery__item { transition: opacity 0.4s ease, transform 0.4s ease; }
.gallery__item.hidden {
  opacity: 0; transform: scale(0.85);
  pointer-events: none; position: absolute; visibility: hidden;
}
.gallery__item.visible-item { opacity: 1; transform: scale(1); }


/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,14,24,0.95); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__content {
  max-width: 90vw; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.lightbox__img {
  max-width: 100%; max-height: 75vh;
  border-radius: 16px; object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__caption {
  margin-top: 20px; text-align: center;
  color: rgba(255,255,255,0.8); font-size: 15px;
  font-family: 'Outfit', sans-serif; letter-spacing: 0.3px;
}
.lightbox__caption strong {
  display: block; font-size: 18px; color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif; margin-bottom: 4px;
}

.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-size: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; line-height: 1; z-index: 10;
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.15); border-color: var(--gold);
  color: var(--gold-light); transform: rotate(90deg);
}

.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; z-index: 10;
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev svg, .lightbox__next svg { width: 22px; height: 22px; }
.lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(201,146,42,0.15); border-color: var(--gold);
  color: var(--gold-light);
}

.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif; letter-spacing: 2px;
}


/* ── SPECIAL OFFER ────────────────────────────────────────────── */
.offer { background: var(--navy); overflow: hidden; }
.offer__wrap {
  display: grid; grid-template-columns: 320px 1fr; gap: 80px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,42,0.18);
  border-radius: 32px; padding: 72px 64px;
  position: relative; overflow: hidden;
}
.offer__wrap::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offer__left { display: flex; justify-content: center; }
.offer__dial { position: relative; }
.offer__dial-svg {
  width: 200px; height: 200px;
  filter: drop-shadow(0 16px 40px rgba(201,146,42,0.25));
  animation: dial-breathe 4s ease-in-out infinite;
}
@keyframes dial-breathe { 0%,100%{transform:scale(1) rotate(0deg)} 50%{transform:scale(1.03) rotate(1deg)} }

.offer__title { font-size: clamp(28px, 3.5vw, 44px); color: var(--white); line-height: 1.2; margin-bottom: 20px; font-weight: 600; }
.offer__text  { font-size: 16px; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: 28px; }
.offer__quote {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(201,146,42,0.08); border-left: 3px solid var(--gold);
  padding: 16px 20px; border-radius: 0 12px 12px 0; margin-bottom: 32px;
}
.offer__quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--gold); line-height: 0.7; flex-shrink: 0; }
.offer__quote span { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.5; }


/* ── WHY US ───────────────────────────────────────────────────── */
.why { background: var(--ivory); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 32px; border-radius: var(--r);
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  position: relative; overflow: hidden; transition: all 0.4s ease;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.why-card:hover::before { transform: scaleX(1); }

.why-card__num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700;
  color: rgba(201,146,42,0.08); line-height: 1; transition: color 0.4s;
}
.why-card:hover .why-card__num { color: rgba(201,146,42,0.15); }
.why-card__icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--muted); line-height: 1.72; }


/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testi { background: var(--white); }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--ivory); border-radius: var(--r); padding: 36px;
  border: 1px solid transparent; transition: all 0.4s ease; position: relative;
}
.testi-card::after {
  content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 100px;
  position: absolute; top: 10px; right: 24px; line-height: 1;
  color: rgba(201,146,42,0.08); pointer-events: none;
}
.testi-card:hover { border-color: var(--border); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-card__rating { margin-bottom: 18px; }
.testi-card__rating svg { width: 80px; height: 16px; }
.testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; line-height: 1.75; color: var(--text);
  font-style: italic; margin-bottom: 24px;
}
.testi-card__author { display: flex; align-items: center; gap: 14px; }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 15px; flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; font-family: 'Outfit', sans-serif; }
.testi-card__author small  { font-size: 12px; color: var(--muted); }


/* ── CONTACT ──────────────────────────────────────────────────── */
.contact { background: var(--navy); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact__left .section__label { color: var(--gold); }
.contact__left .section__title { color: var(--white); }
.contact__sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }

.contact__callout {
  background: rgba(201,146,42,0.1); border: 1px solid rgba(201,146,42,0.25);
  border-radius: var(--r); padding: 20px; margin-bottom: 28px;
}
.contact__callout-inner { display: flex; align-items: center; gap: 16px; }
.contact__callout-inner svg { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.contact__callout-inner strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; }
.contact__callout-inner a { color: var(--gold-light); font-size: 22px; font-family: 'Cormorant Garamond', serif; font-weight: 700; text-decoration: none; letter-spacing: 0.5px; }

.contact__features { display: flex; flex-direction: column; gap: 12px; }
.contact__feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.55); }
.contact__feat svg { width: 18px; height: 18px; color: var(--gold); opacity: 0.8; flex-shrink: 0; }

.contact__form-wrap { background: var(--white); border-radius: 24px; padding: 44px; box-shadow: var(--shadow-xl); }
.contact__form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); margin-bottom: 32px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 0; }
.form-field + .form-field { margin-top: 0; }
.form-field:not(.form-row .form-field) { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
  border: 1.5px solid #e4e8ee; background: #f8fafc;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,146,42,0.1); background: var(--white);
}
.form-field textarea { min-height: 90px; resize: vertical; margin-bottom: 0; }
.form-field select { appearance: none; cursor: pointer; }
.btn--full { margin-top: 8px; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }


/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { background: #060e18; }
.footer__top {
  padding: 72px 28px 48px; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__logo-icon { width: 28px; height: 28px; color: var(--gold); }
.footer__logo-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--white); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer__motto { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold) !important; font-size: 15px !important; margin-top: 4px; }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col strong { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.footer__col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__col span { color: rgba(255,255,255,0.35); font-size: 14px; }
.footer__bottom { padding: 20px 28px; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer__tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold) !important; font-size: 14px; }


/* ── RESPONSIVE BREAKPOINTS ───────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__wrap     { gap: 40px; }
  .card-stack     { width: 300px; height: 380px; }
  .gallery__grid  { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__3d-scene { display: none; }
  .offer__wrap { grid-template-columns: 1fr; text-align: center; padding: 48px 36px; gap: 40px; }
  .offer__left  { justify-content: center; }
  .offer__quote { text-align: left; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery__item--wide { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,31,53,0.98); backdrop-filter: blur(16px);
    padding: 12px; border-bottom: 1px solid rgba(201,146,42,0.15);
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 12px 16px; }
  .nav__toggle { display: flex; }

  .hero__wrap      { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__eyebrow   { justify-content: center; }
  .hero__ctas      { justify-content: center; }
  .hero__desc      { max-width: 100%; }
  .why__grid       { grid-template-columns: 1fr 1fr; }
  .testi__grid     { grid-template-columns: 1fr; }
  .contact__grid   { grid-template-columns: 1fr; gap: 48px; }
  .form-row        { grid-template-columns: 1fr; }
  .footer__top     { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom  { flex-direction: column; gap: 6px; text-align: center; }
  .trust-sep       { display: none; }
  .trust-strip__inner { gap: 20px 0; }
  .trust-stat      { padding: 8px 20px; }

  .gallery__grid    { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 12px; }
  .gallery__filters { gap: 6px; margin-bottom: 36px; }
  .gallery__filter  { padding: 8px 18px; font-size: 12px; }

  .lightbox__prev, .lightbox__next { width: 40px; height: 40px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__prev svg, .lightbox__next svg { width: 18px; height: 18px; }
}

/* Small mobile */
@media (max-width: 580px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__grid      { grid-template-columns: 1fr; }
  .hero__visual   { display: none; }
  .fab span       { display: none; }
  .fab            { padding: 14px; }
  .hero__h1       { font-size: 42px; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__overlay-content h4 { font-size: 14px; }
  .gallery__overlay-content p  { font-size: 11px; }
}
