/* ==========================================================================
   Damla Pastanesi — Logo palette + animation system
   Cream #FFF5EB | Bronze #B88E4F | Dark #A68244 | Chocolate #3D2B1F
   ========================================================================== */

:root {
  /* Design tokens — logo-derived */
  --color-primary: #b88e4f;
  --color-primary-light: #c9a86c;
  --color-primary-dark: #7c572d;
  --color-secondary: #3d2b1f;
  --color-accent: #c9a090;
  --color-bg: #fff5eb;
  --color-surface: #fffcfa;
  --color-text: #4a3f35;
  --color-text-muted: #7a6b5d;

  --cream: var(--color-bg);
  --cream-deep: #f3e8d8;
  --cream-soft: #fffaf4;
  --bronze: var(--color-primary);
  --bronze-dark: var(--color-primary-dark);
  --bronze-light: var(--color-primary-light);
  --chocolate: var(--color-secondary);
  --chocolate-soft: #5c4636;
  --rose: var(--color-accent);
  --rose-soft: #e8d5cc;
  --gold: var(--color-primary);
  --white: var(--color-surface);
  --text: var(--color-text);
  --text-muted: var(--color-text-muted);
  --shadow: 0 12px 40px rgba(61, 43, 31, 0.1);
  --shadow-hover: 0 20px 50px rgba(61, 43, 31, 0.16);
  --shadow-sm: 0 4px 16px rgba(61, 43, 31, 0.08);
  --shadow-focus: 0 0 0 4px rgba(184, 142, 79, 0.2);
  --radius: 18px;
  --radius-sm: 12px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --nav-h: 76px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-scene: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-micro: 200ms;
  --duration-enter: 600ms;
  --duration-scene: 800ms;
  --transition: 0.35s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream-soft);
  line-height: 1.7;
  min-width: 0;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main,
section,
footer {
  min-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 11000;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--chocolate);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform var(--duration-micro) var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

code {
  font-size: 0.9em;
  color: var(--bronze-dark);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.28em;
}

.section__title .word > span {
  display: inline-block;
}

.section__lead {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head .section__lead {
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: linear-gradient(90deg, var(--bronze-light), var(--bronze-dark));
  transform-origin: left;
  pointer-events: none;
}

/* ---------- Cinematic cake intro ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(ellipse at 50% 40%, #fffaf4 0%, var(--cream) 55%, #efe4d4 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.intro__scene {
  text-align: center;
  will-change: transform, opacity;
}

.intro__svg {
  width: min(280px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.intro__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.28em;
  color: var(--chocolate);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
}

@keyframes markFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.intro__tag {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--bronze-dark);
  letter-spacing: 0.04em;
}

.intro__footer {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 280px;
}

.intro__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
}

.intro__bar {
  height: 3px;
  background: rgba(184, 142, 79, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.intro__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bronze-light), var(--bronze-dark));
  border-radius: inherit;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 245, 235, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    box-shadow 0.35s var(--ease), transform 0.4s var(--ease), height 0.35s var(--ease);
  will-change: transform;
}

.nav.is-hidden {
  transform: translateY(-110%);
}

.nav.is-scrolled {
  --nav-h: 64px;
  background: rgba(255, 245, 235, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(61, 43, 31, 0.06);
}

.nav__inner {
  width: min(1120px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

/* Brand mark (inline SVG) */
.brand-mark {
  display: inline-flex;
  width: 36px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(61, 43, 31, 0.15));
  transition: transform 0.45s var(--ease);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark--sm {
  width: 28px;
  height: 34px;
}

.brand-mark--lg {
  width: clamp(58px, 12vw, 82px);
  height: auto;
  aspect-ratio: 80 / 100;
  filter: drop-shadow(0 10px 24px rgba(61, 43, 31, 0.22));
  animation: markFloat 4.5s ease-in-out infinite;
}

.brand-mark--footer {
  width: 40px;
  height: 50px;
  filter: none;
}

.nav__brand:hover .brand-mark {
  transform: rotate(-8deg) translateY(-2px);
}

.nav__mark,
.hero__mark,
.footer__mark {
  display: none;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--chocolate);
  letter-spacing: 0.06em;
}

.nav__sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  position: relative;
}

.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--chocolate-soft);
  position: relative;
  transition: color 0.3s var(--ease);
  padding: 0.25rem 0;
}

.nav__links a:not(.btn):hover,
.nav__links a:not(.btn).is-active {
  color: var(--bronze);
}

.nav__indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--bronze);
  border-radius: 2px;
  pointer-events: none;
  transition: left 0.35s var(--ease), width 0.35s var(--ease), opacity 0.25s;
  opacity: 0;
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--chocolate);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }
  .nav__indicator {
    display: none;
  }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255, 245, 235, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
  }
  .nav__links a:not(.btn) {
    font-size: 1.25rem;
    font-family: var(--font-display);
  }
}

@media (min-width: 861px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: scale(1.04) translateY(-1px);
}
.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #9a7139, var(--bronze-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(184, 142, 79, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  box-shadow: 0 12px 32px rgba(184, 142, 79, 0.45);
}

.btn--ghost {
  background: rgba(255, 250, 244, 0.75);
  border-color: rgba(61, 43, 31, 0.22);
  color: var(--chocolate);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--bronze);
  color: var(--bronze);
  background: rgba(184, 142, 79, 0.06);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: #1ebe57;
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: shineSweep 3.2s var(--ease) infinite;
}

.btn--pulse {
  animation: softPulse 2.4s var(--ease) infinite;
}

@keyframes shineSweep {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(184, 142, 79, 0.35);
  }
  50% {
    box-shadow: 0 10px 36px rgba(184, 142, 79, 0.55);
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  pointer-events: none;
  background: #1a1410;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255, 245, 235, 0.78) 0%,
    rgba(255, 245, 235, 0.45) 42%,
    rgba(255, 245, 235, 0.12) 68%,
    rgba(20, 14, 10, 0.2) 100%
  );
}

.hero__name-line {
  text-shadow:
    0 1px 0 rgba(255, 250, 244, 0.95),
    0 2px 24px rgba(255, 245, 235, 0.9);
}

.hero__tagline,
.hero__text,
.hero__eyebrow {
  text-shadow: 0 1px 14px rgba(255, 245, 235, 0.95);
}

.hero__floaters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floater {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  background: var(--bronze);
  filter: blur(1px);
  animation: floatY 8s ease-in-out infinite;
}

.floater--1 {
  width: 10px;
  height: 10px;
  top: 22%;
  left: 12%;
  animation-duration: 7s;
}
.floater--2 {
  width: 7px;
  height: 7px;
  top: 38%;
  right: 18%;
  background: var(--rose);
  animation-duration: 9s;
  animation-delay: -2s;
}
.floater--3 {
  width: 14px;
  height: 14px;
  bottom: 28%;
  left: 28%;
  background: var(--bronze-light);
  border-radius: 30% 70% 60% 40%;
  animation-duration: 11s;
}
.floater--4 {
  width: 8px;
  height: 8px;
  top: 55%;
  right: 30%;
  animation-duration: 8.5s;
  animation-delay: -1s;
}
.floater--5 {
  width: 12px;
  height: 6px;
  top: 18%;
  right: 42%;
  background: #6b4423;
  border-radius: 50%;
  opacity: 0.25;
  animation: floatSpin 10s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-28px) rotate(12deg);
  }
}

@keyframes floatSpin {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(180deg);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  padding-bottom: 1.5rem;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.hero__wordmark {
  min-width: 0;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.hero__name {
  margin: 0;
}

.hero__name-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__name-line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em);
}

.hero__name-line .char.space {
  width: 0.28em;
}

.hero__tagline {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--bronze-dark);
}

.hero__text {
  color: var(--chocolate-soft);
  margin-bottom: 1.85rem;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.hero__title,
.hero__logo-wrap {
  display: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--bronze-dark);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--bronze), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- Waves & crumbs ---------- */
.wave {
  line-height: 0;
  background: transparent;
  overflow: hidden;
}

.wave svg {
  width: 100%;
  height: 56px;
  display: block;
}

.wave--down {
  margin-top: -1px;
  background: var(--cream);
}
.wave--down .wave__path {
  fill: var(--cream-soft);
}

.wave--up {
  background: var(--cream-soft);
}
.wave--up .wave__path {
  fill: var(--cream);
}

.wave__path {
  animation: waveDrift 10s ease-in-out infinite alternate;
}

@keyframes waveDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2%);
  }
}

.crumbs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  pointer-events: none;
}

.crumb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  opacity: 0.35;
  animation: crumbBounce 2.8s ease-in-out infinite;
}

.crumb:nth-child(2) {
  animation-delay: 0.3s;
  width: 6px;
  height: 6px;
}
.crumb:nth-child(3) {
  animation-delay: 0.6s;
  background: var(--rose);
}
.crumb:nth-child(4) {
  animation-delay: 0.9s;
  width: 10px;
  height: 5px;
  border-radius: 40%;
}
.crumb:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes crumbBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 4.5rem;
  }
}

.about__visual {
  position: relative;
}

.about__visual.ig-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2.25rem 1.5rem 2.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(221, 42, 123, 0.1), transparent 60%),
    linear-gradient(165deg, #fffaf6 0%, var(--cream) 100%);
  box-shadow: var(--shadow);
  overflow: visible;
}

.about__visual .ig-cta__card {
  padding: 0.5rem 0.25rem 0;
  width: 100%;
}

.about__visual .ig-cta__avatar-wrap {
  width: 160px;
  height: 160px;
  margin-bottom: 1.25rem;
}

.about__visual .ig-cta__avatar {
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  padding: 22px;
  background: #fffaf4;
}

.about__visual .ig-cta__title {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.25;
  word-break: break-word;
}

.about__visual .ig-cta__bio {
  font-size: 0.95rem;
  color: var(--text);
  max-width: 32ch;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.about__visual .ig-cta__stats {
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}

.about__visual .ig-cta__stats li {
  min-width: 4.25rem;
  flex: 1 1 auto;
}

.about__visual .ig-cta__stats strong {
  font-size: 1.45rem;
  color: var(--chocolate);
}

.about__visual .ig-cta__stats span {
  font-size: 0.8rem;
  color: var(--chocolate-soft);
  font-weight: 500;
}

.about__visual .ig-cta__btn {
  min-width: 0;
  width: 100%;
  max-width: 260px;
}

.about__visual .ig-cta__hint {
  font-size: 0.88rem;
  color: var(--chocolate-soft);
}

.about__visual .ig-cta__name {
  color: var(--text);
  font-weight: 500;
}

.about__body p {
  margin-bottom: 1.1rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about__body a {
  color: var(--bronze-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.values {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.values__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.05);
  border: 1px solid rgba(184, 142, 79, 0.1);
  transition: transform var(--duration-micro) var(--ease), box-shadow var(--duration-micro) var(--ease);
}

.values__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.values__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.values__item strong {
  display: block;
  color: var(--chocolate);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.values__item p {
  margin: 0 !important;
  font-size: 0.88rem;
  color: var(--chocolate-soft);
}

/* ---------- Stats strip ---------- */
.stats {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--bronze-dark), var(--bronze));
  color: #fff;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__item strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.stats__item span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  opacity: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.about__stats {
  display: none;
}

/* ---------- Instagram follow CTA ---------- */
.ig-cta {
  position: relative;
  text-align: center;
}

.ig-cta__glow {
  position: absolute;
  inset: 12% 18% auto;
  height: 180px;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.12), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}

.ig-cta__card {
  position: relative;
  z-index: 1;
}

.ig-cta__avatar-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
}

.ig-cta__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4,
    #f58529
  );
  animation: igRingSpin 4s linear infinite;
}

.ig-cta__ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fffaf4;
}

.ig-cta__pulse {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(221, 42, 123, 0.35);
  animation: igPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}

.ig-cta__avatar {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  padding: 22px;
  background: #fffaf4;
  box-shadow: 0 8px 28px rgba(61, 43, 31, 0.12);
}

.ig-cta__badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af);
  box-shadow: 0 4px 14px rgba(221, 42, 123, 0.4);
  animation: igBadgeBob 2.8s var(--ease) infinite;
}

.ig-cta__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.ig-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.ig-cta__name {
  font-size: 1rem;
  color: var(--chocolate-soft);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.ig-cta__bio {
  font-size: 1rem;
  color: var(--text);
  max-width: 36ch;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  font-weight: 400;
}

.ig-cta__stats {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
}

.ig-cta__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 4.5rem;
}

.ig-cta__stats strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1;
}

.ig-cta__stats span {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--chocolate-soft);
  text-transform: lowercase;
  font-weight: 500;
}

.btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(221, 42, 123, 0.35);
}

.btn--instagram:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 34px rgba(221, 42, 123, 0.45);
}

.ig-cta__btn {
  min-width: 220px;
  animation: igBtnPulse 2.6s var(--ease) infinite;
}

.ig-cta__hint {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--chocolate-soft);
  font-weight: 500;
}

.ig-cta__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ig-float {
  position: absolute;
  font-size: 1.1rem;
  color: rgba(221, 42, 123, 0.45);
  animation: igFloat 5s var(--ease) infinite;
}

.ig-float--1 { top: 12%; left: 8%; animation-delay: 0s; }
.ig-float--2 { top: 22%; right: 10%; color: rgba(184, 142, 79, 0.5); animation-delay: 1.1s; }
.ig-float--3 { bottom: 18%; left: 14%; animation-delay: 2s; }
.ig-float--4 { bottom: 28%; right: 12%; color: rgba(129, 52, 175, 0.4); animation-delay: 0.6s; }

@keyframes igRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes igPulse {
  0% { transform: scale(0.92); opacity: 0.7; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes igBadgeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes igBtnPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 28px rgba(221, 42, 123, 0.35); }
  50% { transform: scale(1.03); box-shadow: 0 14px 36px rgba(221, 42, 123, 0.5); }
}

@keyframes igFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
  50% { transform: translateY(-18px) rotate(12deg); opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  .ig-cta__ring,
  .ig-cta__pulse,
  .ig-cta__badge,
  .ig-cta__btn,
  .ig-float {
    animation: none;
  }
}

/* ---------- Gallery ---------- */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 1.5px solid rgba(184, 142, 79, 0.35);
  background: transparent;
  color: var(--chocolate-soft);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--bronze-dark);
  border-color: var(--bronze-dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(184, 142, 79, 0.3);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.gallery__item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-deep);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.06);
  transition: box-shadow 0.4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.gallery__item.is-hidden {
  display: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery__item:hover {
  box-shadow: 0 18px 40px rgba(184, 142, 79, 0.28);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(61, 43, 31, 0.75));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--cream-deep), var(--rose-soft));
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 1rem;
  text-align: center;
}

/* ---------- Testimonials ---------- */
.testimonials {
  overflow: hidden;
}

.testimonials__track-wrap {
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonials__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0 1rem;
  will-change: transform;
}

.testimonial {
  width: min(340px, 78vw);
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 142, 79, 0.08);
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--chocolate-soft);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.testimonial__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bronze-dark);
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .contact__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bronze);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.contact__row:hover .contact__icon {
  transform: scale(1.08) rotate(-6deg);
}

.contact__row h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 0.2rem;
}

.contact__row a:hover {
  color: var(--bronze);
}

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 142, 79, 0.3);
  display: grid;
  place-items: center;
  color: var(--bronze-dark);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--bronze-dark);
  color: var(--white);
  border-color: var(--bronze-dark);
  transform: scale(1.08);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  background: var(--cream-deep);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.12) saturate(0.92);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--chocolate);
  color: rgba(255, 252, 250, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 252, 250, 0.1);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__mark {
  height: 48px;
  width: auto;
  filter: brightness(1.15);
}

.footer__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer__sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
  opacity: 0.9;
}

.footer__logo {
  display: none;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__links a:hover {
  color: var(--bronze-light);
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer__credit {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 252, 250, 0.08);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 252, 250, 0.62);
}

.footer__credit a {
  color: var(--bronze-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-micro) var(--ease);
}

.footer__credit a:hover,
.footer__credit a:focus-visible {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 0.65rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 252, 250, 0.2);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--white);
}

/* ---------- To top ---------- */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--bronze-dark);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(184, 142, 79, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s,
    background 0.3s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--bronze-dark);
  transform: translateY(-3px);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(61, 43, 31, 0.88);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__img {
  max-width: min(900px, 100%);
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 252, 250, 0.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 252, 250, 0.3);
  transform: scale(1.08);
}

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
  width: min(90%, 42rem);
  text-align: center;
}

/* ---------- Responsive & accessibility hardening ---------- */
.btn,
.filter-btn,
.nav__toggle,
.social-btn,
.footer__social a,
.to-top,
.lightbox__close {
  min-width: 44px;
  min-height: 44px;
}

.nav__brand,
.footer__links a {
  min-height: 44px;
}

.nav__links a:not(.btn),
.footer__links a {
  display: inline-flex;
  align-items: center;
}

.gallery__item,
.testimonial,
.contact__map,
.values__item {
  border: 1px solid rgba(184, 142, 79, 0.12);
}

.contact__row > div:last-child {
  min-width: 0;
}

.contact__row p,
.contact__row a,
.footer__bottom p {
  overflow-wrap: anywhere;
}

@media (hover: none), (pointer: coarse) {
  .gallery__caption {
    transform: translateY(0);
    padding-top: 2rem;
  }

  .btn:hover,
  .gallery__item:hover,
  .values__item:hover,
  .social-btn:hover,
  .to-top:hover {
    transform: none;
  }
}

@media (min-width: 700px) and (max-width: 959px) {
  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .nav {
    will-change: auto;
  }

  .nav__inner {
    width: calc(100% - 2rem);
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    gap: var(--space-3);
    padding: calc(var(--nav-h) + var(--space-6)) var(--space-5) max(var(--space-6), env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-0.75rem);
  }

  .nav__links.is-open {
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a:not(.btn) {
    width: min(100%, 20rem);
    min-height: 48px;
    justify-content: center;
    border-bottom: 1px solid rgba(184, 142, 79, 0.18);
    font-size: 1.35rem;
  }

  .nav__links .nav__cta {
    display: inline-flex;
    width: min(100%, 20rem);
    margin-top: var(--space-2);
  }
}

@media (max-width: 699px) {
  .container {
    width: calc(100% - 2rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__head {
    margin-bottom: var(--space-6);
  }

  .section__eyebrow {
    margin-bottom: var(--space-2);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .section__title {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.08;
    margin-bottom: var(--space-3);
  }

  .section__lead,
  .about__body p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .nav__name {
    font-size: 1.3rem;
  }

  .nav__sub {
    font-size: 0.62rem;
  }

  .brand-mark {
    width: 32px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: calc(var(--nav-h) + var(--space-4)) 0 var(--space-5);
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(61, 43, 31, 0.12) 0%,
      rgba(255, 245, 235, 0.5) 38%,
      rgba(255, 245, 235, 0.86) 100%
    );
  }

  .hero__bg-video {
    transform: scale(1.02);
    object-position: 58% center;
  }

  .hero__content {
    width: 100%;
    max-width: 34rem;
    padding: var(--space-5);
    border: 1px solid rgba(255, 252, 250, 0.62);
    border-radius: calc(var(--radius) + 4px);
    background: rgba(255, 250, 244, 0.56);
    box-shadow: 0 18px 48px rgba(61, 43, 31, 0.16);
    backdrop-filter: blur(12px) saturate(1.08);
    -webkit-backdrop-filter: blur(12px) saturate(1.08);
  }

  .hero__brand {
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }

  .brand-mark--lg {
    width: clamp(40px, 12vw, 52px);
  }

  .hero__eyebrow {
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
    letter-spacing: 0.15em;
  }

  .hero__name-line {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .hero__name-line .char-word {
    display: inline-block;
    white-space: nowrap;
  }

  .hero__name-line .char.space {
    width: 0.2em;
  }

  .hero__tagline {
    font-size: clamp(1.05rem, 5vw, 1.3rem);
  }

  .hero__text {
    max-width: 34ch;
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    width: min(100%, 24rem);
  }

  .hero__actions .btn,
  .contact__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .about__grid,
  .contact__grid {
    gap: var(--space-7);
  }

  .about__visual.ig-cta {
    padding: var(--space-6) var(--space-4);
    overflow: hidden;
  }

  .about__visual .ig-cta__avatar-wrap,
  .about__visual .ig-cta__avatar {
    width: 136px;
    height: 136px;
  }

  .about__visual .ig-cta__avatar {
    padding: 18px;
  }

  .ig-cta__stats {
    gap: var(--space-3);
  }

  .stats {
    padding: var(--space-6) 0;
  }

  .stats__grid {
    gap: 0;
  }

  .stats__item {
    padding: var(--space-4) var(--space-2);
  }

  .gallery__filters {
    gap: var(--space-2);
    margin-bottom: var(--space-5);
  }

  .filter-btn {
    flex: 1 1 calc(50% - var(--space-2));
    padding: 0.65rem var(--space-3);
    line-height: 1.25;
  }

  .contact__info {
    gap: var(--space-4);
  }

  .testimonial {
    width: min(20rem, calc(100vw - 3rem));
    padding: var(--space-5);
  }

  .testimonials__track-wrap {
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .contact__row {
    gap: var(--space-3);
  }

  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: var(--space-3);
  }

  .contact__map,
  .contact__map iframe {
    min-height: 280px;
  }

  .footer {
    padding: var(--space-7) 0 var(--space-5);
  }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2) var(--space-4);
  }

  .footer__links a {
    min-height: 44px;
  }

  .footer__social a {
    width: 44px;
    height: 44px;
  }

  .lightbox {
    padding: var(--space-4);
  }

  .lightbox__img {
    max-height: 78svh;
  }

  .lightbox__close {
    top: max(var(--space-3), env(safe-area-inset-top));
    right: var(--space-3);
  }

  .lightbox__caption {
    bottom: max(var(--space-4), env(safe-area-inset-bottom));
  }
}

@media (max-width: 479px) {
  .hero__content {
    padding: var(--space-4);
  }

  .hero__brand {
    gap: var(--space-2);
  }

  .hero__eyebrow {
    letter-spacing: 0.12em;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .gallery__item {
    aspect-ratio: 4 / 5;
  }

  .gallery__caption {
    padding: 1.5rem var(--space-2) var(--space-2);
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .ig-cta__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .ig-cta__stats li {
    min-width: 0;
  }
}

/* ---------- Focus & reduced motion ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid var(--bronze-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn--shine::after,
  .btn--pulse,
  .floater,
  .wave__path,
  .crumb,
  .hero__scroll-line {
    animation: none !important;
  }
  .to-top,
  .nav,
  .lightbox,
  .gallery__caption,
  .intro {
    transition: none !important;
  }
}

@media (max-width: 700px) {
  .floater {
    display: none;
  }
}
