/* ======= TOKENS ======= */
:root {
  --cream: #F7F2EA;
  --cream-2: #EFE7DA;
  --beige: #E5D9C6;
  --sand: #D4C3A8;
  --rose: #C29585;
  --rose-2: #A77465;
  --brown: #6B4F43;
  --ink: #231912;
  --ink-2: #3A2A22;
  --muted: #8A7A72;
  --line: rgba(35, 25, 18, 0.12);
  --line-2: rgba(35, 25, 18, 0.06);

  --nav-h: 74px;
  --radius: 4px;
  --radius-lg: 18px;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;
}

/* ======= RESET ======= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ======= GRAIN ======= */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.1  0 0 0 0 0.07  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
}

/* ======= SIDE PROGRESS ======= */
.side-progress {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 50;
}
.side-progress__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.25;
  transition: all 0.4s var(--ease);
}
.side-progress__dot.is-active {
  opacity: 1;
  transform: scale(1.5);
  background: var(--rose-2);
}
.side-progress__line {
  width: 1px; height: 40px;
  background: var(--ink);
  opacity: 0.2;
  margin-top: 6px;
}

/* ======= NAV ======= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 242, 234, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav__mark { flex-shrink: 0; transition: transform 0.6s var(--ease); }
.nav__logo:hover .nav__mark { transform: rotate(90deg); }
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav__brand-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__links a span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 11px;
  color: var(--rose-2);
  font-weight: 300;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  height: 1px; width: 0;
  background: var(--rose-2);
  transition: width 0.4s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__cta i { font-style: normal; transition: transform 0.3s var(--ease); }
.nav__cta:hover { background: var(--rose-2); }
.nav__cta:hover i { transform: translateX(3px); }
.nav__burger {
  display: none;
  width: 28px; height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn__arrow { font-style: normal; transition: transform 0.35s var(--ease); }
.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover { background: var(--rose-2); }
.btn--dark:hover .btn__arrow { transform: translate(3px, -3px); }
.btn--line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--line:hover { background: var(--ink); color: var(--cream); }

/* ======= KICKER ======= */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose-2);
  font-weight: 500;
}
.kicker i {
  display: block;
  width: 28px; height: 1px;
  background: var(--rose-2);
}
.kicker--light { color: var(--sand); }
.kicker--light i { background: var(--sand); }

/* ======= HERO ======= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 16px);
  padding-bottom: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bodygraph {
  position: absolute;
  top: 50%; left: 50%;
  width: min(70vw, 640px);
  height: auto;
  transform: translate(-50%, -50%);
  color: var(--rose-2);
  opacity: 0.55;
}
.hero__grid {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__meta-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-2);
}
.hero__meta-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.hero__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 1rem + 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__title-line { display: block; }
.hero__title-line--italic {
  font-style: italic;
  color: var(--rose-2);
  font-weight: 400;
  padding-left: clamp(30px, 5vw, 80px);
}
.hero__lead {
  margin-top: 28px;
  max-width: 420px;
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  color: var(--ink-2);
  line-height: 1.65;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__stats {
  margin-top: 56px;
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 500px;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats b {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 34px;
  color: var(--ink);
  line-height: 1;
}
.hero__stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero__visual { position: relative; margin-left: 0; }
.hero__photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 440px;
  max-height: calc(100vh - 120px);
  margin-left: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  filter: grayscale(0.15) contrast(1.02);
  box-shadow: 0 30px 80px -30px rgba(35, 25, 18, 0.45);
}
.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero__photo-wrap:hover .hero__photo { transform: scale(1.04); }
.hero__photo-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.hero__photo-tag svg { color: var(--rose-2); }

.hero__marquee {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.hero__marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
}
.hero__marquee-track span { font-weight: 300; letter-spacing: 0.02em; }
.hero__marquee-track em { color: var(--rose-2); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* ======= ABOUT ======= */
.about {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}
.about__header { margin-bottom: clamp(50px, 7vw, 90px); }
.about__h {
  margin-top: 22px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 0.8rem + 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.about__h em {
  color: var(--rose-2);
  font-weight: 400;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about__photo {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  filter: grayscale(0.1);
  box-shadow: 0 30px 80px -30px rgba(35, 25, 18, 0.4);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo figcaption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.about__photo figcaption a {
  display: inline-flex;
  color: var(--rose-2);
  transition: transform 0.3s var(--ease);
}
.about__photo figcaption a:hover { transform: scale(1.15); }
.about__body p {
  font-size: clamp(16px, 0.3vw + 15px, 18px);
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.about__quote {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 2px solid var(--rose-2);
  background: linear-gradient(135deg, rgba(194, 149, 133, 0.08), transparent);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 0.5vw + 16px, 22px);
  line-height: 1.5;
  color: var(--ink);
  position: relative;
}
.about__quote-mark {
  position: absolute;
  top: -6px; left: 18px;
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--rose-2);
  line-height: 1;
  opacity: 0.35;
}

/* ======= WHAT / BENTO ======= */
.what {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--cream-2);
  position: relative;
}
.what__header {
  max-width: 800px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.what__h {
  margin-top: 22px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 0.8rem + 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.what__h em { color: var(--rose-2); font-weight: 400; }
.what__intro {
  margin-top: 22px;
  max-width: 620px;
  font-size: clamp(15px, 0.3vw + 14px, 17px);
  color: var(--ink-2);
  line-height: 1.75;
}
.what__intro strong {
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rose-2);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: minmax(240px, auto) minmax(240px, auto);
  gap: 20px;
}
.bento__card {
  position: relative;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(35, 25, 18, 0.2);
}
.bento__card--lg {
  grid-column: span 2;
  grid-row: span 2;
  padding: 44px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.bento__bodygraph {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: clamp(280px, 38%, 400px);
  height: auto;
  color: var(--rose-2);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.bento__card--lg:hover .bento__bodygraph {
  opacity: 0.22;
  transform: translateY(-50%) rotate(-2deg);
}
.bento__bodygraph .bg-dots { opacity: 0.8; }
.bento__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  max-width: 62%;
}
.bento__card--lg .bento__num { margin-bottom: 6px; }
.bento__tag-row {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bento__tag-row span {
  padding: 6px 12px;
  background: rgba(194, 149, 133, 0.1);
  border: 1px solid rgba(194, 149, 133, 0.3);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-2);
  font-family: var(--f-display);
  font-style: italic;
}
@media (max-width: 1024px) {
  .bento__content { max-width: 100%; }
  .bento__bodygraph { right: -80px; opacity: 0.1; }
}
.bento__card--wide { grid-column: span 2; }
.bento__card--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.bento__card--dark .bento__num { color: var(--sand); opacity: 0.7; }
.bento__card--dark p { color: rgba(247, 242, 234, 0.7); }
.bento__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-2);
  letter-spacing: 0.08em;
}
.bento__icon {
  color: var(--rose-2);
  margin: auto 0 6px;
  transition: transform 0.8s var(--ease);
}
.bento__card:hover .bento__icon { transform: rotate(45deg); }
.bento__card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 0.5vw + 20px, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: inherit;
}
.bento__card--lg h3 { font-size: clamp(28px, 1vw + 24px, 44px); }
.bento__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-top: auto;
}
.bento__tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bento__tags span {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
}
.bento__tags span:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ======= REVIEWS / MASONRY ======= */
.reviews {
  padding: clamp(80px, 10vw, 160px) 0;
}
.reviews__header {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.reviews__header .kicker { justify-content: center; }
.reviews__h {
  margin-top: 18px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 0.8rem + 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.reviews__h em { color: var(--rose-2); font-weight: 400; }
.reviews__marquee {
  position: relative;
  margin: 0 calc(-1 * clamp(20px, 4vw, 48px));
  padding: 20px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.reviews__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 10px clamp(20px, 4vw, 48px);
  animation: reviewScroll 60s linear infinite;
  will-change: transform;
}
.reviews__marquee:hover .reviews__track,
.reviews__marquee:focus-within .reviews__track {
  animation-play-state: paused;
}
.review-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(240px, 22vw, 300px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(35, 25, 18, 0.32);
  z-index: 2;
}
.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 1s var(--ease);
  filter: grayscale(0.9) sepia(0.2) brightness(0.95);
}
.review-card:hover img { filter: grayscale(0.6) sepia(0.15) brightness(1); }
.review-card:hover img { transform: scale(1.05); }
.review-card__num {
  position: absolute;
  top: 14px; left: 14px;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--rose-2);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.reviews__hint {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  width: 100%;
  justify-content: center;
}
.reviews__hint svg { color: var(--rose-2); }
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

/* ======= CONTACT ======= */
.contact {
  padding: clamp(90px, 12vw, 180px) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(247, 242, 234, 0.6), transparent),
    radial-gradient(1px 1px at 35% 60%, rgba(247, 242, 234, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 18%, rgba(212, 195, 168, 0.7), transparent),
    radial-gradient(1px 1px at 75% 70%, rgba(247, 242, 234, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 85% 30%, rgba(212, 195, 168, 0.5), transparent),
    radial-gradient(1px 1px at 25% 85%, rgba(247, 242, 234, 0.6), transparent),
    radial-gradient(1px 1px at 65% 45%, rgba(247, 242, 234, 0.4), transparent),
    radial-gradient(1px 1px at 45% 78%, rgba(212, 195, 168, 0.5), transparent);
  background-size: 100% 100%;
  opacity: 0.8;
}
.contact__container {
  position: relative;
  text-align: center;
  max-width: 900px;
}
.contact__h {
  margin-top: 20px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 1rem + 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.contact__h em { color: var(--rose); font-weight: 400; }
.contact__text {
  margin: 26px auto 0;
  max-width: 520px;
  font-size: clamp(15px, 0.3vw + 14px, 17px);
  color: rgba(247, 242, 234, 0.75);
  line-height: 1.75;
}
.contact__cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 4px 4px 4px 28px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.contact__cta:hover { transform: translateY(-3px); background: var(--rose); color: var(--cream); }
.contact__cta--secondary { margin-top: 16px; background: transparent; border: 1.5px solid var(--cream); color: var(--cream); }
.contact__cta--secondary .contact__cta-arrow { background: var(--rose); color: var(--cream); }
.contact__cta--secondary:hover { background: var(--cream); color: var(--ink); }
.contact__cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.contact__cta-arrow {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  font-size: 18px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.contact__cta:hover .contact__cta-arrow {
  transform: rotate(45deg);
  background: var(--cream);
  color: var(--ink);
}
.contact__note {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 195, 168, 0.7);
}

/* ======= FOOTER ======= */
.footer {
  background: var(--ink-2);
  color: rgba(247, 242, 234, 0.7);
  padding: 44px 0;
  border-top: 1px solid rgba(247, 242, 234, 0.08);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer__brand span {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--cream);
}
.footer__brand em {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(212, 195, 168, 0.6);
  font-style: normal;
  margin-top: 4px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 13px;
  color: rgba(247, 242, 234, 0.65);
  transition: color 0.3s var(--ease);
}
.footer__nav a:hover { color: var(--rose); }
.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 13px;
}
.footer__meta a { color: var(--rose); }
.footer__meta span { color: rgba(247, 242, 234, 0.45); font-size: 11px; letter-spacing: 0.15em; }

/* ======= REVEAL ======= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======= LIGHTBOX ======= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  animation: fadeIn 0.3s var(--ease);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.1);
  color: var(--cream);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox__close:hover { background: rgba(247, 242, 234, 0.2); transform: rotate(90deg); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; padding-top: 20px; }
  .hero__visual { order: -1; }
  .hero__photo-wrap { max-width: 360px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { position: static; max-width: 460px; margin: 0 auto; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento__card--lg, .bento__card--wide { grid-column: span 2; grid-row: auto; }
  .side-progress { display: none; }
}
@media (max-width: 720px) {
  .nav {
    background: rgba(247, 242, 234, 0.95);
    border-bottom-color: var(--line);
  }
  .hero {
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 24px;
  }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.45s var(--ease);
    z-index: 200;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .nav__burger { display: flex; }
  .nav__cta { margin-top: 8px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__marquee-track { font-size: 15px; gap: 24px; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--lg, .bento__card--wide { grid-column: auto; }
  .review-card { width: clamp(220px, 60vw, 260px); }
  .reviews__track { animation-duration: 45s; }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .footer__brand, .footer__meta { align-items: center; }
  .contact__cta { flex-direction: row; gap: 16px; padding: 8px 8px 8px 24px; border-radius: 100px; }
  .contact__cta-arrow { width: 40px; height: 40px; font-size: 15px; }
}
@media (max-width: 480px) {
  .review-card { width: 220px; }
  .hero__stats > div { flex-basis: calc(50% - 10px); }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

.reviews__hint-mobile { display: none; }
@media (max-width: 720px) {
  .reviews__hint-desktop { display: none; }
  .reviews__hint-mobile { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__marquee-track,
  .reviews__track { animation: none; }
  .reviews__marquee { overflow-x: auto; scroll-snap-type: x mandatory; }
  .review-card { scroll-snap-align: start; }
}
