/* ==========================================================================
   K & R Bridal Makeup Studio — Design System
   Ivory · Champagne · Warm Gold · Charcoal
   ========================================================================== */

:root {
  --ivory: #faf7f1;
  --ivory-deep: #f3ede2;
  --cream: #efe7d8;
  --beige: #e3d8c5;
  --champagne: #d9c9a8;
  --gold: #c9a86a;
  --gold-deep: #a8864a;
  --brown: #8a6f4d;
  --charcoal: #1d1812;
  --charcoal-soft: #2c251c;
  --muted: #7d7060;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 30px 60px -20px rgba(29, 24, 18, 0.25);
  --shadow-card: 0 20px 40px -18px rgba(29, 24, 18, 0.18);
  --header-h: 84px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--charcoal); color: var(--ivory);
  padding: 10px 18px; font-size: 0.85rem; letter-spacing: 0.08em;
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus { top: 12px; color: var(--ivory); }

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 18px 0 0;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.section-sub {
  max-width: 560px;
  color: var(--muted);
  margin-top: 18px;
  font-size: 0.98rem;
}

.section { padding: clamp(84px, 11vw, 150px) 0; position: relative; }
.section--alt { background: var(--ivory-deep); }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--dark .eyebrow { color: var(--champagne); }
.section--dark .section-title em { color: var(--champagne); }
.section--dark .section-sub { color: rgba(250, 247, 241, 0.65); }

.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; }
.section-head--row .section-sub { margin: 0 0 8px; text-align: right; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background 0.45s var(--ease-out), transform 0.3s var(--ease-out);
  transform: translateY(0);
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-lux);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  color: var(--ivory);
  box-shadow: 0 14px 30px -12px rgba(168, 134, 74, 0.55);
}
.btn--gold::after { background: linear-gradient(120deg, var(--gold-deep), #8f6f3c); }

.btn--ghost {
  border-color: rgba(29, 24, 18, 0.35);
  color: var(--charcoal);
}
.btn--ghost::after { background: var(--charcoal); }
.btn--ghost:hover { color: var(--ivory); border-color: var(--charcoal); }

.btn--ghost--light { border-color: rgba(250, 247, 241, 0.4); color: var(--ivory); }
.btn--ghost--light::after { background: var(--ivory); }
.btn--ghost--light:hover { color: var(--charcoal); border-color: var(--ivory); }

.btn--lg { padding: 20px 46px; font-size: 0.82rem; }

/* ==========================================================================
   Preloader
   ========================================================================== */

.preloader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-lux), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; color: var(--ivory); }
.preloader__mark {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.24em;
  color: var(--champagne);
  animation: preMark 1.1s var(--ease-lux) both;
}
.preloader__line {
  display: block;
  width: 0; height: 1px; margin: 18px auto 14px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preLine 1.1s var(--ease-lux) 0.25s both;
}
.preloader__sub {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(250, 247, 241, 0.55);
  animation: preSub 1.1s var(--ease-lux) 0.4s both;
}
@keyframes preMark { from { opacity: 0; transform: translateY(18px) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes preLine { from { width: 0; } to { width: 220px; } }
@keyframes preSub { from { opacity: 0; letter-spacing: 0.9em; } to { opacity: 1; } }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), height 0.5s var(--ease-out);
  animation: headerIn 1s var(--ease-lux) 0.35s both;
}
@keyframes headerIn { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: none; } }

.site-header.is-solid {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(29, 24, 18, 0.08);
  height: 72px;
}
.site-header.is-solid .brand__mark,
.site-header.is-solid .main-nav a { color: var(--charcoal); }
.site-header.is-solid .menu-toggle span { background: var(--charcoal); }

.header__row { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; flex-direction: column; line-height: 1.15; z-index: 120; }
.brand__mark {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ivory);
  transition: color 0.4s;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.9);
  padding: 6px 0;
  transition: color 0.35s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta {
  border: 1px solid rgba(250, 247, 241, 0.5);
  padding: 12px 26px;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.site-header.is-solid .nav-cta { border-color: rgba(29, 24, 18, 0.4); color: var(--charcoal); }
.site-header.is-solid .nav-cta:hover { background: var(--charcoal); color: var(--ivory); }

.menu-toggle { display: none; flex-direction: column; gap: 6px; padding: 12px; z-index: 120; }
.menu-toggle span {
  width: 28px; height: 1.5px; background: var(--ivory);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 8vw 60px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.55s var(--ease-lux), visibility 0.55s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  color: var(--ivory);
  padding: 14px 0;
  display: flex; align-items: baseline; gap: 18px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.08);
  opacity: 0; transform: translateY(24px);
  transition: color 0.3s, opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-menu nav a span { font-family: var(--font-sans); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu__foot {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250, 247, 241, 0.5);
}
.mobile-menu__foot a:hover { color: var(--gold); }
.mobile-menu__foot a::before { content: "✦  "; color: var(--gold); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 90px;
  background: var(--charcoal);
  overflow: hidden;
  color: var(--ivory);
}
.hero__visual-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.06);
  animation: heroVidZoom 26s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(29, 24, 18, 0.72) 0%, rgba(29, 24, 18, 0.42) 45%, rgba(29, 24, 18, 0.1) 78%),
    radial-gradient(900px 600px at 15% 12%, rgba(201, 168, 106, 0.14), transparent 60%);
}
@keyframes heroVidZoom { 0% { transform: scale(1.04); } 100% { transform: scale(1.12); } }

.hero__catch {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 30px) 24px 80px;
}
.hero__catch-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 26px;
  display: inline-flex; align-items: center; gap: 16px;
  opacity: 0;
}
.hero__catch.catch--on .hero__catch-eyebrow { animation: fadeUp 1.2s var(--ease-lux) 0.2s both; }
.hero__catch-eyebrow::before {
  content: "";
  width: 46px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: growLine 1.2s var(--ease-lux) 0.45s both;
}
@keyframes growLine { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); } }
.hero__catch-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 12ch;
  color: var(--ivory);
  text-shadow: 0 8px 46px rgba(29, 24, 18, 0.5);
}
.hero__catch-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__catch-title .line__inner {
  display: block; transform: translateY(110%); opacity: 0;
}
.hero__catch-title .line__inner--accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--champagne), var(--gold), #f3e4c4, var(--champagne));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShine 6s ease-in-out 1.4s infinite;
}
@keyframes goldShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes lineUp { to { transform: translateY(0); opacity: 1; } }
.hero__catch.catch--on .hero__catch-title .line__inner.is-anim { animation: lineUp 1.2s var(--ease-lux) forwards; }
.hero__catch.catch--on .hero__catch-title .line__inner--accent.is-anim {
  animation: lineUp 1.2s var(--ease-lux) forwards, goldShine 6s ease-in-out 1.6s infinite;
}

/* ===== Intro (content below the hero video) ===== */
.intro { background: var(--ivory); }
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intro__lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 300;
  margin-top: 26px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px; }
.hero__cta .btn--ghost { border-color: rgba(29, 24, 18, 0.35); }

.hero__stats {
  display: flex; gap: clamp(28px, 4vw, 56px);
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(29, 24, 18, 0.14);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--gold-deep);
  line-height: 1;
}
.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Hero visual */
.hero__visual { position: relative; justify-self: center; width: min(100%, 480px); }
.hero__frame {
  position: absolute; inset: -18px -18px 18px 18px;
  border: 1px solid rgba(201, 168, 106, 0.45);
  transition: transform 0.8s var(--ease-lux);
}
.hero__figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.hero__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.6s var(--ease-lux);
  will-change: transform;
}
.is-ready .hero__figure img { animation: heroZoom 2.2s var(--ease-lux) 0.4s backwards; }
@keyframes heroZoom { from { transform: scale(1.15); } to { transform: scale(1); } }
.hero__visual:hover .hero__figure img { transform: scale(1.05); }

.hero__figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(29, 24, 18, 0.45));
}

.hero__badge {
  position: absolute;
  bottom: -8px; left: -8px;
  width: 116px; height: 116px;
  display: grid; place-items: center;
  background: var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.hero__badge-ring {
  position: absolute; inset: 8px;
  animation: spin 18s linear infinite;
}
.hero__badge-ring text {
  font-size: 8.2px;
  letter-spacing: 0.22em;
  fill: var(--gold-deep);
  font-family: var(--font-sans);
  text-transform: uppercase;
}
.hero__badge-core { font-size: 1.5rem; color: var(--gold-deep); animation: pulse 3.2s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.88); } }

.hero__card {
  position: absolute;
  top: 34px; right: -26px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(250, 247, 241, 0.97);
  color: var(--charcoal);
  padding: 16px 22px;
  box-shadow: var(--shadow-soft);
  animation: floatY 5.5s ease-in-out infinite;
}
.hero__card strong { font-family: var(--font-serif); font-size: 1.02rem; font-weight: 600; display: block; line-height: 1.2; }
.hero__card span { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--muted); }
.hero__card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 168, 106, 0.2);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse { 50% { box-shadow: 0 0 0 9px rgba(201, 168, 106, 0.08); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(250, 247, 241, 0.5);
  transition: color 0.3s;
  z-index: 2;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-line {
  width: 1px; height: 52px;
  background: rgba(250, 247, 241, 0.2);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDrop 2.2s var(--ease-lux) infinite;
}
@keyframes scrollDrop { to { top: 100%; } }

/* ---------- Reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(46px); }
[data-reveal="left"] { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }
[data-reveal].is-in { opacity: 1; transform: none; }

[data-fade] { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux); }
[data-fade].is-in { opacity: 1; transform: none; }

@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 106, 0.25);
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span, .marquee__track i { margin-right: 44px; }
.marquee__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ivory);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   About
   ========================================================================== */

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.about__visual { position: relative; }
.about__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.about__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-lux);
}
.about__visual:hover .about__img-wrap img { transform: scale(1.06); }

.about__stamp {
  position: absolute;
  bottom: -34px; right: -20px;
  width: 158px; height: 158px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 168, 106, 0.5);
  box-shadow: var(--shadow-soft);
}
.about__stamp-top { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--champagne); }
.about__stamp-mid { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: rgba(250,247,241,0.7); margin: 2px 0; }
.about__stamp-num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); line-height: 1; }

.about__content .reveal-text { margin-top: 30px; display: grid; gap: 18px; max-width: 540px; color: var(--muted); }
.about__content .reveal-text p { font-size: 1.02rem; }

.about__quote {
  margin: 34px 0;
  padding-left: 26px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 540px;
}

.about__meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(29, 24, 18, 0.14);
  max-width: 540px;
}
.about__meta-name { display: block; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }
.about__meta-role { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.about__sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold-deep);
  transform: rotate(-6deg);
}

/* ==========================================================================
   Services
   ========================================================================== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(29, 24, 18, 0.08);
  border: 1px solid rgba(29, 24, 18, 0.08);
}

.service-card {
  position: relative;
  background: var(--ivory-deep);
  padding: 42px 34px 44px;
  display: flex; flex-direction: column;
  min-height: 340px;
  transition: background 0.55s var(--ease-out), transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.service-card:hover {
  background: var(--charcoal);
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.service-card__num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  transition: color 0.4s;
}
.service-card:hover .service-card__num { color: var(--gold); }

.service-card__icon {
  width: 46px; height: 46px;
  color: var(--gold-deep);
  margin-bottom: 26px;
  transition: transform 0.6s var(--ease-lux), color 0.4s;
}
.service-card:hover .service-card__icon { transform: translateY(-4px) scale(1.06); color: var(--champagne); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.4s;
  margin-bottom: 12px;
}
.service-card:hover h3 { color: var(--ivory); }

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.4s;
  flex: 1;
}
.service-card:hover p { color: rgba(250, 247, 241, 0.72); }

.service-card__link {
  margin-top: 26px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
}
.service-card__link span { transition: transform 0.35s var(--ease-out); }
.service-card__link:hover span { transform: translateX(6px); }
.service-card:hover .service-card__link { color: var(--gold); }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery__scroll {
  position: relative;
  background:
    radial-gradient(1200px 700px at 50% 0%, rgba(201, 168, 106, 0.07), transparent 60%),
    var(--charcoal);
}

.gallery__pin {
  position: sticky;
  z-index: 2;
  top: 72px;
  height: calc(100vh - 72px);
  min-height: 470px;
  overflow: hidden;
}

.gallery__arc {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery__hint {
  position: absolute;
  top: clamp(14px, 3.4vh, 30px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.5);
  transition: opacity 0.7s var(--ease-lux);
  pointer-events: none;
}
.gallery__hint.is-hidden { opacity: 0; }
.gallery__hint span { color: var(--gold); animation: hintNudge 1.8s var(--ease-out) infinite; }
@keyframes hintNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

/* Arc carousel cards — positioned continuously by JS along a wide
   semicircular curve. Only transform/opacity are animated (GPU-friendly). */
.gallery__frame {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--arc-card-w, 320px);
  margin: 0;
  cursor: zoom-in;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
}
.gallery__frame img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(250, 247, 241, 0.08);
}
.gallery__frame.is-active img {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
  border-color: rgba(201, 168, 106, 0.35);
}
.gallery__frame:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

.gallery__hud {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(250, 247, 241, 0.14);
  pointer-events: none;
}
.gallery__progress { display: block; width: 100%; height: 100%; }
.gallery__progress-fill {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.gallery__count {
  position: absolute;
  left: clamp(20px, 4vw, 52px);
  bottom: clamp(22px, 4vh, 34px);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: rgba(250, 247, 241, 0.55);
}

.gallery__next {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 30px);
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 2px;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(250, 247, 241, 0.35);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.gallery__next .gallery__next-arrow { transition: transform 0.5s var(--ease-lux); }
.gallery__next:hover { color: var(--gold); border-color: var(--gold); }
.gallery__next:hover .gallery__next-arrow { transform: translateX(5px); }
.gallery__next.is-end .gallery__next-arrow { transform: rotate(90deg); }
.gallery__next:focus-visible { outline: 1px solid var(--gold); outline-offset: 10px; }

.gallery__foot {
  margin-top: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.gallery__foot p { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--brown); }

/* ==========================================================================
   Why choose us
   ========================================================================== */

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
}

.why__item {
  padding: 44px 38px;
  background: var(--ivory);
  border: 1px solid rgba(29, 24, 18, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s;
}
.why__item::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-lux);
}
.why__item:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: transparent; }
.why__item:hover::before { transform: scaleX(1); }

.why__icon {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border: 1px solid rgba(201, 168, 106, 0.55);
  color: var(--gold-deep);
  margin-bottom: 26px;
  transition: background 0.5s var(--ease-out), color 0.5s, transform 0.5s var(--ease-lux);
}
.why__icon svg { width: 32px; height: 32px; }
.why__item:hover .why__icon { background: var(--charcoal); color: var(--gold); transform: rotate(-6deg); border-color: var(--charcoal); }

.why__item h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.why__item p { font-size: 0.92rem; color: var(--muted); }

/* ==========================================================================
   Experience / timeline
   ========================================================================== */

.experience__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.experience__visual { position: relative; }
.experience__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.experience__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-lux);
}
.experience__visual:hover .experience__img-wrap img { transform: scale(1.06); }

.experience__quote {
  position: absolute;
  left: -24px; bottom: -30px;
  max-width: 320px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
  border-left: 2px solid var(--gold);
}
.experience__quote span {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.experience__quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.5; color: rgba(250, 247, 241, 0.9); }

.timeline { margin-top: 48px; position: relative; }
.timeline::before {
  content: "";
  position: absolute; top: 12px; bottom: 12px; left: 15px;
  width: 1px;
  background: rgba(29, 24, 18, 0.12);
}
.timeline::after {
  content: "";
  position: absolute; top: 12px; left: 15px;
  width: 1px;
  height: var(--tl-progress, 0);
  background: linear-gradient(var(--gold), var(--champagne));
  transition: height 0.1s linear;
}
.timeline__item {
  position: relative;
  padding: 0 0 44px 64px;
}
.timeline__item:last-child { padding-bottom: 8px; }
.timeline__num {
  position: absolute; left: 0; top: 0;
  width: 31px; height: 31px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  transition: background 0.5s, color 0.5s, transform 0.5s var(--ease-lux);
}
.timeline__item.is-in .timeline__num { background: var(--charcoal); color: var(--gold); }
.timeline__item:hover .timeline__num { transform: scale(1.12); }
.timeline__body h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; margin-bottom: 8px; }
.timeline__body p { color: var(--muted); font-size: 0.95rem; max-width: 480px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.t-carousel { max-width: 860px; margin: 0 auto; }
.t-carousel__viewport { overflow: hidden; }
.t-carousel__track {
  display: flex;
  transition: transform 0.8s var(--ease-lux);
}
.t-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 10px clamp(10px, 5vw, 60px) 0;
}
.t-slide__quote {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 30px;
}
.t-slide p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--charcoal);
}
.t-slide footer { margin-top: 34px; }
.t-slide__name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--charcoal);
}
.t-slide__role {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.t-carousel__nav {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  margin-top: 44px;
}
.t-btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(29, 24, 18, 0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s, transform 0.3s var(--ease-out);
}
.t-btn:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); transform: translateY(-2px); }
.t-dots { display: flex; gap: 10px; }
.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(29, 24, 18, 0.18);
  transition: background 0.4s, transform 0.4s var(--ease-out), width 0.4s var(--ease-out);
}
.t-dot.is-active { background: var(--gold-deep); width: 26px; border-radius: 4px; }

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  position: relative;
  padding: clamp(110px, 14vw, 190px) 0;
  color: var(--ivory);
  overflow: hidden;
  background: var(--charcoal);
  text-align: center;
}
.cta__bg {
  position: absolute; inset: -10%;
  z-index: 0;
}
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.85) brightness(0.9);
  transform: scale(1.02);
}
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 70% at 50% 40%, rgba(29, 24, 18, 0.25), rgba(29, 24, 18, 0.88) 78%);
}
.cta__inner { position: relative; z-index: 2; }
.cta__eyebrow { justify-content: center; }
.cta__eyebrow::before { display: none; }
.cta__eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.1;
  margin: 24px 0 26px;
}
.cta__title .line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.cta__title .line__inner { display: block; transform: translateY(110%); }
.cta__title.is-in .line__inner { animation: lineUp 1.15s var(--ease-lux) forwards; }
.cta__title.is-in .line:nth-child(2) .line__inner { animation-delay: 0.15s; }

.cta__sub { max-width: 560px; margin: 0 auto; color: rgba(250, 247, 241, 0.75); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 42px; }
.cta__note { margin-top: 26px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250, 247, 241, 0.45); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(70px, 8vw, 100px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
}
.footer__brand .brand__mark { color: var(--ivory); }
.footer__brand p { margin-top: 22px; color: rgba(250, 247, 241, 0.55); font-size: 0.92rem; max-width: 320px; }

.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col a, .footer__col p {
  display: block;
  color: rgba(250, 247, 241, 0.62);
  font-size: 0.92rem;
  padding: 7px 0;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__col .ph { font-size: 0.68rem; color: rgba(250, 247, 241, 0.3); font-style: italic; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
  padding: 26px 0 30px;
  font-size: 0.78rem;
  color: rgba(250, 247, 241, 0.45);
}
.footer__credit { color: currentColor; }
.footer__credit a { color: rgba(250, 247, 241, 0.7); text-decoration: underline; text-underline-offset: 3px; transition: color 0.35s; }
.footer__credit a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(250, 247, 241, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(250, 247, 241, 0.7);
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover {
  background: var(--gold); color: var(--charcoal); border-color: var(--gold);
  transform: translateY(-4px);
}

.to-top {
  width: 46px; height: 46px;
  border: 1px solid rgba(201, 168, 106, 0.5);
  border-radius: 50%;
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.1rem;
  opacity: 0.75;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-out), opacity 0.3s;
}
.to-top:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-4px); opacity: 1; }

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(19, 15, 10, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { animation: lbIn 0.45s var(--ease-lux) both; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__figure {
  max-width: min(78vh, 860px);
  animation: lbZoom 0.5s var(--ease-lux) both;
}
@keyframes lbZoom { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: none; } }
.lightbox__figure img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.lightbox__figure figcaption {
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--champagne);
  letter-spacing: 0.05em;
}

.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 54px; height: 54px;
  border: 1px solid rgba(250, 247, 241, 0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ivory);
  font-size: 1.3rem;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.3s var(--ease-out);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); transform: scale(1.06); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ==========================================================================
   Cursor (desktop only)
   ========================================================================== */

.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 400;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
  opacity: 0;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover { width: 44px; height: 44px; background: rgba(201, 168, 106, 0.85); }
.cursor.is-hidden { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

/* --- Ultra-wide (>1440px) --- */
@media (min-width: 1441px) {
  .container { width: 1340px; }
  .hero__catch-title { font-size: clamp(3rem, 5.5vw, 6.2rem); }
  .section-title { font-size: clamp(2.4rem, 4vw, 4rem); }
  .cta__title { font-size: clamp(2.6rem, 4.5vw, 4.8rem); }
  .about__quote { font-size: 1.55rem; }
  .why__item h3 { font-size: 1.5rem; }
  .why__item p { font-size: 1rem; }
}

/* --- Compact desktop / large laptop (max 1360px) --- */
@media (max-width: 1360px) {
  .hero__card { right: 8px; }
  .container { width: calc(100% - 56px); }
}

/* --- Tablet landscape & small desktop (max 1080px) --- */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .hero__card { right: 12px; }
  .about__stamp { right: 6px; }
}

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .container { width: calc(100% - 48px); }

  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 36px); padding-bottom: 70px; min-height: 100svh; }
  .hero__catch { padding: calc(var(--header-h) + 20px) 20px 60px; }
  .hero__catch-title { font-size: clamp(2.4rem, 6vw, 4.2rem); }
  .hero__catch-eyebrow { font-size: 0.7rem; letter-spacing: 0.36em; }

  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .intro__grid .hero__visual { width: min(100%, 420px); justify-self: center; }
  .intro__lead { font-size: 1rem; }
  .hero__card { right: 6px; }

  .about__grid, .experience__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__visual, .experience__visual { max-width: 480px; }
  .experience__quote { left: 0; }
  .about__stamp { right: 6px; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }

  .section-head--row { flex-direction: column; align-items: flex-start; }
  .section-head--row .section-sub { text-align: left; }

  .gallery__pin { height: calc(100vh - 68px); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-wrap: wrap; }
}

/* --- Mobile landscape / large phone (max 768px) --- */
@media (max-width: 768px) {
  .container { width: calc(100% - 40px); }

  .hero { min-height: 78svh; padding-top: calc(var(--header-h) + 28px); padding-bottom: 60px; }
  .hero__catch { padding: calc(var(--header-h) + 16px) 16px 50px; }
  .hero__catch-title { font-size: clamp(2.2rem, 7.5vw, 3.6rem); }
  .hero__catch-eyebrow { font-size: 0.65rem; letter-spacing: 0.3em; }
  .hero__catch-eyebrow::before { width: 30px; }
  .hero__figure { aspect-ratio: 4/5; }
  .hero__frame { inset: -10px -10px 10px 10px; }
  .hero__badge { width: 100px; height: 100px; bottom: -4px; }
  .hero__card { display: none; }
  .hero__scroll { display: none; }
  .hero__stats { gap: 18px; margin-top: 36px; }
  .stat__num { font-size: 1.6rem; }
  .stat__label { font-size: 0.6rem; }

  .section { padding: clamp(64px, 10vw, 120px) 0; }
  .section-title { font-size: clamp(1.8rem, 5.5vw, 2.8rem); }
  .section-sub { font-size: 0.95rem; }

  .services__grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .service-card { min-height: 280px; padding: 32px 24px 36px; }
  .service-card__icon { width: 40px; height: 40px; margin-bottom: 22px; }
  .service-card h3 { font-size: 1.3rem; }
  .service-card p { font-size: 0.88rem; line-height: 1.6; }

  .why__grid { grid-template-columns: 1fr; gap: 20px; }
  .why__item { padding: 36px 30px; }
  .why__item h3 { font-size: 1.3rem; }
  .why__item p { font-size: 0.9rem; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .cta__title { font-size: clamp(2rem, 7vw, 3.2rem); }
  .cta__sub { font-size: 0.95rem; padding: 0 16px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand p { font-size: 0.88rem; }
  .footer__col h3 { font-size: 0.68rem; }
  .footer__col a { font-size: 0.88rem; }

  .gallery__pin { min-height: 400px; }
  .gallery__hint { font-size: 0.6rem; }
  .gallery__count { font-size: 0.6rem; letter-spacing: 0.28em; }
  .gallery__next { padding: 8px 16px; font-size: 0.7rem; }

  .t-slide { padding: 10px 20px 0; }
  .t-slide__quote { font-size: 4rem; }
  .t-slide p { font-size: clamp(1.1rem, 3vw, 1.4rem); }
  .t-carousel__nav { margin-top: 32px; gap: 20px; }
  .t-btn { width: 46px; height: 46px; }

  .about__quote { font-size: 1.25rem; padding-left: 20px; margin: 24px 0; }
  .about__meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about__stamp { width: 130px; height: 130px; }

  .timeline__item { padding-left: 54px; padding-bottom: 36px; }
  .timeline__body h3 { font-size: 1.3rem; }
  .timeline__body p { font-size: 0.9rem; }
}

/* --- Mobile (max 640px) --- */
@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }

  .hero { padding-bottom: 50px; }
  .hero__catch { padding-bottom: 40px; }
  .hero__catch-title { font-size: clamp(2rem, 8.5vw, 3rem); }
  .hero__catch-eyebrow { font-size: 0.6rem; letter-spacing: 0.26em; }
  .hero__figure { aspect-ratio: 1/1; }
  .hero__badge { width: 86px; height: 86px; }
  .hero__card { position: static; margin-top: 20px; animation: none; }
  .hero__cta { margin-top: 28px; }
  .hero__cta .btn { font-size: 0.72rem; padding: 14px 20px; }
  .hero__stats { gap: 12px; margin-top: 28px; padding-top: 22px; }
  .stat__num { font-size: 1.4rem; }
  .stat__label { font-size: 0.55rem; letter-spacing: 0.1em; line-height: 1.5; }

  .section { padding: clamp(56px, 9vw, 100px) 0; }
  .section-title { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
  .section-sub { font-size: 0.9rem; margin-top: 14px; }
  .section-head { margin-bottom: clamp(32px, 5vw, 56px); }

  .services__grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .service-card { min-height: 240px; padding: 28px 20px 32px; }
  .service-card__icon { width: 36px; height: 36px; margin-bottom: 18px; }
  .service-card__num { top: 16px; right: 16px; font-size: 0.85rem; }
  .service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .service-card p { font-size: 0.82rem; line-height: 1.55; }
  .service-card__link { margin-top: 16px; font-size: 0.64rem; }

  .cta__title { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .cta { padding: clamp(80px, 12vw, 140px) 0; }
  .cta__actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .cta__actions .btn { width: 100%; }
  .cta__note { font-size: 0.66rem; margin-top: 20px; }

  .footer { padding-top: clamp(50px, 7vw, 80px); }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer__brand p { font-size: 0.85rem; }
  .footer__col h3 { margin-bottom: 16px; }
  .footer__col a { padding: 5px 0; font-size: 0.85rem; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 20px 0 24px; }
  .footer__brand { text-align: center; }
  .footer__brand .brand { align-items: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__col { text-align: center; }
  .footer__col a, .footer__col p { display: inline-block; }

  .gallery__foot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery__foot p { font-size: 1.1rem; }
  .gallery__pin { min-height: 360px; }
  .gallery__next { bottom: clamp(16px, 3vh, 24px); }

  .experience__quote { left: 0; bottom: -20px; max-width: 100%; padding: 22px 24px; }
  .experience__quote span { font-size: 2.4rem; }
  .experience__quote p { font-size: 0.95rem; }

  .about__stamp { width: 112px; height: 112px; bottom: -22px; }
  .about__stamp-num { font-size: 1.6rem; }
  .about__sign { font-size: 1.7rem; }
  .about__quote { font-size: 1.15rem; }
  .about__content .reveal-text p { font-size: 0.95rem; }

  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__close { top: 14px; right: 14px; width: 44px; height: 44px; }
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .container { width: calc(100% - 24px); }

  .hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 40px; }
  .hero__catch { padding: calc(var(--header-h) + 12px) 14px 36px; }
  .hero__catch-title { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .hero__catch-eyebrow { font-size: 0.55rem; letter-spacing: 0.22em; gap: 10px; margin-bottom: 18px; }
  .hero__catch-eyebrow::before { width: 22px; }
  .hero__figure { aspect-ratio: 3/4; }
  .hero__badge { width: 74px; height: 74px; bottom: -2px; }
  .hero__stats { gap: 10px; margin-top: 24px; padding-top: 18px; }
  .stat__num { font-size: 1.25rem; }
  .stat__label { font-size: 0.5rem; letter-spacing: 0.08em; }

  .section { padding: clamp(48px, 8vw, 80px) 0; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .section-sub { font-size: 0.85rem; }
  .section-head { margin-bottom: clamp(28px, 4vw, 44px); }

  .btn { font-size: 0.7rem; letter-spacing: 0.16em; padding: 13px 20px; }
  .btn--lg { padding: 15px 24px; }

  .intro__lead { font-size: 0.9rem; }
  .intro__grid { gap: 36px; }

  .services__grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { min-height: 0; padding: 26px 18px 28px; }
  .service-card h3 { font-size: 1.08rem; }
  .service-card p { font-size: 0.8rem; }

  .why__item { padding: 28px 22px; }
  .why__item h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .why__item p { font-size: 0.85rem; }
  .why__icon { width: 52px; height: 52px; margin-bottom: 20px; }
  .why__icon svg { width: 26px; height: 26px; }

  .cta { padding: clamp(60px, 10vw, 100px) 0; }
  .cta__title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .cta__eyebrow { font-size: 0.6rem; }
  .cta__actions { gap: 12px; }

  .footer__grid { gap: 24px; padding-bottom: 32px; }
  .footer__col h3 { font-size: 0.62rem; margin-bottom: 12px; }
  .footer__col a { font-size: 0.82rem; padding: 4px 0; }
  .footer__bottom { font-size: 0.72rem; padding: 16px 0 20px; }

  .t-slide__quote { font-size: 3rem; margin-bottom: 20px; }
  .t-slide p { font-size: clamp(0.95rem, 3.5vw, 1.2rem); line-height: 1.5; }
  .t-slide__name { font-size: 0.72rem; }
  .t-slide__role { font-size: 0.65rem; }
  .t-btn { width: 40px; height: 40px; font-size: 0.85rem; }
  .t-carousel__nav { margin-top: 24px; gap: 16px; }

  .timeline__item { padding-left: 46px; padding-bottom: 28px; }
  .timeline__num { width: 28px; height: 28px; font-size: 0.78rem; }
  .timeline__body h3 { font-size: 1.15rem; }
  .timeline__body p { font-size: 0.85rem; }
  .timeline::before, .timeline::after { left: 13px; }

  .gallery__pin { min-height: 320px; }
  .gallery__count { font-size: 0.55rem; letter-spacing: 0.22em; bottom: clamp(14px, 3vh, 20px); left: clamp(14px, 3vw, 20px); }
  .gallery__next { padding: 7px 14px; font-size: 0.66rem; gap: 8px; bottom: clamp(14px, 3vh, 20px); }
  .gallery__hint { font-size: 0.55rem; }

  .marquee__track span { font-size: 1.2rem; }
  .marquee__track i { font-size: 0.7rem; }
}

/* --- Tiny phone (max 360px) --- */
@media (max-width: 360px) {
  .container { width: calc(100% - 20px); }

  .hero__catch-title { font-size: clamp(1.6rem, 9vw, 2.2rem); }
  .hero__catch-eyebrow { font-size: 0.5rem; gap: 8px; }
  .hero__catch-eyebrow::before { width: 18px; }
  .hero__badge { width: 64px; height: 64px; }

  .section-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .btn { font-size: 0.66rem; padding: 12px 16px; }

  .service-card { padding: 22px 16px 24px; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.78rem; }

  .why__item { padding: 24px 18px; }
  .why__item h3 { font-size: 1.05rem; }

  .cta__title { font-size: clamp(1.4rem, 8vw, 1.9rem); }

  .t-slide { padding: 10px 10px 0; }
  .t-slide__quote { font-size: 2.4rem; }
  .t-slide p { font-size: 0.9rem; }

  .gallery__pin { min-height: 280px; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-fade], .hero__catch-title .line__inner, .cta__title .line__inner,
  .preloader, .cursor, .hero__badge-ring, .marquee__track {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .cursor { display: none; }
  html { scroll-behavior: auto; }
}