:root {
  --ink: #2b211a;
  --charcoal: #1c1815;
  --brown: #543e27;
  --taupe: #aea18e;
  --sand: #e8e4d9;
  --ivory: #f7f4ec;
  --paper: #fffdf7;
  --blush: #af977b;
  --sage: #9d9b8d;
  --gold: #af977b;
  --gold-deep: #6b5643;
  --gold-soft: #dcdbd0;
  --line: rgba(84, 62, 39, 0.16);
  --gold-line: rgba(175, 151, 123, 0.42);
  --shadow: 0 24px 80px rgba(84, 62, 39, 0.13);
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }
.section-dark { background: var(--charcoal); color: var(--ivory); }
.muted { background: #ebe7dc; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--ivory);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.site-header.page-header,
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(247, 244, 236, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(43, 33, 26, 0.08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-logo-wrap {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(175, 151, 123, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(247, 244, 236, 0.96), rgba(220, 219, 208, 0.88));
  box-shadow:
    0 10px 28px rgba(107, 86, 67, 0.18),
    inset 0 0 0 3px rgba(255, 253, 247, 0.72);
}
.page-header .brand-logo-wrap,
.site-header.scrolled .brand-logo-wrap,
.site-header.menu-open .brand-logo-wrap {
  border-color: var(--gold-line);
}
.brand-logo {
  width: 74%;
  height: 74%;
  object-fit: contain;
  transform: none;
  filter: none;
}
.brand-name { font-size: 13px; text-transform: uppercase; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.page-header .primary-nav,
.site-header.scrolled .primary-nav,
.site-header.menu-open .primary-nav {
  background: transparent;
  box-shadow: none;
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 0;
  padding: 8px 0;
  opacity: 0.78;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: transparent;
  color: inherit;
  opacity: 1;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.page-header .primary-nav a:hover,
.page-header .primary-nav a[aria-current="page"],
.site-header.scrolled .primary-nav a:hover,
.site-header.scrolled .primary-nav a[aria-current="page"],
.site-header.menu-open .primary-nav a:hover,
.site-header.menu-open .primary-nav a[aria-current="page"] {
  background: transparent;
  color: var(--ink);
}
.primary-nav .nav-cta {
  min-height: 42px;
  border: 1px solid rgba(220, 219, 208, 0.84);
  border-radius: 999px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #dcdbd0, #af977b);
  color: var(--ink);
  opacity: 1;
  box-shadow: 0 14px 36px rgba(107, 86, 67, 0.25);
}
.primary-nav .nav-cta::after {
  display: none;
}
.primary-nav .nav-cta:hover {
  background: var(--ivory);
  color: var(--ink);
}
.page-header .primary-nav .nav-cta,
.site-header.scrolled .primary-nav .nav-cta,
.site-header.menu-open .primary-nav .nav-cta {
  border-color: var(--gold-line);
  background: linear-gradient(135deg, #dcdbd0, #af977b);
  color: var(--ink);
}
.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 220ms ease;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.page-header .nav-toggle:hover,
.site-header.scrolled .nav-toggle:hover,
.site-header.menu-open .nav-toggle:hover { background: rgba(43, 33, 26, 0.06); }
.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms ease, top 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21.5px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.site-header.menu-open .nav-toggle span:nth-child(1) { top: 21.5px; transform: translateX(-50%) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { top: 21.5px; transform: translateX(-50%) rotate(-45deg); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; line-height: 0.98; }
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(46px, 7vw, 96px); }
h2 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 68px); }
h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1.04; }
.eyebrow { margin: 0 0 18px; color: var(--gold-deep); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 48px;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { transform: scale(1.08); animation: heroImageDrift 18s ease-in-out infinite alternate; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 18%, rgba(220, 219, 208, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(20, 17, 15, 0.56), rgba(20, 17, 15, 0.28) 50%, rgba(20, 17, 15, 0.04)),
    linear-gradient(0deg, rgba(20, 17, 15, 0.42), rgba(20, 17, 15, 0.02) 58%);
}
/* Home hero v2 — soft overlay, both faces stay visible */
.home-hero-v2 .hero-media::after {
  background:
    radial-gradient(circle at 78% 18%, rgba(175, 151, 123, 0.18), transparent 32%),
    linear-gradient(95deg, rgba(20, 17, 15, 0.34), rgba(20, 17, 15, 0.16) 52%, rgba(20, 17, 15, 0.04)),
    linear-gradient(0deg, rgba(20, 17, 15, 0.28), rgba(20, 17, 15, 0) 46%);
}
.home-hero-v2 .hero-content h1,
.home-hero-v2 .hero-content > p,
.home-hero-v2 .hero-kicker,
.home-hero-v2 .hero-lede {
  text-shadow: 0 1px 24px rgba(20, 17, 15, 0.42);
}
.hero .hero-kicker {
  color: var(--gold-soft);
}
.hero::before {
  position: absolute;
  inset: 104px clamp(18px, 4vw, 52px) 26px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(220, 219, 208, 0.34);
  box-shadow: inset 0 0 0 1px rgba(28, 24, 21, 0.08);
  pointer-events: none;
}
.hero-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.35fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(1240px, 100%);
}
.hero-content, .hero-note, .hero-marquee, .scroll-cue { position: relative; z-index: 2; }
.hero-kicker, .hero-content h1, .hero-content > p, .hero-meta, .hero-actions { animation: heroTextRise 780ms ease both; }
.hero-content h1 { animation-delay: 90ms; }
.hero .hero-content h1 {
  max-width: 720px;
  font-size: clamp(60px, 7vw, 106px);
  line-height: 0.9;
  text-wrap: balance;
}
.hero-content > p { animation-delay: 180ms; }
.hero-meta { animation-delay: 240ms; }
.hero-actions { animation-delay: 320ms; }
.hero-content p { max-width: 560px; color: rgba(247, 244, 236, 0.9); font-size: 18px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-meta span {
  border-left: 1px solid rgba(220, 219, 208, 0.62);
  padding-left: 12px;
  color: rgba(247, 244, 236, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-card {
  max-width: 310px;
  margin-left: auto;
  border: 1px solid rgba(220, 219, 208, 0.68);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(220, 219, 208, 0.26), rgba(43, 33, 26, 0.5) 42%, rgba(28, 24, 21, 0.66));
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(175, 151, 123, 0.18),
    0 0 54px rgba(175, 151, 123, 0.14);
  backdrop-filter: blur(18px);
  animation: heroCardFloat 5.8s ease-in-out infinite;
}
.hero-card img {
  width: 82px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(24%) saturate(514%) hue-rotate(3deg) brightness(101%) contrast(92%);
  opacity: 0.92;
}
.hero-card p {
  margin-bottom: 24px;
  color: rgba(247, 244, 236, 0.88);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
}
.hero-card div { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-card span { border: 1px solid rgba(220, 219, 208, 0.46); border-radius: 999px; padding: 7px 10px; background: rgba(175, 151, 123, 0.12); color: rgba(247, 244, 236, 0.86); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero-card strong {
  display: block;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 244, 236, 0.16);
  color: rgba(247, 244, 236, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-marquee {
  width: min(720px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border-top: 1px solid rgba(220, 219, 208, 0.26);
  border-bottom: 1px solid rgba(220, 219, 208, 0.26);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hero-marquee div { display: flex; width: max-content; gap: 28px; padding: 12px 0; animation: heroMarquee 22s linear infinite; }
.hero-marquee span { color: rgba(247, 244, 236, 0.74); font-size: 12px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.hero-marquee span:nth-child(3n + 1) { color: var(--gold-soft); }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-note span {
  border: 1px solid rgba(220, 219, 208, 0.26);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(175, 151, 123, 0.1);
  color: rgba(247, 244, 236, 0.76);
  font-size: 12px;
  backdrop-filter: blur(12px);
}
.hero-note strong { color: var(--gold-soft); font-weight: 800; }
.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 236, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.scroll-cue span {
  display: inline-block;
  width: 1px;
  height: 46px;
  background: rgba(247, 244, 236, 0.38);
  transform-origin: top;
  animation: scrollCue 1.8s ease-in-out infinite;
}

@media (min-width: 1400px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 44px;
  }
  .hero::before {
    top: 112px;
    bottom: 26px;
  }
  .hero .hero-content h1 {
    max-width: 760px;
    font-size: clamp(72px, 5.1vw, 96px);
  }
  .hero-frame {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(70px, 8vw, 138px);
  }
  .hero-content p {
    max-width: 660px;
  }
  .hero-card {
    max-width: 330px;
    margin-right: 0;
    justify-self: end;
  }
  .hero-marquee {
    margin-top: 30px;
  }
}

@keyframes heroImageDrift {
  from { transform: scale(1.08) translate3d(-8px, -6px, 0); }
  to { transform: scale(1.14) translate3d(10px, 8px, 0); }
}

@keyframes heroTextRise {
  from { opacity: 0.35; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes heroMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.45); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--ivory); color: var(--ink); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18); }
.hero .button-light {
  border-color: rgba(220, 219, 208, 0.86);
  background: linear-gradient(135deg, #dcdbd0, #af977b);
  box-shadow: 0 16px 44px rgba(107, 86, 67, 0.28);
}
.button-ghost { border-color: rgba(247, 244, 236, 0.48); color: var(--ivory); background: rgba(247, 244, 236, 0.04); }
.hero .button-ghost {
  border-color: rgba(220, 219, 208, 0.56);
}
.button-ghost:hover { background: rgba(247, 244, 236, 0.12); border-color: rgba(247, 244, 236, 0.74); }
.button-dark {
  border-color: var(--gold-line);
  background: linear-gradient(135deg, var(--charcoal), #3a2f24);
  color: var(--ivory);
  box-shadow: 0 14px 36px rgba(107, 86, 67, 0.16);
}
.text-link { display: inline-flex; margin-top: 10px; border-bottom: 1px solid currentColor; color: var(--brown); font-weight: 800; }

.page-hero { padding: 162px 0 82px; background: var(--sand); }
.page-hero h1 {
  max-width: 860px;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 84px;
  background:
    radial-gradient(circle at 82% 22%, rgba(175, 151, 123, 0.2), transparent 30%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.76));
}
.about-hero::before {
  position: absolute;
  inset: 166px clamp(58px, 10vw, 178px) auto auto;
  width: min(26vw, 390px);
  height: 430px;
  content: "";
  border-radius: 8px 8px 110px 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.54), rgba(220, 219, 208, 0.16)),
    radial-gradient(circle at 45% 25%, rgba(175, 151, 123, 0.13), transparent 56%);
  box-shadow: 0 24px 70px rgba(107, 86, 67, 0.08);
  pointer-events: none;
}
.about-hero::after {
  position: absolute;
  inset: auto auto 62px clamp(20px, 5vw, 82px);
  width: min(44vw, 620px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(175, 151, 123, 0.52), transparent);
  pointer-events: none;
}
.about-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 500px);
  grid-template-areas:
    "label portrait"
    "copy portrait"
    "panel portrait";
  gap: 20px clamp(36px, 5vw, 76px);
  align-items: center;
}
.about-hero-label {
  grid-area: label;
  margin: 0;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}
.about-hero-copy { grid-area: copy; }
.about-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(50px, 5vw, 70px);
  line-height: 1;
  text-wrap: balance;
}
.about-hero-copy p {
  max-width: 560px;
  color: rgba(43, 33, 26, 0.7);
  font-size: 18px;
  line-height: 1.72;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}
.about-hero-portrait {
  grid-area: portrait;
  position: relative;
  height: 590px;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 247, 0.78);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 30px 90px rgba(43, 33, 26, 0.18),
    0 0 0 1px rgba(175, 151, 123, 0.34),
    0 0 70px rgba(175, 151, 123, 0.18);
}
.about-hero-portrait::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(220, 219, 208, 0.8);
  border-radius: 4px;
  pointer-events: none;
}
.about-hero-portrait img {
  transform: scale(1.04);
  object-position: center 8%;
  filter: saturate(0.94) contrast(1.02);
}
.about-hero-portrait figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid var(--gold-line);
  background: rgba(247, 244, 236, 0.94);
  box-shadow: 0 18px 44px rgba(43, 33, 26, 0.14);
  backdrop-filter: blur(14px);
}
.about-hero-portrait span {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-hero-portrait strong {
  display: block;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}
.about-hero-panel {
  grid-area: panel;
  max-width: 680px;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.84), rgba(220, 219, 208, 0.18));
  box-shadow: 0 22px 70px rgba(107, 86, 67, 0.1);
}
.about-hero-panel > p {
  margin-bottom: 0;
  color: rgba(43, 33, 26, 0.72);
  font-size: 14px;
  line-height: 1.5;
}
.about-hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}
.about-hero-panel div {
  border-top: 1px solid var(--gold-line);
  padding-top: 14px;
}
.about-hero-panel dt {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--gold-deep);
}
.about-hero-panel dd {
  margin: 6px 0 0;
  color: rgba(43, 33, 26, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-story-hero .about-hero-copy h1 {
  max-width: 680px;
}
.about-story-section {
  background: var(--ivory);
}
.about-story-grid,
.about-philosophy-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}
.about-story-media figure {
  position: relative;
  height: min(680px, 78vh);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 253, 247, 0.86);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 28px 90px rgba(43, 33, 26, 0.14),
    0 0 0 1px rgba(175, 151, 123, 0.28);
}
.about-story-media figure::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(220, 219, 208, 0.78);
  pointer-events: none;
}
.about-story-media img {
  object-position: center 22%;
}
.about-story-media img[src*="dwija-working-mirror"] {
  object-position: 58% 50%;
}
.about-story-copy h2,
.about-philosophy-grid h2 {
  max-width: 720px;
}
.about-story-copy p,
.about-philosophy-copy p {
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
}
.about-philosophy-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 18% 22%, rgba(175, 151, 123, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(220, 219, 208, 0.58), rgba(255, 253, 247, 0.92));
}
.about-philosophy-section::before {
  position: absolute;
  inset: 34px clamp(20px, 5vw, 72px);
  content: "";
  border: 1px solid rgba(175, 151, 123, 0.22);
  border-radius: 10px;
  pointer-events: none;
}
.about-philosophy-copy {
  border-left: 1px solid var(--gold-line);
  padding-left: clamp(24px, 4vw, 54px);
}
.about-philosophy-grid {
  position: relative;
  z-index: 1;
}
.about-philosophy-grid h2 {
  font-style: italic;
}
.about-cta-section {
  background: var(--ivory);
}
.page-hero-grid, .split-intro, .experience-grid, .inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}
.page-hero p, .intro-copy p, .section-heading p, .about-copy p, .inquiry-grid > div > p {
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
}

.intro { background: var(--sand); }
.intro-with-portrait {
  width: min(1240px, calc(100% - 40px));
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.72fr) minmax(340px, 0.7fr);
  gap: clamp(32px, 4.5vw, 60px);
  align-items: center;
}
.dwija-portrait {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(43, 33, 26, 0.14);
}
.dwija-portrait::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(247, 244, 236, 0.62);
  pointer-events: none;
}
.dwija-portrait img {
  height: 100%;
  object-position: center 15%;
  filter: saturate(0.92) contrast(1.02);
}
.dwija-portrait figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(247, 244, 236, 0.88);
  color: var(--ink);
  backdrop-filter: blur(14px);
}
.dwija-portrait span {
  display: block;
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.dwija-portrait strong {
  display: block;
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}
.service-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-item { min-height: 270px; padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line); background: var(--ivory); }
.strip-item:nth-child(even) { background: #f0ece2; }
.strip-item:hover { background: var(--paper); }
.strip-item span { display: block; margin-bottom: 42px; color: var(--gold-deep); font-size: 12px; font-weight: 800; }
.strip-item strong { display: block; margin-bottom: 12px; font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.strip-item p { margin-bottom: 0; color: rgba(43, 33, 26, 0.66); font-size: 15px; }

.section-heading { max-width: 780px; }
.editorial-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-rows: repeat(2, 330px); gap: 16px; margin-top: 34px; }
.featured-work .editorial-grid { margin-top: 0; }
.editorial-card { position: relative; overflow: hidden; border-radius: 8px; background: var(--sand); box-shadow: 0 14px 50px rgba(43, 33, 26, 0.08); transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease; }
.editorial-card.tall { grid-row: span 2; }
.editorial-card img {
  object-position: center 18%;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(43, 33, 26, 0.14); }
.editorial-card:hover img { transform: scale(1.045); }
.editorial-card span, .gallery figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.instagram-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(175, 151, 123, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.72));
}
.instagram-section::before {
  position: absolute;
  inset: 68px auto auto 5vw;
  width: min(260px, 20vw);
  height: min(260px, 20vw);
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.instagram-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}
.instagram-heading h2 {
  max-width: 780px;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.04;
}
.instagram-live-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 52px);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.94), rgba(232, 228, 217, 0.74));
  box-shadow: 0 24px 80px rgba(43, 33, 26, 0.1);
}
.instagram-live-card::after {
  position: absolute;
  inset: 24px 28px auto auto;
  width: min(240px, 22vw);
  height: min(240px, 22vw);
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.instagram-profile-image {
  position: relative;
  display: block;
  width: min(230px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 247, 0.9);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(43, 33, 26, 0.12);
}
.instagram-profile-image::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(247, 244, 236, 0.76);
  border-radius: 50%;
}
.instagram-profile-image img {
  filter: saturate(0.95) contrast(1.04);
}
.instagram-live-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.instagram-live-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--blush);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.instagram-live-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(44px, 5vw, 76px);
}
.instagram-live-copy p {
  max-width: 620px;
  color: rgba(43, 33, 26, 0.68);
  font-size: 18px;
}
.instagram-feed {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.instagram-card {
  position: relative;
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.08);
}
.instagram-card-large {
  grid-column: span 6;
  grid-row: span 2;
}
.instagram-card img {
  filter: saturate(0.92) contrast(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}
.instagram-card:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.045);
}
.instagram-card-note {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(28, 24, 21, 0.94), rgba(84, 62, 39, 0.86));
  color: var(--ivory);
}
.instagram-card-note strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}
.instagram-card-note span {
  color: rgba(247, 244, 236, 0.72);
  font-size: 14px;
}
.instagram-post-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
}
.instagram-post-grid .instagram-card {
  grid-column: auto;
  aspect-ratio: 1;
  background: rgba(255, 253, 247, 0.72);
}
.instagram-post-grid .instagram-card img {
  object-fit: cover;
  object-position: center center;
}
.instagram-post-grid .instagram-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(28, 24, 21, 0.2));
  opacity: 0;
  transition: opacity 220ms ease;
}
.instagram-post-grid .instagram-card:hover::after {
  opacity: 1;
}
.instagram-post-grid .instagram-card:hover img {
  transform: scale(1.025);
}

.about-grid, .service-detail-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(42px, 7vw, 92px); align-items: start; }
.image-pair { display: grid; grid-template-columns: 1fr 0.82fr; gap: 18px; }
.image-pair img {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow:
    var(--shadow),
    0 0 48px rgba(175, 151, 123, 0.12);
}
.image-pair img:last-child { margin-top: 76px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 36px 0 0; }
.stats div { border-top: 1px solid var(--line); padding-top: 20px; }
.stats dt { font-family: var(--serif); font-size: 38px; line-height: 1; }
.stats dd { margin: 8px 0 0; color: rgba(43, 33, 26, 0.62); font-size: 13px; }
.philosophy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--gold-line);
}
.philosophy-points span {
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 9px 13px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(220, 219, 208, 0.2));
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; }
.timeline-list { display: grid; gap: 14px; }
.timeline-list article, .service-panel, blockquote { border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.timeline-list article {
  border-color: var(--gold-line);
  padding: 28px;
  box-shadow: 0 18px 55px rgba(107, 86, 67, 0.07);
}
.timeline-list span, .service-panel span { display: inline-block; margin-bottom: 22px; color: var(--gold-deep); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.seo-feature {
  background:
    radial-gradient(circle at 12% 18%, rgba(175, 151, 123, 0.12), transparent 26%),
    var(--sand);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.seo-feature-grid,
.about-faq-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}
.seo-copy {
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
}
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--gold-line);
}
.keyword-row span {
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 253, 247, 0.84);
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
}

.about-faq-list {
  display: grid;
  gap: 14px;
}
.about-faq-list article {
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(220, 219, 208, 0.12));
}
.about-faq-list h3 {
  margin-bottom: 10px;
  font-size: 25px;
}
.about-faq-list p {
  margin-bottom: 0;
  color: rgba(43, 33, 26, 0.68);
}

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 10px 15px; color: var(--brown); font-size: 13px; font-weight: 800; cursor: pointer; }
.filter-button.active { border-color: var(--gold-line); background: linear-gradient(135deg, var(--charcoal), #3a2f24); color: var(--ivory); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { position: relative; min-height: 420px; margin: 0; overflow: hidden; border-radius: 8px; background: var(--sand); }
.gallery-expanded figure:nth-child(3n + 1) { min-height: 520px; }
.gallery figure.hidden { display: none; }
.gallery button { width: 100%; height: 100%; border: 0; padding: 0; background: transparent; cursor: zoom-in; }
.gallery img { transition: transform 500ms ease; }
.gallery figure:hover img { transform: scale(1.045); }
.lightbox { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 28px; background: rgba(28, 24, 21, 0.9); }
.lightbox[hidden] { display: none; }
.lightbox img { width: min(900px, 92vw); height: min(80vh, 760px); border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 22px; right: 22px; border: 1px solid rgba(247, 244, 236, 0.5); border-radius: 999px; background: transparent; color: var(--ivory); padding: 10px 16px; cursor: pointer; }

.portfolio-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at 83% 20%, rgba(175, 151, 123, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.8));
}
.portfolio-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: var(--line);
}
.portfolio-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}
.portfolio-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.3vw, 88px);
  line-height: 1;
  text-wrap: balance;
}
.portfolio-hero-copy p {
  max-width: 620px;
  color: rgba(43, 33, 26, 0.7);
  font-size: 18px;
}
.portfolio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.portfolio-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.portfolio-hero-meta span {
  color: rgba(84, 62, 39, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.portfolio-hero-stack {
  position: relative;
  min-height: 560px;
}
.portfolio-hero-stack::before {
  position: absolute;
  inset: 42px 28px 34px auto;
  width: 76%;
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.34);
}
.portfolio-hero-stack img {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255, 253, 247, 0.78);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(43, 33, 26, 0.14);
  filter: saturate(0.94) contrast(1.02);
}
.portfolio-hero-stack img:nth-child(1) {
  inset: 44px 92px 0 0;
  height: 440px;
  width: 62%;
}
.portfolio-hero-stack img:nth-child(2) {
  inset: 4px 0 auto auto;
  height: 310px;
  width: 48%;
}
.portfolio-hero-stack img:nth-child(3) {
  inset: auto 12px 36px auto;
  height: 260px;
  width: 54%;
}

.portfolio-gallery-section {
  background:
    linear-gradient(180deg, #ebe7dc, var(--ivory) 42%, #fffdf7);
}
.portfolio-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.portfolio-category-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border: 1px solid rgba(175, 151, 123, 0.46);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(220, 219, 208, 0.46)),
    var(--ivory);
  color: var(--charcoal);
  text-align: left;
  box-shadow: 0 24px 70px rgba(84, 62, 39, 0.09);
  cursor: pointer;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.portfolio-category-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -78px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(175, 151, 123, 0.34);
  border-radius: 999px;
}
.portfolio-category-card:hover,
.portfolio-category-card.active {
  border-color: rgba(175, 151, 123, 0.86);
  box-shadow: 0 26px 78px rgba(84, 62, 39, 0.14);
  transform: translateY(-3px);
}
.portfolio-category-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
}
.portfolio-category-card strong {
  display: block;
  max-width: 170px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}
.portfolio-category-card p {
  margin: 14px 0 0;
  color: rgba(43, 33, 26, 0.64);
  font-size: 13px;
  line-height: 1.48;
}
.portfolio-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.6fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}
.portfolio-section-heading h2 {
  max-width: 720px;
}
.portfolio-section-heading > p {
  color: rgba(43, 33, 26, 0.68);
}
.portfolio-filter-bar {
  position: sticky;
  top: 88px;
  z-index: 10;
  width: fit-content;
  max-width: min(1120px, calc(100% - 40px));
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px;
  background: rgba(247, 244, 236, 0.88);
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.07);
  backdrop-filter: blur(16px);
}
.portfolio-filter-bar .filter-button {
  border-color: transparent;
  padding: 8px 13px;
  color: rgba(84, 62, 39, 0.78);
}
.portfolio-filter-bar .filter-button.active {
  background: var(--charcoal);
  color: var(--ivory);
}
/* True masonry — CSS columns let each image show at natural aspect ratio */
.portfolio-masonry {
  display: block !important;
  column-count: 3;
  column-gap: 20px;
  margin-top: 38px;
}
.portfolio-masonry .portfolio-card,
.portfolio-masonry .portfolio-card.feature-card,
.portfolio-masonry .portfolio-card.tall-card,
.gallery-expanded.portfolio-masonry figure:nth-child(3n + 1) {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  min-height: 0 !important;
  height: auto !important;
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.09);
}
.portfolio-masonry .portfolio-card img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
.portfolio-card figcaption {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 15px 17px;
  background: rgba(247, 244, 236, 0.92);
  box-shadow: 0 16px 42px rgba(43, 33, 26, 0.12);
  backdrop-filter: blur(14px);
}
.portfolio-card figcaption span {
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.portfolio-card figcaption strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.06;
}
.portfolio-card img {
  filter: saturate(0.94) contrast(1.02);
}
.portfolio-card:hover img {
  transform: scale(1.025);
}
.portfolio-cta {
  background: var(--ivory);
}

.service-menu { position: sticky; top: 110px; display: grid; gap: 8px; }
.service-menu a { border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; color: var(--brown); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.service-list { display: grid; gap: 18px; }
.service-panel { padding: clamp(26px, 4vw, 42px); scroll-margin-top: 110px; }
.service-panel p { color: rgba(43, 33, 26, 0.68); }
.service-panel ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(43, 33, 26, 0.68);
}
.service-panel li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--blush);
}
.accordion-trigger { width: 100%; margin-top: 20px; border: 0; border-top: 1px solid var(--line); background: transparent; padding: 20px 0 0; color: var(--brown); font-weight: 800; text-align: left; cursor: pointer; }
.accordion-panel { display: none; padding-top: 12px; }
.service-panel.open .accordion-panel { display: block; }
.service-price {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(220, 219, 208, 0.38);
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}
.service-price-list,
.mini-price-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}
.service-price-list div,
.mini-price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--gold-line);
  padding-top: 16px;
}
.service-price-list dt,
.mini-price-list dt {
  color: rgba(43, 33, 26, 0.72);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}
.service-price-list dd,
.mini-price-list dd {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.mini-price-list dd {
  font-size: 24px;
}
.service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.service-includes span {
  margin: 0;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.68);
  color: rgba(43, 33, 26, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.pricing-panel {
  position: relative;
  overflow: hidden;
}
.pricing-panel:not(.open) > p,
.pricing-panel:not(.open) > ul,
.pricing-panel:not(.open) > .service-price-list,
.pricing-panel:not(.open) > .party-pricing-grid,
.pricing-panel:not(.open) > .service-includes {
  display: none;
}
.pricing-panel.open {
  border-color: rgba(175, 151, 123, 0.44);
  background:
    radial-gradient(circle at 92% 12%, rgba(175, 151, 123, 0.12), transparent 26%),
    rgba(255, 253, 247, 0.92);
  box-shadow: 0 24px 60px rgba(84, 62, 39, 0.1);
}
.pricing-panel::after {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(175, 151, 123, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.feature-pricing-panel {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(220, 219, 208, 0.28));
}
.service-detail-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(320px, 100%);
  margin-top: 18px;
  border-color: var(--gold-line);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 253, 247, 0.62);
  color: var(--brown);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-detail-toggle:hover,
.pricing-panel.open .service-detail-toggle {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
}
.service-detail-toggle span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid rgba(84, 62, 39, 0.24);
  border-radius: 50%;
  color: inherit;
  font-size: 14px;
  line-height: 1;
}
.pricing-panel.open > p {
  margin-top: 22px;
}
.party-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.party-pricing-grid > div {
  border-top: 1px solid var(--gold-line);
  padding-top: 18px;
}
.party-pricing-grid h3 {
  margin-bottom: 10px;
  font-size: 28px;
}
.party-pricing-grid--compact h3 {
  font-size: 24px;
}
.service-notes-panel {
  border-color: rgba(175, 151, 123, 0.5);
  background: rgba(220, 219, 208, 0.28);
}

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 136px 0 86px;
  background:
    radial-gradient(circle at 78% 18%, rgba(175, 151, 123, 0.18), transparent 27%),
    radial-gradient(circle at 18% 78%, rgba(169, 140, 112, 0.12), transparent 30%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.82));
}
.services-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: var(--line);
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 0.72fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.services-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(46px, 4.9vw, 72px);
  line-height: 1;
  text-wrap: balance;
}
.services-hero-copy p {
  max-width: 600px;
  color: rgba(43, 33, 26, 0.7);
  font-size: 18px;
}
.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.services-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.services-hero-meta span {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  color: rgba(84, 62, 39, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.services-hero-meta span:not(:first-child) {
  padding-left: 18px;
}
.services-hero-meta span:last-child {
  border-right: 0;
}
.services-hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}
.services-hero-visual::before {
  position: absolute;
  inset: 30px 0 60px 88px;
  content: "";
  border-radius: 120px 8px 8px 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.72), rgba(220, 219, 208, 0.54));
  box-shadow: 0 30px 90px rgba(43, 33, 26, 0.08);
  z-index: 0;
}
.services-hero-visual::after {
  position: absolute;
  inset: 86px 50px 118px 38px;
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.13);
  border-radius: 8px 8px 130px 8px;
  z-index: 0;
}
.service-visual-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 247, 0.86);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(43, 33, 26, 0.15);
  z-index: 1;
}
.service-visual-card img {
  filter: saturate(0.94) contrast(1.02);
  transition: transform 700ms ease;
  object-position: center 18%;
}
.services-hero-card img {
  object-position: center 18%;
}
.service-visual-card:hover img {
  transform: scale(1.025);
}
.service-visual-card span {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(247, 244, 236, 0.92);
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.service-visual-main {
  inset: 0 28px auto auto;
  width: 70%;
  height: 390px;
}
.service-visual-secondary {
  inset: auto auto 12px 0;
  width: 48%;
  height: 250px;
}
.services-hero-note {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(300px, 58%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(247, 244, 236, 0.9);
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.1);
  backdrop-filter: blur(14px);
  z-index: 2;
}
.services-hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}
.services-hero-note span {
  color: rgba(43, 33, 26, 0.66);
  font-size: 13px;
}
.service-overview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0, rgba(175, 151, 123, 0.14), transparent 30%),
    linear-gradient(180deg, var(--ivory), #eee9dd);
}
.service-overview .section-heading {
  margin-bottom: 34px;
}
.service-overview .section-heading h2 {
  max-width: 940px;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1;
  text-wrap: balance;
}
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.service-package-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(220, 219, 208, 0.16));
  color: var(--ink);
  box-shadow:
    0 22px 70px rgba(43, 33, 26, 0.08),
    0 0 46px rgba(175, 151, 123, 0.08);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.service-package-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  content: "";
  border-right: 1px solid rgba(175, 151, 123, 0.42);
  border-bottom: 1px solid rgba(175, 151, 123, 0.42);
  pointer-events: none;
}
.service-package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(175, 151, 123, 0.55);
  box-shadow:
    0 28px 86px rgba(43, 33, 26, 0.12),
    0 0 54px rgba(175, 151, 123, 0.12);
}
.service-package-card figure {
  position: relative;
  height: clamp(220px, 18vw, 285px);
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}
.service-package-card figure::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(247, 244, 236, 0.58);
  pointer-events: none;
}
.service-package-card img {
  height: 100%;
  object-position: center 35%;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 600ms ease;
}
.service-package-card:hover img {
  transform: scale(1.035);
}
.service-package-body {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 22px;
}
.service-package-body span {
  display: block;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.service-package-body h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.02;
}
.service-package-body p {
  margin-bottom: 22px;
  color: rgba(43, 33, 26, 0.68);
  font-size: 15px;
}
.service-package-body .service-price {
  margin-top: auto;
}
.feature-package-card {
  background:
    linear-gradient(145deg, rgba(247, 244, 236, 0.98), rgba(175, 151, 123, 0.16));
}
.services-detail-section {
  background:
    linear-gradient(180deg, #ebe7dc, var(--ivory));
}
.services-detail-section .service-detail-grid {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
}
.services-detail-section .service-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(247, 244, 236, 0.88);
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.07);
  backdrop-filter: blur(16px);
}
.services-detail-section .service-menu a {
  border-color: transparent;
  border-radius: 6px;
}
.services-detail-section .service-menu a:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.services-detail-section .service-panel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(43, 33, 26, 0.08);
}
.services-detail-section .service-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--gold-soft));
  opacity: 0.65;
}

.experience { background: linear-gradient(rgba(28, 24, 21, 0.9), rgba(28, 24, 21, 0.92)), url("assets/bridal-experience-background.jpg") center/cover; }
.experience .eyebrow { color: #dcdbd0; }
.process { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.process li { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(247, 244, 236, 0.18); }
.process strong { font-family: var(--serif); font-size: 28px; font-weight: 600; }
.process span { color: rgba(247, 244, 236, 0.76); }

.reviews-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 104px;
  background:
    radial-gradient(circle at 82% 20%, rgba(175, 151, 123, 0.18), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(137, 146, 127, 0.12), transparent 30%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.8));
}
.reviews-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: var(--line);
}
.reviews-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.reviews-hero-copy h1 {
  max-width: 850px;
  font-size: clamp(52px, 5.7vw, 84px);
  line-height: 0.99;
  text-wrap: balance;
}
.reviews-hero-copy p {
  max-width: 660px;
  color: rgba(43, 33, 26, 0.7);
  font-size: 18px;
}
.reviews-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.featured-review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(34px, 5vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(247, 244, 236, 0.88));
  box-shadow: 0 28px 90px rgba(43, 33, 26, 0.12);
}
.featured-review-card::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 128px;
  height: 128px;
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.1);
  border-radius: 50%;
}
.quote-mark {
  display: block;
  margin-bottom: 18px;
  color: rgba(175, 151, 123, 0.78);
  font-family: var(--serif);
  font-size: 86px;
  line-height: 0.72;
}
.featured-review-card blockquote,
.review-card {
  break-inside: avoid;
  margin: 0;
  padding: 0;
}
.featured-review-card blockquote {
  border: 0;
  background: transparent;
}
.featured-review-card blockquote p,
.review-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.22;
}
.featured-review-card blockquote p {
  font-size: clamp(28px, 2.8vw, 42px);
}
.featured-review-card cite,
.review-card cite,
cite {
  display: block;
  margin-top: 22px;
  color: rgba(43, 33, 26, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.review-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review-rating span {
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.review-trust {
  background: var(--ivory);
}
.review-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-trust-grid article {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.06);
}
.review-trust-grid span {
  display: block;
  margin-bottom: 74px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}
.review-trust-grid h2 {
  font-size: 32px;
}
.review-trust-grid p {
  color: rgba(43, 33, 26, 0.66);
}
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  position: absolute;
  inset: 80px auto auto 6vw;
  width: min(280px, 22vw);
  height: min(280px, 22vw);
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.reviews-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}
.reviews-section-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.02;
}
.reviews-section-heading > p {
  color: rgba(43, 33, 26, 0.66);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.review-card {
  grid-column: span 4;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 16px 55px rgba(43, 33, 26, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(43, 33, 26, 0.1);
}
.review-card-large {
  grid-column: span 6;
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(232, 228, 217, 0.72));
}
.review-card-soft {
  grid-column: span 6;
  background:
    linear-gradient(145deg, rgba(247, 244, 236, 0.96), rgba(175, 151, 123, 0.18));
}
.review-card:not(.review-card-large) p {
  font-size: 27px;
}
.reviews-cta {
  background: var(--ivory);
}
.reviews-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.96), rgba(232, 228, 217, 0.76));
  box-shadow: var(--shadow);
}
.reviews-cta-card::after {
  position: absolute;
  inset: 24px 28px auto auto;
  width: min(270px, 28vw);
  height: min(270px, 28vw);
  content: "";
  border: 1px solid rgba(43, 33, 26, 0.08);
  border-radius: 50%;
}
.reviews-cta-card h2 {
  max-width: 780px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
}
.reviews-cta-card p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(43, 33, 26, 0.68);
}
.reviews-cta-card .button {
  margin-top: 18px;
}

blockquote { break-inside: avoid; margin: 0 0 16px; padding: 30px; }
blockquote p { font-family: var(--serif); font-size: 25px; line-height: 1.3; }

.cta-band {
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(220, 219, 208, 0.18));
  padding: clamp(30px, 6vw, 70px);
  box-shadow: var(--shadow);
}
.cta-band p { max-width: 650px; color: rgba(43, 33, 26, 0.68); }
.inquiry-studio {
  position: relative;
  overflow: hidden;
  padding: 138px 0 86px;
  background:
    radial-gradient(circle at 8% 18%, rgba(175, 151, 123, 0.14), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(220, 219, 208, 0.28), transparent 30%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.84));
}
.inquiry-studio::before {
  position: absolute;
  inset: 112px 40px 36px;
  content: "";
  border: 1px solid rgba(175, 151, 123, 0.2);
  pointer-events: none;
}
.inquiry-studio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.5fr) minmax(0, 0.78fr);
  gap: clamp(34px, 5.4vw, 76px);
  align-items: start;
}
.inquiry-studio-copy {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 24px;
  min-width: 0;
}
.inquiry-studio-copy h1 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(50px, 5.2vw, 82px);
  line-height: 0.94;
  text-wrap: balance;
}
.inquiry-studio-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
}
.inquiry-quick-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 340px;
  max-width: 340px;
  padding-top: 2px;
}
.inquiry-quick-list span {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.62);
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.inquiry-detail-image {
  position: relative;
  overflow: hidden;
  height: 330px;
  margin: 8px 0 0;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: 0 24px 70px rgba(43, 33, 26, 0.1);
}
.inquiry-detail-image::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(247, 244, 236, 0.6);
  pointer-events: none;
}
.inquiry-detail-image img {
  filter: saturate(0.92) contrast(1.02);
}
.inquiry-detail-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(247, 244, 236, 0.9);
  color: rgba(43, 33, 26, 0.72);
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}
.inquiry-studio .contact-panel {
  margin-top: 0;
  background: rgba(255, 253, 247, 0.74);
}
.inquiry-studio .inquiry-form {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(247, 244, 236, 0.9));
}
.inquiry-studio .form-intro h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.7vw, 54px);
}
.inquiry-studio .form-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.inquiry-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 90px;
  background:
    radial-gradient(circle at 84% 16%, rgba(175, 151, 123, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.82));
}
.inquiry-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: var(--gold-line);
}
.inquiry-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.56fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.inquiry-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.94;
  text-wrap: balance;
}
.inquiry-hero-copy,
.inquiry-hero-card {
  min-width: 0;
}
.inquiry-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(43, 33, 26, 0.7);
  font-size: 18px;
}
.inquiry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.inquiry-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(43, 33, 26, 0.12);
}
.inquiry-hero-card::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(247, 244, 236, 0.62);
  pointer-events: none;
}
.inquiry-hero-card img {
  filter: saturate(0.9) contrast(1.02);
}
.inquiry-hero-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  border: 1px solid rgba(175, 151, 123, 0.28);
  border-radius: 8px;
  padding: 20px;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(16px);
}
.inquiry-hero-card span,
.contact-panel span {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.inquiry-hero-card strong {
  display: block;
  margin: 4px 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}
.inquiry-hero-card p {
  margin: 0;
  color: rgba(43, 33, 26, 0.68);
  font-size: 14px;
}
.inquiry {
  background:
    radial-gradient(circle at 6% 8%, rgba(175, 151, 123, 0.14), transparent 28%),
    linear-gradient(180deg, var(--sand), var(--ivory));
}
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.inquiry-support {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}
.inquiry-support-card,
.inquiry-steps,
.contact-panel {
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(220, 219, 208, 0.2));
  box-shadow: 0 18px 60px rgba(43, 33, 26, 0.07);
}
.inquiry-support-card {
  padding: clamp(24px, 3vw, 34px);
}
.inquiry-support-card h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.02;
}
.inquiry-support-card p:not(.eyebrow) {
  color: rgba(43, 33, 26, 0.68);
}
.inquiry-steps {
  display: grid;
}
.inquiry-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--gold-line);
}
.inquiry-steps article:last-child {
  border-bottom: 0;
}
.inquiry-steps span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}
.inquiry-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
}
.inquiry-steps p {
  margin: 0;
  color: rgba(43, 33, 26, 0.64);
  font-size: 14px;
  line-height: 1.5;
}
.contact-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: var(--brown);
  font-size: 15px;
}
.contact-panel a {
  width: fit-content;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-panel p {
  margin: 0;
  color: rgba(43, 33, 26, 0.66);
}
.inquiry-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: clamp(22px, 4vw, 38px); border: 1px solid var(--gold-line); border-radius: 8px; background: var(--ivory); box-shadow: var(--shadow); }
.inquiry-form label { display: grid; gap: 8px; color: var(--brown); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.inquiry-form .full, .inquiry-form button, .form-status, .form-intro, .form-submit-row { grid-column: 1 / -1; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); padding: 14px 15px; outline: none; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--brown); }
.form-status { min-height: 22px; margin: 0; color: var(--brown); font-size: 14px; }
.inquiry-form-updated {
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(24px, 4vw, 44px);
}
.form-intro {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-line);
}
.form-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}
.form-intro p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(43, 33, 26, 0.68);
  font-size: 16px;
}
.form-section {
  display: grid;
  gap: 18px;
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gold-line);
}
.form-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.form-section-title span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}
.form-section-title h3 {
  margin: 0;
  font-size: 30px;
}
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.field-label,
.choice-field legend {
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-group label,
.multi-select-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}
.choice-group input,
.multi-select-options input {
  width: auto;
  accent-color: var(--gold-deep);
}
.multi-select {
  position: relative;
}
.multi-select summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  cursor: pointer;
  list-style: none;
}
.multi-select summary::-webkit-details-marker {
  display: none;
}
.multi-select summary::after {
  content: "+";
  color: var(--gold-deep);
  font-weight: 800;
}
.multi-select[open] summary::after {
  content: "-";
}
.multi-select-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 50px rgba(43, 33, 26, 0.08);
}
.form-submit-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-top: 4px;
}
.form-submit-row p {
  margin: 0;
  color: rgba(43, 33, 26, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer { padding: 48px 0; background: var(--charcoal); color: rgba(247, 244, 236, 0.78); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start; }
.site-footer .brand-logo-wrap { border-color: rgba(247, 244, 236, 0.2); }
.footer-grid p { margin: 10px 0 0; }
.footer-grid div:nth-child(2) { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ivory); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.footer-grid div:last-child { text-align: right; }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 16px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.footer-instagram-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  display: block;
  fill: none !important;
  stroke: currentColor;
}
.footer-social:hover {
  color: var(--ivory);
}

/* Gold theme polish */
.page-hero,
.portfolio-hero,
.services-hero,
.reviews-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(175, 151, 123, 0.22), transparent 30%),
    radial-gradient(circle at 8% 86%, rgba(220, 219, 208, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(247, 244, 236, 0.98), rgba(232, 228, 217, 0.78));
}
.page-hero,
.portfolio-hero,
.services-hero,
.reviews-hero,
.inquiry-hero,
.featured-work,
.portfolio-gallery-section,
.service-overview,
.reviews-section,
.inquiry {
  border-top: 1px solid rgba(175, 151, 123, 0.18);
}
.text-link {
  color: var(--gold-deep);
}
.text-link:hover {
  color: var(--ink);
}
.section-heading .eyebrow,
.portfolio-hero .eyebrow,
.services-hero .eyebrow,
.reviews-hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-deep);
}
.portfolio-hero-meta,
.services-hero-meta,
.review-rating,
.contact-panel {
  border-top-color: var(--gold-line);
}
.portfolio-hero-meta span,
.services-hero-meta span {
  color: var(--gold-deep);
}
.portfolio-hero-stack::before,
.services-hero-visual::before,
.services-hero-visual::after,
.featured-review-card::before,
.reviews-section::before,
.reviews-cta-card::after {
  border-color: var(--gold-line);
}
.portfolio-hero-stack img,
.service-visual-card,
.portfolio-card,
.review-card,
.featured-review-card,
.service-package-card,
.service-panel,
.services-detail-section .service-menu,
.inquiry-form,
.contact-panel,
.portfolio-filter-bar,
.reviews-cta-card {
  border-color: var(--gold-line);
  box-shadow:
    0 22px 70px rgba(43, 33, 26, 0.08),
    0 0 46px rgba(175, 151, 123, 0.08);
}
.portfolio-card figcaption,
.service-visual-card span {
  border: 1px solid rgba(175, 151, 123, 0.2);
  background: rgba(247, 244, 236, 0.9);
}
.portfolio-card figcaption span,
.service-package-body span,
.review-rating span,
.contact-panel a,
.service-panel li::before,
.quote-mark {
  color: var(--gold-deep);
}
.portfolio-filter-bar .filter-button.active,
.filter-button.active,
.services-detail-section .service-menu a:hover {
  border-color: var(--gold-line);
  background: linear-gradient(135deg, #3a2f24, #211a15 64%, #6b5643);
  color: var(--ivory);
}
.service-package-card,
.review-card-large,
.review-card-soft,
.featured-review-card,
.inquiry-form {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(220, 219, 208, 0.15));
}
.accordion-trigger {
  border-top-color: var(--gold-line);
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border-color: rgba(175, 151, 123, 0.28);
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(175, 151, 123, 0.12);
}
.site-footer {
  border-top: 1px solid rgba(220, 219, 208, 0.22);
  background:
    radial-gradient(circle at 12% 0%, rgba(175, 151, 123, 0.12), transparent 28%),
    var(--charcoal);
}
.site-footer .brand-logo-wrap {
  border-color: rgba(175, 151, 123, 0.58);
}
.footer-grid div:nth-child(2) a:hover {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .section-pad { padding: 78px 0; }
  .nav-toggle { display: block; }
  .primary-nav,
  .page-header .primary-nav,
  .site-header.scrolled .primary-nav,
  .site-header.menu-open .primary-nav {
    position: fixed;
    inset: 80px 20px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--gold-line);
    border-radius: 12px;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }
  .site-header .primary-nav.open,
  .site-header.menu-open .primary-nav.open,
  .site-header.scrolled .primary-nav.open,
  .page-header .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a {
    min-height: 44px;
    justify-content: center;
    padding: 12px 14px;
  }
  .page-hero-grid, .split-intro, .about-grid, .experience-grid, .inquiry-grid, .timeline, .service-detail-grid, .seo-feature-grid, .about-faq-grid { grid-template-columns: 1fr; }
  .about-story-grid,
  .about-philosophy-grid {
    grid-template-columns: 1fr;
  }
  .about-philosophy-copy {
    border-left: 0;
    border-top: 1px solid var(--gold-line);
    padding: 24px 0 0;
  }
  .instagram-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .instagram-heading .button {
    width: fit-content;
  }
  .instagram-live-card {
    grid-template-columns: 1fr;
  }
  .instagram-feed {
    grid-template-columns: repeat(6, 1fr);
  }
  .instagram-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-card,
  .instagram-card-large,
  .instagram-card-note {
    grid-column: span 3;
  }
  .instagram-post-grid .instagram-card {
    grid-column: auto;
  }
  .instagram-card-large {
    grid-row: span 2;
  }
  .portfolio-hero-grid,
  .portfolio-section-heading,
  .services-hero-grid,
  .inquiry-hero-grid,
  .inquiry-layout,
  .inquiry-studio-grid,
  .reviews-hero-grid,
  .review-trust-grid,
  .reviews-section-heading {
    grid-template-columns: 1fr;
  }
  .inquiry-studio-copy {
    position: static;
  }
  .inquiry-detail-image {
    max-width: 620px;
  }
  .inquiry-support {
    position: static;
  }
  .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-review-card {
    max-width: 680px;
  }
  .review-card,
  .review-card-large,
  .review-card-soft {
    grid-column: span 6;
  }
  .portfolio-hero-stack {
    min-height: 460px;
  }
  .portfolio-hero-stack img:nth-child(1) {
    inset: 40px auto 0 0;
    width: 62%;
    height: 380px;
  }
  .portfolio-hero-stack img:nth-child(2) {
    width: 45%;
    height: 280px;
  }
  .portfolio-hero-stack img:nth-child(3) {
    width: 50%;
    height: 230px;
  }
  .portfolio-masonry {
    column-count: 3;
    column-gap: 14px;
  }
  .portfolio-card,
  .portfolio-card.feature-card,
  .portfolio-card.tall-card {
    margin: 0 0 14px;
  }
  .portfolio-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-hero-visual {
    width: min(640px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }
  .services-hero-visual::before {
    inset: 28px 8px 60px 86px;
  }
  .service-visual-main {
    inset: 0 26px auto auto;
    width: 68%;
    height: 420px;
  }
  .service-visual-secondary {
    inset: auto auto 0 0;
    width: 46%;
    height: 260px;
  }
  .services-hero-note {
    right: 0;
    bottom: 48px;
  }
  .services-detail-section .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "copy"
      "portrait"
      "panel";
    width: min(100% - 40px, 760px);
  }
  .about-hero-portrait {
    width: min(440px, 100%);
    height: 560px;
    border-radius: 8px;
  }
  .about-hero-portrait::before { border-radius: 4px; }
  .about-hero-panel {
    width: min(520px, 100%);
    grid-template-columns: 1fr;
  }
  .about-hero-panel dl { grid-template-columns: 1fr; }
  .intro-with-portrait {
    width: min(100% - 40px, 720px);
    grid-template-columns: 1fr;
  }
  .dwija-portrait {
    width: min(420px, 100%);
    min-height: 540px;
  }
  .hero-frame { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; margin: 10px 0 0; }
  .scroll-cue { display: none; }
  .service-strip, .gallery { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .editorial-card, .editorial-card.tall { min-height: 420px; grid-row: auto; }
  .service-menu { position: static; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid div:last-child { text-align: left; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(1120px, calc(100% - 28px)); }
  .site-header { padding: 14px; }
  .brand-logo-wrap {
    width: 46px;
    height: 46px;
  }
  .brand-name { max-width: 132px; line-height: 1.2; }
  .section-pad { padding: 58px 0; }
  .hero {
    min-height: auto;
    padding: 96px 16px 28px;
  }
  .hero::before { inset: 82px 12px 16px; }
  .hero-frame { gap: 22px; }
  .hero .hero-kicker {
    max-width: 300px;
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.4;
  }
  .hero .hero-content h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: clamp(46px, 15vw, 56px);
    line-height: 0.9;
  }
  .hero-content p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-meta {
    gap: 8px;
    margin-top: 18px;
  }
  .hero-card { display: none; }
  .hero-marquee {
    width: 100%;
    margin-top: 24px;
  }
  .hero-marquee div {
    gap: 22px;
    padding: 9px 0;
  }
  .hero-marquee span {
    font-size: 10px;
  }
  .hero-meta span {
    width: auto;
    font-size: 10px;
    line-height: 1.35;
  }
  .hero-note {
    gap: 8px;
    margin-top: 16px;
  }
  .hero-note span {
    padding: 7px 10px;
    font-size: 11px;
  }
  .dwija-portrait {
    width: 100%;
    min-height: 420px;
  }
  .page-hero { padding: 112px 0 50px; }
  .portfolio-hero { padding: 112px 0 52px; }
  .services-hero { padding: 112px 0 52px; }
  .inquiry-studio { padding: 108px 0 58px; }
  .inquiry-studio::before { display: none; }
  .inquiry-hero { padding: 112px 0 52px; }
  .reviews-hero { padding: 112px 0 52px; }
  .inquiry-studio-copy {
    gap: 18px;
  }
  .inquiry-studio-copy h1 {
    max-width: 340px;
    font-size: 42px;
    line-height: 0.96;
  }
  .inquiry-studio-copy > p:not(.eyebrow) {
    max-width: 340px;
    font-size: 16px;
  }
  .inquiry-quick-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 320px;
    max-width: 100%;
  }
  .inquiry-quick-list span {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    text-align: center;
  }
  .inquiry-detail-image {
    height: 290px;
    margin-top: 0;
  }
  .inquiry-hero-copy h1 {
    max-width: 340px;
    font-size: 44px;
    line-height: 0.96;
  }
  .inquiry-hero-copy p:not(.eyebrow) {
    max-width: 340px;
    font-size: 16px;
  }
  .inquiry-hero-card {
    min-height: 390px;
  }
  .form-submit-row {
    grid-template-columns: 1fr;
  }
  .form-submit-row .button {
    justify-content: center;
    width: 100%;
  }
  .services-hero-copy h1 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.02;
  }
  .services-hero-copy p {
    max-width: 330px;
  }
  .portfolio-hero-copy h1,
  .reviews-hero-copy h1 {
    font-size: 36px;
    line-height: 1.02;
  }
  .portfolio-section-heading {
    gap: 18px;
    margin-bottom: 24px;
  }
  .portfolio-section-heading h2 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.02;
  }
  .portfolio-hero-copy p,
  .services-hero-copy p,
  .reviews-hero-copy p {
    max-width: 330px;
    font-size: 16px;
  }
  .portfolio-hero-actions .button,
  .services-hero-actions .button,
  .reviews-hero-actions .button {
    width: auto;
  }
  .portfolio-hero-stack { min-height: 320px; }
  .portfolio-hero-stack img:nth-child(1) {
    inset: 38px auto 0 0;
    width: 64%;
    height: 292px;
  }
  .portfolio-hero-stack img:nth-child(2) {
    width: 47%;
    height: 206px;
  }
  .portfolio-hero-stack img:nth-child(3) {
    width: 50%;
    height: 178px;
  }
  .portfolio-filter-bar {
    position: static;
    width: 100%;
    border-radius: 8px;
  }
  .portfolio-filter-bar .filter-button {
    flex: 1 1 auto;
  }
  /* Category cards — tight 2x2 on phone */
  .portfolio-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px !important;
  }
  .portfolio-category-card {
    min-height: 140px;
    padding: 14px 16px !important;
  }
  .portfolio-category-card::after {
    width: 90px !important;
    height: 90px !important;
    right: -28px;
    bottom: -34px;
  }
  .portfolio-category-card span {
    margin-bottom: 10px;
    font-size: 22px !important;
  }
  .portfolio-category-card strong {
    max-width: none;
    font-size: 17px !important;
    line-height: 1.05;
  }
  .portfolio-category-card p {
    max-width: none;
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .instagram-heading .button {
    width: auto;
  }
  .instagram-profile-image {
    width: min(190px, 100%);
  }
  .instagram-live-copy h3 {
    font-size: 34px;
  }
  .instagram-feed {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  /* Instagram grid — compact 2x2 on phone, fits in one view */
  .instagram-section { padding: 50px 0 !important; }
  .instagram-section .instagram-heading {
    margin-bottom: 18px !important;
    gap: 12px !important;
  }
  .instagram-section .instagram-heading h2 {
    font-size: 26px !important;
    line-height: 1.05;
    max-width: 100%;
  }
  .instagram-section .instagram-heading .button {
    font-size: 11px;
    padding: 10px 16px;
  }
  .instagram-post-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: unset !important;
    gap: 8px !important;
  }
  .instagram-post-grid .instagram-card {
    grid-column: auto !important;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
  }
  .instagram-card,
  .instagram-card-large,
  .instagram-card-note {
    grid-column: auto;
    grid-row: auto;
  }
  .instagram-card-note {
    min-height: 220px;
  }
  /* Portfolio gallery — clean uniform 2-column phone grid */
  .portfolio-gallery-section { padding: 50px 0 !important; }
  .portfolio-section-heading {
    grid-template-columns: 1fr !important;
    margin-bottom: 16px !important;
    gap: 10px !important;
  }
  .portfolio-section-heading h2 {
    max-width: 100% !important;
    font-size: 26px !important;
    line-height: 1.05;
  }
  .portfolio-section-heading > p { font-size: 13.5px !important; line-height: 1.5; }
  .portfolio-filter-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 6px !important;
    padding: 5px !important;
    margin-bottom: 14px;
    border-radius: 999px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-filter-bar::-webkit-scrollbar { display: none; }
  .portfolio-filter-bar .filter-button {
    flex: 0 0 auto !important;
    padding: 7px 12px !important;
    font-size: 10.5px !important;
    white-space: nowrap;
  }
  /* Phone masonry — CSS columns, 2 columns, natural aspect ratios */
  .portfolio-masonry {
    column-count: 2 !important;
    column-gap: 8px !important;
    margin-top: 12px !important;
  }
  .portfolio-card,
  .portfolio-card.tall-card,
  .portfolio-card.feature-card {
    width: 100% !important;
    margin: 0 0 8px !important;
    aspect-ratio: auto !important;
    border-radius: 6px !important;
  }
  .portfolio-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .portfolio-card figcaption {
    inset: auto 6px 6px !important;
    padding: 6px 10px !important;
    gap: 1px !important;
    border-radius: 4px !important;
  }
  .portfolio-card figcaption span { font-size: 8.5px !important; letter-spacing: 0.06em; line-height: 1.3; }
  .portfolio-card figcaption strong {
    font-size: 12px !important;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-card,
  .review-card-large,
  .review-card-soft {
    grid-column: auto;
    min-height: auto;
  }
  .review-card:not(.review-card-large) p,
  .review-card p {
    font-size: 22px;
  }
  .review-trust-grid article {
    min-height: auto;
  }
  .review-trust-grid span {
    margin-bottom: 34px;
  }
  .services-hero-visual { min-height: 420px; }
  .services-hero-visual::before {
    inset: 24px 0 72px 54px;
  }
  .services-hero-visual::after {
    inset: 74px 22px 124px 16px;
    border-radius: 8px 8px 90px 8px;
  }
  .service-visual-card {
    border-width: 6px;
  }
  .service-visual-main {
    inset: 0 0 auto auto;
    width: 78%;
    height: 280px;
  }
  .service-visual-secondary {
    inset: 216px auto auto 0;
    width: 52%;
    height: 170px;
  }
  .services-hero-note {
    right: 0;
    bottom: 0;
    width: min(292px, 74%);
    padding: 14px;
  }
  .services-hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-hero-meta span {
    min-height: 46px;
    border-bottom: 1px solid var(--line);
  }
  .services-hero-meta span:nth-child(2n) {
    border-right: 0;
  }
  .services-hero-meta span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .services-hero-meta span:nth-child(odd) {
    padding-left: 0;
  }
  .services-hero-meta span:nth-child(even) {
    padding-left: 14px;
  }
  .service-overview-grid {
    grid-template-columns: 1fr;
  }
  .service-package-card {
    min-height: auto;
  }
  .service-package-card figure {
    height: 255px;
  }
  .service-package-body {
    min-height: auto;
    padding: 20px;
  }
  .service-package-body span {
    margin-bottom: 12px;
  }
  .party-pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-panel::after {
    width: 76px;
    height: 76px;
  }
  .service-price {
    border-radius: 8px;
    line-height: 1.3;
  }
  .page-hero h1 { font-size: 38px; }
  .about-hero { padding: 106px 0 52px; }
  .about-hero::before { display: none; }
  .about-hero-copy h1 {
    font-size: 40px;
    line-height: 0.96;
  }
  .about-hero-portrait {
    height: 440px;
    border-width: 6px;
  }
  .about-hero-actions .button { width: auto; }
  .about-hero-panel {
    gap: 16px;
    padding: 18px;
  }
  .about-hero-panel dl {
    gap: 12px;
  }
  .about-story-media figure {
    height: 420px;
    min-height: 420px;
    border-width: 6px;
  }
  .about-story-copy p,
  .about-philosophy-copy p {
    font-size: 16px;
  }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 28px; }
  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }
  .button {
    min-height: 44px;
    width: auto;
    padding: 11px 16px;
    font-size: 12px;
  }
  .hero-actions .button {
    flex: 1 1 140px;
    justify-content: center;
  }
  .service-strip, .gallery, .stats, .inquiry-form, .service-menu { grid-template-columns: 1fr; }
  .form-section {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .form-section-title h3 {
    font-size: 26px;
  }
  .form-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .choice-group,
  .multi-select-options {
    gap: 8px;
  }
  .choice-group label,
  .multi-select-options label {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 11px;
  }
  .strip-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 24px; }

  /* Featured editorial grid — compact portrait layout for phone */
  .featured-work { padding: 50px 0 !important; }
  .featured-work .editorial-grid,
  .editorial-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    grid-template-rows: 1fr 1fr !important;
    grid-auto-rows: unset !important;
    gap: 10px !important;
    margin-top: 0 !important;
    height: 360px;
  }
  .editorial-card,
  .editorial-card.tall {
    min-height: 0 !important;
    grid-row: auto;
  }
  .editorial-card.tall {
    grid-row: span 2 !important;
  }
  .editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .editorial-card span,
  .gallery figcaption {
    inset: auto 8px 8px !important;
    padding: 7px 12px !important;
    font-size: 10px !important;
    letter-spacing: 0.06em;
  }

  .image-pair { grid-template-columns: 1fr; }
  .image-pair img:last-child { margin-top: 0; }
  .gallery figure, .gallery-expanded figure:nth-child(3n + 1) { min-height: 320px; }
  .timeline-list article,
  .service-panel,
  blockquote,
  .review-card,
  .featured-review-card,
  .reviews-cta-card,
  .inquiry-form {
    padding: 24px;
  }
  .process li { grid-template-columns: 1fr; gap: 6px; }
  .inquiry-form .full, .inquiry-form button, .form-status { grid-column: auto; }
}

/* ==========================================================================
   ELEVATED DESIGN SYSTEM & UI/UX INTERACTION STYLES
   ========================================================================== */

/* 1. Scroll-Driven Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* 2. Interactive Bridal Package Customizer */
.package-customizer {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.customizer-title-wrap {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.customizer-title-wrap h3 {
  font-size: 32px;
  margin-bottom: 8px;
}
.customizer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.customizer-controls {
  display: grid;
  gap: 28px;
}
.customizer-group {
  border: none;
  padding: 0;
  margin: 0;
}
.customizer-group-title {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.customizer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.customizer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--ivory);
  cursor: pointer;
  transition: all 220ms ease;
  user-select: none;
}
.customizer-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.customizer-card input[type="radio"],
.customizer-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.customizer-card .card-indicator {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}
.customizer-card input[type="checkbox"] + .card-indicator {
  border-radius: 4px;
}
.customizer-card input:checked + .card-indicator {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.customizer-card input:checked + .card-indicator::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
}
.customizer-card input[type="checkbox"]:checked + .card-indicator::after {
  width: 4px;
  height: 8px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  border-radius: 0;
}
.customizer-card.checked {
  border-color: var(--gold-deep);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(107, 86, 67, 0.08);
}
.customizer-card strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.customizer-card span {
  font-size: 12px;
  color: rgba(43, 33, 26, 0.65);
}
.customizer-card .card-price {
  margin-top: auto;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 13px;
  padding-top: 10px;
}
.counter-widget {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  max-width: 160px;
  background: var(--paper);
}
.counter-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: background 180ms;
}
.counter-btn:hover {
  background: var(--ivory);
}
.counter-val {
  flex: 1;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
.customizer-summary-card {
  position: sticky;
  top: 120px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  padding: 30px;
  background: linear-gradient(145deg, var(--paper), var(--ivory));
  box-shadow: var(--shadow);
}
.summary-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.summary-header h4 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 6px 0;
}
.summary-items {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(43, 33, 26, 0.8);
}
.summary-item span:first-child {
  opacity: 0.85;
}
.summary-item span:last-child {
  font-weight: 700;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 28px;
}
.summary-total span {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.summary-total strong {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold-deep);
}
.summary-action {
  width: 100%;
  text-align: center;
}

/* 3. Interactive FAQ Accordion */
.faq-section {
  background: var(--sand);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.faq-accordion {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  transition: all 300ms ease;
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 22px 28px;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.faq-trigger h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 300ms ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 300ms ease;
}
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1), padding 300ms ease;
  padding: 0 28px;
  color: rgba(43, 33, 26, 0.75);
  font-size: 15px;
}
.faq-item.open {
  border-color: var(--gold-line);
  box-shadow: 0 10px 30px rgba(107, 86, 67, 0.05);
}
.faq-item.open .faq-icon {
  transform: rotate(135deg);
}
.faq-item.open .faq-panel {
  padding-bottom: 22px;
}

/* 4. Multi-Step Form Layout & Indicators */
.form-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
.form-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
  z-index: 1;
}
.form-progress-bar {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-deep);
  z-index: 2;
  transition: width 400ms ease;
}
.form-step-dot {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.form-step-dot span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: rgba(43, 33, 26, 0.5);
  transition: all 300ms ease;
}
.form-step-dot label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(43, 33, 26, 0.5);
  letter-spacing: 0.5px;
  transition: color 300ms ease;
  cursor: pointer;
}
.form-step-dot.active span {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(175, 151, 123, 0.18);
}
.form-step-dot.active label {
  color: var(--gold-deep);
}
.form-step-dot.completed span {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
  color: var(--paper);
}
.form-step-dot.completed label {
  color: var(--ink);
}
.inquiry-form-updated .form-section {
  display: none;
  animation: stepFadeIn 450ms ease both;
}
.inquiry-form-updated .form-section.active {
  display: grid;
}
.form-nav-buttons {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 5. Custom Select and Checkbox Styles */
.custom-select-box {
  position: relative;
  width: 100%;
}
.custom-select-btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-select-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}
.custom-select-box.open .custom-select-btn::after {
  transform: rotate(-135deg) translateY(2px);
}
.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  display: none;
}
.custom-select-box.open .custom-select-dropdown {
  display: block;
}
.custom-select-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 180ms;
}
.custom-select-option:hover {
  background: var(--ivory);
}
.custom-select-option.selected {
  background: var(--sand);
  font-weight: 700;
}

/* 6. Testimonial Slider / Carousel Styles */
.testimonials-slider-section {
  position: relative;
  overflow: hidden;
}
.testimonials-slider {
  display: flex;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testimonial-slide-wrap {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 12px;
}
.testimonial-card-premium {
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  padding: clamp(30px, 6vw, 60px);
  background: linear-gradient(135deg, var(--paper), var(--ivory));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  justify-content: space-between;
  position: relative;
}
.testimonial-card-premium::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--line);
  opacity: 0.3;
}
.testimonial-body {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--gold-line);
}
.testimonial-author-info cite {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  display: block;
}
.testimonial-author-info span {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(43, 33, 26, 0.6);
  font-weight: 800;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 14px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 220ms ease;
  color: var(--ink);
}
.slider-arrow:hover {
  background: var(--gold-deep);
  color: var(--paper);
  border-color: var(--gold-deep);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 220ms ease;
}
.slider-dot.active {
  background: var(--gold-deep);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .customizer-grid {
    grid-template-columns: 1fr;
  }
  .customizer-summary-card {
    position: static;
    margin-top: 30px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Unified option, strip, and pill styling */
.hero-meta,
.services-hero-meta,
.portfolio-filter-bar,
.services-detail-section .service-menu,
.inquiry-quick-list,
.review-rating,
.testimonial-meta-row,
.choice-group,
.multi-select-options {
  --option-border: rgba(175, 151, 123, 0.34);
  --option-text: var(--gold-deep);
}

.hero-meta {
  gap: 8px;
  padding-top: 0;
}

.hero-meta span,
.services-hero-meta span,
.review-rating span,
.testimonial-meta-row span,
.inquiry-quick-list span,
.choice-group label,
.multi-select-options label {
  border: 1px solid var(--option-border);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.78), rgba(220, 219, 208, 0.18));
  color: var(--option-text);
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.72);
}

.hero-meta span {
  border-left: 1px solid var(--option-border);
  padding: 8px 12px;
  color: rgba(247, 244, 236, 0.86);
  background:
    linear-gradient(135deg, rgba(175, 151, 123, 0.18), rgba(247, 244, 236, 0.06));
}

.hero-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(175, 151, 123, 0.24);
  border-bottom: 1px solid rgba(175, 151, 123, 0.18);
  background: rgba(28, 24, 21, 0.2);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.hero-marquee div {
  min-width: max-content;
}

.hero-marquee span {
  color: rgba(247, 244, 236, 0.72);
}

.services-hero-meta {
  gap: 10px;
  border-top-color: var(--gold-line);
}

.services-hero-meta span {
  min-height: 42px;
  justify-content: center;
  border-right: 1px solid var(--option-border);
  padding: 8px 12px;
  text-align: center;
}

.services-hero-meta span:not(:first-child) {
  padding-left: 12px;
}

.portfolio-category-card,
.service-package-card,
.reviews-cta-card,
.inquiry-support-card,
.inquiry-steps,
.contact-panel,
.inquiry-form {
  border-radius: 8px;
}

.portfolio-category-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(175, 151, 123, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.97), rgba(220, 219, 208, 0.34));
}

.portfolio-category-card.active {
  background:
    radial-gradient(circle at 92% 12%, rgba(175, 151, 123, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(175, 151, 123, 0.18));
}

.filter-button,
.services-detail-section .service-menu a,
.custom-select-option {
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.services-detail-section .service-menu a:hover,
.custom-select-option:hover {
  border-color: rgba(175, 151, 123, 0.58);
  background: rgba(220, 219, 208, 0.38);
  color: var(--ink);
}

.portfolio-filter-bar .filter-button.active,
.filter-button.active,
.services-detail-section .service-menu a:hover {
  background:
    linear-gradient(135deg, #3a2f24, #211a15 62%, #6b5643);
  color: var(--ivory);
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 8px;
  background: rgba(247, 244, 236, 0.82);
  box-shadow: 0 18px 54px rgba(84, 62, 39, 0.07);
}

.form-steps::before,
.form-progress-bar {
  display: none;
}

.inquiry-form .form-step-dot {
  grid-column: auto;
}

.form-step-dot {
  min-height: 58px;
  flex-direction: row;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  padding: 8px 10px;
}

.form-step-dot span {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid var(--gold-line);
  background: rgba(255, 253, 247, 0.84);
}

.form-step-dot label {
  margin-top: 0;
  letter-spacing: 0;
}

.form-step-dot.active {
  border-color: var(--gold-line);
  background: var(--charcoal);
  box-shadow: 0 14px 34px rgba(43, 33, 26, 0.14);
}

.form-step-dot.active span {
  border-color: rgba(247, 244, 236, 0.46);
  background: rgba(247, 244, 236, 0.12);
  color: var(--ivory);
  box-shadow: none;
}

.form-step-dot.active label {
  color: var(--ivory);
}

.form-step-dot.completed {
  border-color: rgba(175, 151, 123, 0.28);
  background: rgba(220, 219, 208, 0.26);
}

.form-step-dot.completed span {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
}

.custom-select-btn,
.multi-select summary,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border-color: rgba(175, 151, 123, 0.3);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
}

.custom-select-box.open .custom-select-btn,
.multi-select[open] summary,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(175, 151, 123, 0.74);
  box-shadow: 0 0 0 3px rgba(175, 151, 123, 0.12);
}

@media (max-width: 640px) {
  .services-hero-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .services-hero-meta span,
  .services-hero-meta span:nth-child(odd),
  .services-hero-meta span:nth-child(even) {
    min-height: 42px;
    border-right: 1px solid var(--option-border);
    border-bottom: 1px solid var(--option-border);
    padding-left: 12px;
  }

  .services-hero-visual,
  .portfolio-hero-stack {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    overflow: hidden;
  }

  .services-hero-note {
    right: 12px;
    left: 70px;
    width: auto;
  }

  .portfolio-hero-stack img:nth-child(2) {
    right: 0;
  }

  .portfolio-hero-stack img:nth-child(3) {
    right: 6px;
  }

  .form-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-step-dot {
    min-height: 52px;
  }

  .hero-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   ABOUT HERO v2 — editorial magazine treatment
   ========================================================================== */
.about-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 88% 18%, rgba(175, 151, 123, 0.22), transparent 32%),
    radial-gradient(circle at 6% 78%, rgba(220, 219, 208, 0.32), transparent 30%),
    linear-gradient(120deg, var(--paper), var(--sand) 96%);
  border-bottom: 1px solid var(--gold-line);
}
.about-hero-v2::before,
.about-hero-v2::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.about-hero-v2::before {
  inset: 118px clamp(28px, 4vw, 64px) 60px;
  border: 1px solid rgba(175, 151, 123, 0.22);
  border-radius: 2px;
}
.about-hero-v2::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}
.about-hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(175, 151, 123, 0.18), transparent 70%),
    radial-gradient(50% 40% at 16% 80%, rgba(175, 151, 123, 0.12), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  animation: aboutAurora 16s ease-in-out infinite alternate;
}
@keyframes aboutAurora {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-12px, 8px, 0) scale(1.06); }
}

.about-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
}

/* Magazine top strip */
.about-hero-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(40px, 5vw, 72px);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-hero-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.4));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.about-hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  min-width: 24px;
}
.about-hero-rule:last-of-type {
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.about-hero-stamp { color: var(--brown); font-family: var(--sans); }
.about-hero-year { color: rgba(43, 33, 26, 0.7); font-family: var(--sans); }

/* Main grid */
.about-hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-hero-copy-v2 { min-width: 0; }
.about-hero-eyebrow {
  margin-bottom: 22px;
  color: var(--gold-deep);
}
.about-hero-headline {
  max-width: 600px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.about-hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.about-hero-lede {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
  line-height: 1.65;
}
.about-hero-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 40px;
}

/* Signature block */
.about-hero-signature {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 4px 18px;
  padding-top: 22px;
  border-top: 1px solid var(--gold-line);
  max-width: 420px;
}
.about-hero-sig-line {
  display: none;
}
.about-hero-sig-script {
  grid-column: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  color: var(--gold-deep);
  transform: rotate(-3deg);
  transform-origin: left center;
}
.about-hero-sig-role {
  grid-column: 2;
  align-self: end;
  padding-bottom: 6px;
  color: rgba(43, 33, 26, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Portrait */
.about-hero-portrait-v2 {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.about-hero-portrait-tag {
  position: absolute;
  top: -14px;
  right: 22px;
  z-index: 3;
  padding: 8px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(107, 86, 67, 0.14);
}
.about-hero-portrait-frame {
  position: relative;
  height: clamp(520px, 58vw, 660px);
  overflow: hidden;
  border-radius: 360px 360px 8px 8px;
  border: 1px solid var(--gold-line);
  background: var(--paper);
  box-shadow:
    0 40px 90px rgba(43, 33, 26, 0.18),
    0 0 0 8px rgba(255, 253, 247, 0.78),
    0 0 0 9px var(--gold-line);
}
.about-hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(247, 244, 236, 0.62);
  border-radius: 340px 340px 4px 4px;
  pointer-events: none;
  z-index: 2;
}
.about-hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28, 24, 21, 0.18));
  pointer-events: none;
  z-index: 1;
}
.about-hero-portrait-frame img {
  height: 100%;
  object-position: center 12%;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.about-hero-portrait-v2:hover .about-hero-portrait-frame img {
  transform: scale(1.06);
}
.about-hero-portrait-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 14px 26px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px rgba(43, 33, 26, 0.18);
  transform: translateX(-50%);
  text-align: center;
}
.about-hero-portrait-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.about-hero-portrait-meta {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Inset detail image */
.about-hero-portrait-inset {
  position: absolute;
  left: -40px;
  bottom: 50px;
  z-index: 4;
  width: 132px;
  height: 168px;
  overflow: hidden;
  border-radius: 4px;
  border: 6px solid rgba(255, 253, 247, 0.92);
  background: var(--paper);
  box-shadow: 0 22px 50px rgba(43, 33, 26, 0.22);
  transform: rotate(-4deg);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.about-hero-portrait-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.95) contrast(1.02);
}
.about-hero-portrait-v2:hover .about-hero-portrait-inset {
  transform: rotate(-2deg) translateY(-4px);
}

/* Credentials band */
.about-hero-credentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  margin: clamp(60px, 7vw, 96px) 0 0;
  padding: 28px clamp(20px, 3vw, 36px);
  list-style: none;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.28));
  box-shadow:
    0 26px 70px rgba(43, 33, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.62);
}
.about-hero-credentials li {
  display: grid;
  gap: 6px;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--gold-line);
}
.about-hero-credentials li:first-child {
  padding-left: 0;
  border-left: 0;
}
.about-hero-cred-num {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  color: var(--gold-deep);
}
.about-hero-cred-label {
  color: rgba(43, 33, 26, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .about-hero-v2 { padding: 116px 0 68px; }
  .about-hero-v2::before { inset: 100px clamp(20px, 4vw, 40px) 44px; }
  .about-hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-hero-portrait-v2 {
    max-width: 460px;
    margin: 0 auto;
  }
  .about-hero-portrait-frame { height: 560px; }
  .about-hero-credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .about-hero-credentials li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .about-hero-credentials li:nth-child(2) {
    padding-left: clamp(16px, 4vw, 24px);
  }
  .about-hero-topline { flex-wrap: wrap; }
  .about-hero-stamp,
  .about-hero-year { font-size: 10px; }
}

@media (max-width: 640px) {
  .about-hero-v2 { padding: 104px 0 56px; }
  .about-hero-v2::before { display: none; }
  .about-hero-topline {
    gap: 10px;
    margin-bottom: 32px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .about-hero-mark { width: 34px; height: 34px; font-size: 14px; }
  .about-hero-rule:not(:first-of-type) { display: none; }
  .about-hero-stamp { flex: 1; }
  .about-hero-year { width: 100%; text-align: left; padding-left: 0; }
  .about-hero-headline { font-size: clamp(40px, 11vw, 56px); }
  .about-hero-lede { font-size: 16px; }
  .about-hero-actions-v2 { gap: 16px; margin-bottom: 32px; }
  .about-hero-actions-v2 .button { width: 100%; justify-content: center; }
  .about-hero-signature { grid-template-columns: 1fr; }
  .about-hero-sig-script { font-size: 36px; }
  .about-hero-sig-role { padding-bottom: 0; }
  .about-hero-portrait-frame { height: 480px; border-radius: 260px 260px 8px 8px; }
  .about-hero-portrait-inset {
    width: 88px;
    height: 116px;
    left: auto;
    right: -10px;
    bottom: auto;
    top: 24px;
    transform: rotate(4deg);
  }
  .about-hero-portrait-v2:hover .about-hero-portrait-inset {
    transform: rotate(2deg) translateY(-4px);
  }
  .about-hero-portrait-tag {
    right: 12px;
    padding: 6px 12px;
    font-size: 9px;
  }
  .about-hero-portrait-caption {
    bottom: 16px;
    padding: 12px 20px;
  }
  .about-hero-portrait-name { font-size: 22px; }
  .about-hero-credentials {
    grid-template-columns: 1fr;
    padding: 22px 24px;
    gap: 18px;
  }
  .about-hero-credentials li {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--gold-line);
  }
  .about-hero-credentials li:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .about-hero-credentials li:nth-child(2) {
    padding-left: 0;
  }
}

/* ==========================================================================
   SHARED — Editorial section heading & framing
   Used inside service / review / inquiry sections beyond the hero
   ========================================================================== */
.editorial-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.editorial-section-head--center {
  justify-items: center;
  text-align: center;
}
.editorial-section-head--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
}
.editorial-chapter-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.editorial-chapter-num {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.editorial-chapter-rule {
  display: inline-block;
  width: clamp(24px, 4vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}
.editorial-section-head--center .editorial-chapter-strip {
  justify-content: center;
}
.editorial-headline {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.editorial-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.editorial-lede {
  margin: 0;
  max-width: 540px;
  color: rgba(43, 33, 26, 0.7);
  font-size: 17px;
  line-height: 1.65;
}
.editorial-section-head--center .editorial-headline,
.editorial-section-head--center .editorial-lede {
  margin-left: auto;
  margin-right: auto;
}

/* Section with hairline + soft band */
.editorial-pad-section {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0;
}
.editorial-pad-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}

/* Editorial CTA card */
.editorial-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 12%, rgba(175, 151, 123, 0.18), transparent 32%),
    linear-gradient(135deg, var(--paper), var(--ivory));
  box-shadow:
    0 36px 80px rgba(43, 33, 26, 0.12),
    0 0 0 8px rgba(255, 253, 247, 0.74),
    0 0 0 9px var(--gold-line);
}
.editorial-cta-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(220, 219, 208, 0.5);
  border-radius: 6px;
  pointer-events: none;
}
.editorial-cta-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(175, 151, 123, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.editorial-cta-card > * {
  position: relative;
  z-index: 1;
}
.editorial-cta-card .editorial-section-head {
  margin-bottom: 24px;
}
.editorial-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .editorial-section-head--split { grid-template-columns: 1fr; align-items: start; }
}

/* ==========================================================================
   SERVICES OVERVIEW — refined package cards v2 (3-on-top / 2-wide-below grid)
   ========================================================================== */
.service-overview {
  background:
    radial-gradient(circle at 6% 8%, rgba(175, 151, 123, 0.12), transparent 30%),
    linear-gradient(180deg, var(--ivory), #eee9dd);
}
.service-overview-grid-v2 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}
.service-overview-grid-v2 .service-package-card-v2 {
  grid-column: span 2;
}
.service-overview-grid-v2 .service-pkg-wide {
  grid-column: span 3;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto;
}
.service-overview-grid-v2 .service-pkg-wide .service-pkg-figure {
  height: 100%;
  min-height: 320px;
}

.service-package-card-v2 {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.98), rgba(220, 219, 208, 0.18));
  color: var(--ink);
  text-decoration: none;
  box-shadow:
    0 24px 60px rgba(43, 33, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.6);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 380ms ease,
              border-color 380ms ease;
}
.service-package-card-v2::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(220, 219, 208, 0.46);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}
.service-package-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(175, 151, 123, 0.62);
  box-shadow:
    0 36px 88px rgba(43, 33, 26, 0.14),
    0 0 0 1px rgba(175, 151, 123, 0.42);
}
.service-package-card-v2:hover .service-pkg-figure img {
  transform: scale(1.05);
}
.service-package-card-v2:hover .service-pkg-arrow {
  transform: translateX(4px);
}

.service-pkg-figure {
  position: relative;
  margin: 0;
  height: 280px;
  overflow: hidden;
  background: var(--sand);
}
.service-pkg-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(28, 24, 21, 0.32));
  pointer-events: none;
  z-index: 1;
}
.service-pkg-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-pkg-serial {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(247, 244, 236, 0.4);
  border-radius: 999px;
  background: rgba(28, 24, 21, 0.34);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}
.service-pkg-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-deep), #3a2f24);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(43, 33, 26, 0.22);
}

.service-pkg-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 26px 26px;
}
.service-pkg-eyebrow {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-pkg-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 1.9vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.service-pkg-copy {
  margin: 0;
  color: rgba(43, 33, 26, 0.66);
  font-size: 14px;
  line-height: 1.55;
}
.service-pkg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gold-line);
}
.service-pkg-price-v2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.service-pkg-price-v2 span {
  color: rgba(43, 33, 26, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-pkg-price-v2 strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-deep);
}
.service-pkg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-pkg-arrow {
  display: inline-block;
  font-family: var(--serif);
  font-size: 16px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Feature card — South Asian */
.service-pkg-feature {
  background:
    radial-gradient(circle at 92% 8%, rgba(175, 151, 123, 0.18), transparent 36%),
    linear-gradient(160deg, var(--paper), rgba(175, 151, 123, 0.12));
  border-color: rgba(175, 151, 123, 0.58);
}
.service-pkg-feature .service-pkg-figure {
  height: 320px;
}

/* Wide layout — Events and Bridal Party (image left, content right) */
.service-pkg-wide {
  grid-template-rows: 1fr;
}
.service-pkg-wide .service-pkg-body {
  padding: 28px 32px 30px;
}
.service-pkg-wide .service-pkg-title {
  font-size: clamp(28px, 2.2vw, 36px);
}
.service-pkg-wide .service-pkg-copy {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .service-overview-grid-v2 .service-pkg-wide {
    grid-template-columns: 1fr;
  }
  .service-overview-grid-v2 .service-pkg-wide .service-pkg-figure {
    min-height: 240px;
    height: 280px;
  }
}
@media (max-width: 980px) {
  .service-overview-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .service-overview-grid-v2 .service-package-card-v2,
  .service-overview-grid-v2 .service-pkg-wide {
    grid-column: auto;
  }
  .service-overview-grid-v2 .service-pkg-feature {
    grid-column: span 2;
  }
  .service-pkg-figure { height: 260px; }
}
@media (max-width: 640px) {
  .service-overview-grid-v2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-overview-grid-v2 .service-pkg-feature {
    grid-column: auto;
  }
  .service-pkg-figure { height: 240px; }
  .service-pkg-feature .service-pkg-figure { height: 260px; }
  .service-pkg-body { padding: 22px 22px 24px; }
  .service-pkg-title { font-size: 24px; }
  .service-pkg-meta { gap: 10px; }
  .service-pkg-link { font-size: 10px; letter-spacing: 0.08em; }
}

/* ==========================================================================
   CUSTOMIZER — editorial estimator v2
   ========================================================================== */
#customizer-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(175, 151, 123, 0.14), transparent 30%),
    linear-gradient(180deg, var(--sand), var(--ivory));
  border-top: 1px solid rgba(175, 151, 123, 0.18);
  border-bottom: 1px solid rgba(175, 151, 123, 0.18);
}
.package-customizer {
  position: relative;
}
.package-customizer::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(175, 151, 123, 0.2);
  border-radius: 18px;
  pointer-events: none;
}

/* Group titles → editorial sub-headings */
.customizer-group-title {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold-deep) !important;
  margin-bottom: 18px !important;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
}
.customizer-group-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-deep);
}

/* Customizer card layout — 2-col base packages (better balance), addon flexible */
.customizer-group:first-of-type .customizer-cards,
.customizer-group:nth-of-type(2) .customizer-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Refined card styling */
.customizer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 20px 22px 22px !important;
  border: 1px solid var(--gold-line) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(155deg, var(--paper), rgba(232, 228, 217, 0.18)) !important;
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms ease !important;
}
.customizer-card:hover {
  border-color: rgba(175, 151, 123, 0.74) !important;
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(43, 33, 26, 0.1),
    inset 0 1px 0 rgba(255, 253, 247, 0.62);
}

/* N° serial number for base packages */
.customizer-group:first-of-type .customizer-cards { counter-reset: pkg-serial; }
.customizer-group:first-of-type .customizer-card::before {
  content: "N\00B0  " counter(pkg-serial, decimal-leading-zero);
  counter-increment: pkg-serial;
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Addon "+" badge */
.customizer-group:nth-of-type(2) .customizer-card::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/* Selection indicator — larger, more refined */
.customizer-card .card-indicator {
  top: 18px !important;
  right: 18px !important;
  width: 22px !important;
  height: 22px !important;
  border: 1.5px solid var(--gold-line) !important;
  background: var(--paper) !important;
  transition: all 220ms ease !important;
}
.customizer-card input:checked + .card-indicator {
  background: var(--gold-deep) !important;
  border-color: var(--gold-deep) !important;
  box-shadow: 0 0 0 4px rgba(175, 151, 123, 0.22);
}
.customizer-card input:checked + .card-indicator::after {
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  border-color: var(--paper);
}

/* Card typography */
.customizer-card strong {
  font-family: var(--serif) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.1;
  color: var(--ink);
  padding-right: 36px;
}
.customizer-card > span:not(.card-indicator):not(.card-price) {
  font-size: 13px !important;
  color: rgba(43, 33, 26, 0.65) !important;
  line-height: 1.5;
}
.customizer-card .card-price {
  display: flex !important;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px !important;
  border-top: 1px solid var(--gold-line);
  font-family: var(--serif) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--gold-deep) !important;
  letter-spacing: -0.005em;
}

/* Selected state — gold border + soft ring */
.customizer-card.checked {
  border-color: var(--gold-deep) !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(175, 151, 123, 0.14), transparent 50%),
    linear-gradient(155deg, var(--paper), rgba(175, 151, 123, 0.06)) !important;
  box-shadow:
    0 0 0 1px var(--gold-deep),
    0 22px 52px rgba(107, 86, 67, 0.14) !important;
}

/* Wedding party section — counter widget cards */
.customizer-group:nth-of-type(3) .customizer-card {
  grid-template-rows: auto auto 1fr auto;
  cursor: default !important;
}
.customizer-group:nth-of-type(3) .customizer-card::before {
  content: none;
}
.customizer-group:nth-of-type(3) .customizer-card .card-price {
  font-size: 18px !important;
  border-top: 0;
  padding-top: 8px !important;
  margin-bottom: 14px !important;
}

/* Counter widget v2 */
.counter-widget {
  display: grid !important;
  grid-template-columns: 44px 1fr 44px !important;
  align-items: stretch !important;
  max-width: none !important;
  height: 48px;
  overflow: hidden !important;
  border: 1px solid var(--gold-line) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, var(--paper), rgba(220, 219, 208, 0.22)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.6);
}
.counter-btn {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--gold-deep) !important;
  font-family: var(--serif) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.counter-btn:hover {
  background: var(--gold-deep) !important;
  color: var(--paper) !important;
}
.counter-val {
  flex: none !important;
  width: 100%;
  height: 100% !important;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid var(--gold-line) !important;
  border-right: 1px solid var(--gold-line) !important;
  background: rgba(255, 253, 247, 0.62) !important;
  color: var(--ink) !important;
  font-family: var(--serif) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  text-align: center !important;
  appearance: textfield;
  -moz-appearance: textfield;
}
.counter-val::-webkit-outer-spin-button,
.counter-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Summary card v2 — editorial invoice */
.customizer-summary-card {
  border-radius: 12px !important;
  border-color: var(--gold-line) !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(175, 151, 123, 0.18), transparent 36%),
    linear-gradient(155deg, var(--paper), var(--ivory)) !important;
  box-shadow:
    0 36px 80px rgba(43, 33, 26, 0.1),
    0 0 0 8px rgba(255, 253, 247, 0.6),
    0 0 0 9px var(--gold-line) !important;
  padding: 32px 30px 30px !important;
  position: sticky;
  top: 120px;
}
.customizer-summary-card::before {
  content: "Estimate N\00B0  01";
  display: block;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.summary-header {
  border-bottom: 1px solid var(--gold-line) !important;
  padding-bottom: 18px !important;
  margin-bottom: 22px !important;
}
.summary-header h4 {
  font-family: var(--serif);
  font-size: 28px !important;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 8px !important;
  color: var(--ink);
}
.summary-header p {
  color: rgba(43, 33, 26, 0.55) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 1 !important;
}
.summary-items {
  gap: 14px !important;
  margin-bottom: 22px !important;
  font-size: 14px !important;
  color: rgba(43, 33, 26, 0.78) !important;
}
.summary-item {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--gold-line);
}
.summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.summary-item span:first-child {
  opacity: 0.86 !important;
}
.summary-item span:last-child {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-deep) !important;
}
.summary-total {
  border-top: 1px solid var(--gold-line) !important;
  padding-top: 24px !important;
  margin-bottom: 28px !important;
}
.summary-total span {
  font-size: 11px !important;
  letter-spacing: 0.16em;
  color: rgba(43, 33, 26, 0.58);
}
.summary-total strong {
  font-size: 46px !important;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
}

@media (max-width: 980px) {
  .customizer-group:first-of-type .customizer-cards,
  .customizer-group:nth-of-type(2) .customizer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .customizer-summary-card { position: static; }
}
@media (max-width: 640px) {
  .customizer-group:first-of-type .customizer-cards,
  .customizer-group:nth-of-type(2) .customizer-cards {
    grid-template-columns: 1fr;
  }
  .customizer-card strong { font-size: 18px !important; }
  .customizer-card .card-price { font-size: 20px !important; }
  .customizer-summary-card { padding: 24px 22px !important; }
  .summary-header h4 { font-size: 24px !important; }
  .summary-total strong { font-size: 38px !important; }
}

/* ==========================================================================
   SERVICES DETAIL — editorial side menu + panels
   ========================================================================== */
.services-detail-section {
  background:
    linear-gradient(180deg, #ebe7dc, var(--ivory) 50%, var(--ivory));
}
.services-detail-section .service-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-detail-section .service-menu a::before {
  content: counter(svc-menu, decimal-leading-zero);
  counter-increment: svc-menu;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0;
  text-transform: none;
}
.services-detail-section .service-menu { counter-reset: svc-menu; }
.services-detail-section .service-menu a:hover::before,
.services-detail-section .service-menu a[aria-current="true"]::before {
  color: var(--ivory);
}

.service-panel {
  position: relative;
}
.service-panel > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.service-panel > span:first-child::before {
  content: counter(svc-panel, decimal-leading-zero);
  counter-increment: svc-panel;
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(220, 219, 208, 0.34));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.service-list { counter-reset: svc-panel; }

/* ==========================================================================
   REVIEWS PAGE — slider section editorial + CTA
   ========================================================================== */
.testimonials-slider-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(175, 151, 123, 0.12), transparent 30%),
    linear-gradient(180deg, var(--sand), var(--ivory) 80%);
  border-top: 1px solid rgba(175, 151, 123, 0.18);
}
.testimonials-slider-section .reviews-section-heading {
  display: grid;
  gap: 18px;
}

/* Testimonial premium card v2 */
.testimonial-card-premium {
  position: relative;
  display: grid;
  gap: 28px;
  padding: clamp(36px, 4.5vw, 60px) clamp(28px, 4vw, 56px) clamp(28px, 3.5vw, 44px) !important;
  border-radius: 14px !important;
  background: linear-gradient(160deg, var(--paper), var(--ivory) 80%) !important;
  box-shadow:
    0 40px 80px rgba(43, 33, 26, 0.12),
    0 0 0 7px rgba(255, 253, 247, 0.78),
    0 0 0 8px var(--gold-line) !important;
  min-height: auto !important;
}
.testimonial-card-premium::before {
  display: none;
}
.testimonial-card-premium::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(220, 219, 208, 0.46);
  border-radius: 8px;
  pointer-events: none;
}

/* Editorial strip — Review N° + category */
.testimonial-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.testimonial-num {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold-deep);
  box-shadow: 0 8px 18px rgba(107, 86, 67, 0.1);
}
.testimonial-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  min-width: 20px;
}
.testimonial-category {
  color: var(--brown);
}

/* Quote with decorative big mark */
.testimonial-quote-wrap {
  position: relative;
  z-index: 1;
  padding-top: 6px;
}
.testimonial-quote-mark {
  position: absolute;
  top: -22px;
  left: -8px;
  font-family: var(--serif);
  font-size: clamp(96px, 11vw, 150px);
  line-height: 0.7;
  font-weight: 600;
  color: var(--gold-deep);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial-card-premium .testimonial-body {
  position: relative;
  margin: 0;
  padding: 0 0 0 clamp(20px, 3vw, 48px);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* Meta row */
.testimonial-card-premium .testimonial-meta-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-top: 24px !important;
  border-top: 1px solid var(--gold-line) !important;
}
.testimonial-card-premium .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.testimonial-card-premium .testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid var(--gold-line) !important;
  background: linear-gradient(135deg, var(--gold-deep), #3a2f24) !important;
  color: var(--ivory) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}
.testimonial-card-premium .testimonial-author-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.testimonial-card-premium .testimonial-author-info cite {
  font-family: var(--serif);
  font-style: normal;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1;
  color: var(--ink);
}
.testimonial-card-premium .testimonial-author-info span {
  color: rgba(43, 33, 26, 0.62) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.testimonial-card-premium .testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-deep) !important;
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* Slider controls v2 — with pagination counter */
.slider-controls-v2 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px !important;
  margin-top: 40px !important;
}
.slider-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.slider-arrow:hover {
  background: var(--gold-deep);
  color: var(--paper);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}
.slider-pagination {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  font-family: var(--serif);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(107, 86, 67, 0.08);
}
.slider-pag-current {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
}
.slider-pag-divider {
  font-size: 16px;
  color: rgba(43, 33, 26, 0.4);
  line-height: 1;
}
.slider-pag-total {
  font-size: 14px;
  color: rgba(43, 33, 26, 0.55);
  font-weight: 600;
  line-height: 1;
}
.slider-controls-v2 .slider-dots {
  gap: 8px;
}
.slider-controls-v2 .slider-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-line);
}
.slider-controls-v2 .slider-dot.active {
  background: var(--gold-deep);
  transform: scale(1.4);
}

@media (max-width: 640px) {
  .testimonial-card-premium {
    padding: 32px 24px 26px !important;
  }
  .testimonial-card-premium .testimonial-body {
    font-size: 20px;
    padding-left: 18px;
  }
  .testimonial-quote-mark {
    top: -18px;
    left: -6px;
    font-size: 80px;
  }
  .testimonial-card-premium .testimonial-meta-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testimonial-card-premium .testimonial-stars {
    justify-self: start;
  }
  .testimonial-strip {
    flex-wrap: wrap;
    gap: 10px;
  }
  .testimonial-rule { display: none; }
  .slider-controls-v2 { flex-wrap: wrap; gap: 14px !important; }
  .slider-pagination { padding: 8px 14px; }
  .slider-pag-current { font-size: 18px; }
}
.reviews-cta {
  background:
    radial-gradient(circle at 8% 8%, rgba(175, 151, 123, 0.1), transparent 30%),
    var(--ivory);
}
.reviews-cta-card {
  border-color: var(--gold-line);
}

/* ==========================================================================
   INQUIRY JOURNEY — chapter II timeline (4 steps)
   ========================================================================== */
.inquiry-journey-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(175, 151, 123, 0.12), transparent 30%),
    linear-gradient(180deg, var(--ivory), #eee9dd);
  border-top: 1px solid rgba(175, 151, 123, 0.18);
}
.inquiry-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}
.inquiry-journey li {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px 26px 30px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background:
    linear-gradient(160deg, var(--paper), rgba(220, 219, 208, 0.18));
  box-shadow: 0 22px 60px rgba(43, 33, 26, 0.08);
}
.inquiry-journey li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 28px;
  height: 1px;
  background: var(--gold-line);
  z-index: 1;
}
.inquiry-journey li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -22px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--gold-deep);
  border-right: 1px solid var(--gold-deep);
  transform: rotate(45deg);
  z-index: 2;
}
.journey-num {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--charcoal), #3a2f24);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(43, 33, 26, 0.22);
}
.journey-body {
  display: grid;
  gap: 10px;
}
.journey-eyebrow {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.journey-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.journey-body p {
  margin: 0;
  color: rgba(43, 33, 26, 0.66);
  font-size: 14px;
  line-height: 1.55;
}
.journey-meta {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--gold-line);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 1100px) {
  .inquiry-journey { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inquiry-journey li:not(:last-child)::after,
  .inquiry-journey li:not(:last-child)::before { display: none; }
}
@media (max-width: 640px) {
  .inquiry-journey { grid-template-columns: 1fr; }
}

/* ==========================================================================
   INQUIRY FAQ — chapter III
   ========================================================================== */
.inquiry-faq-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(175, 151, 123, 0.14), transparent 30%),
    linear-gradient(180deg, #eee9dd, var(--paper));
  border-top: 1px solid rgba(175, 151, 123, 0.18);
}
.inquiry-faq-accordion {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.inquiry-faq-accordion .faq-item {
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background:
    linear-gradient(160deg, var(--paper), rgba(220, 219, 208, 0.14));
  box-shadow: 0 14px 36px rgba(43, 33, 26, 0.05);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}
.inquiry-faq-accordion .faq-item.open {
  border-color: var(--gold-deep);
  box-shadow: 0 22px 52px rgba(107, 86, 67, 0.1);
}
.inquiry-faq-accordion .faq-trigger {
  padding: 26px 28px;
}
.inquiry-faq-accordion .faq-trigger h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.inquiry-faq-accordion .faq-panel {
  padding: 0 28px;
}
.inquiry-faq-accordion .faq-panel p {
  color: rgba(43, 33, 26, 0.7);
  font-size: 15px;
  line-height: 1.65;
}
.inquiry-faq-accordion .faq-panel a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   INQUIRY NOTE FROM DWIJA — chapter IV personal letter
   ========================================================================== */
.inquiry-note-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(175, 151, 123, 0.16), transparent 30%),
    linear-gradient(180deg, var(--paper), var(--sand));
  border-top: 1px solid rgba(175, 151, 123, 0.18);
}
.inquiry-note-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) clamp(32px, 5vw, 76px) clamp(40px, 5vw, 64px);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background:
    linear-gradient(160deg, var(--paper), var(--ivory)) ,
    var(--ivory);
  box-shadow:
    0 50px 100px rgba(43, 33, 26, 0.14),
    0 0 0 8px rgba(255, 253, 247, 0.7),
    0 0 0 9px var(--gold-line);
  overflow: hidden;
}
.inquiry-note-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(220, 219, 208, 0.6);
  border-radius: 8px;
  pointer-events: none;
}
.inquiry-note-card::after {
  content: "";
  position: absolute;
  inset: auto -100px -160px auto;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(175, 151, 123, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.inquiry-note-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 78% 24%, rgba(175, 151, 123, 0.2), transparent 70%),
    radial-gradient(30% 20% at 14% 80%, rgba(175, 151, 123, 0.1), transparent 70%);
  filter: blur(40px);
  opacity: 0.65;
  pointer-events: none;
}
.inquiry-note-card > * { position: relative; z-index: 1; }

.inquiry-note-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.inquiry-note-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.inquiry-note-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  max-width: 80px;
}
.inquiry-note-greeting {
  margin: 0 0 22px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
}
.inquiry-note-body {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}
.inquiry-note-body em {
  font-style: italic;
  color: var(--gold-deep);
}
.inquiry-note-sign {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 28px;
  align-items: end;
  margin-bottom: 32px;
}
.inquiry-note-script {
  grid-column: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-deep);
  transform: rotate(-3deg);
  transform-origin: left center;
}
.inquiry-note-meta {
  grid-column: 2;
  align-self: end;
  padding-bottom: 8px;
  display: grid;
  gap: 4px;
}
.inquiry-note-meta span {
  color: rgba(43, 33, 26, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inquiry-note-divider {
  height: 1px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}
.inquiry-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

@media (max-width: 640px) {
  .inquiry-note-card { padding: 40px 24px 32px; }
  .inquiry-note-card::before { inset: 8px; }
  .inquiry-note-body { font-size: 20px; margin-bottom: 32px; }
  .inquiry-note-sign { grid-template-columns: 1fr; gap: 10px; }
  .inquiry-note-meta { padding-bottom: 0; }
  .inquiry-note-script { font-size: 44px; }
  .inquiry-faq-accordion .faq-trigger { padding: 22px; }
  .inquiry-faq-accordion .faq-trigger h3 { font-size: 17px; }
  .inquiry-faq-accordion .faq-panel { padding: 0 22px; }
}

/* ==========================================================================
   HOME HERO v2 — italic emphasis, lede, signature
   ========================================================================== */
.home-hero-v2 {
  position: relative;
}
.home-hero-v2::before {
  display: none !important;
}
.home-hero-topline {
  display: none;
}
.home-hero-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(220, 219, 208, 0.46);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(247, 244, 236, 0.18), rgba(28, 24, 21, 0.4));
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}
.home-hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 219, 208, 0.42), transparent);
  min-width: 24px;
}
.home-hero-rule:last-of-type {
  background: linear-gradient(90deg, transparent, rgba(220, 219, 208, 0.42));
}
.home-hero-stamp {
  color: var(--gold-soft);
  font-family: var(--sans);
}
.home-hero-year {
  color: rgba(220, 219, 208, 0.74);
  font-family: var(--sans);
}

/* Italic emphasis on h1 */
.home-hero-v2 .hero-content h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}

/* Desktop: position image so both faces stay perfectly framed */
.home-hero-v2 .hero-media img {
  object-position: center 28%;
}

/* Lede */
.home-hero-v2 .hero-lede {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(247, 244, 236, 0.96);
  font-size: 18px;
  line-height: 1.55;
}

/* Hero kicker — slightly tighter */
.home-hero-v2 .hero-kicker {
  color: var(--gold-soft);
  letter-spacing: 0.14em;
}

/* Hero meta — wrap with destination */
.home-hero-v2 .hero-meta { gap: 12px; }

/* Hero signature block */
.hero-signature {
  display: flex;
  align-items: end;
  gap: 18px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 219, 208, 0.28);
  max-width: 480px;
}
.hero-sig-script {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--gold-soft);
  transform: rotate(-3deg);
  transform-origin: left center;
}
.hero-sig-role {
  padding-bottom: 6px;
  color: rgba(247, 244, 236, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Push hero frame down a bit so masthead has clear space */
.home-hero-v2 .hero-frame {
  padding-top: 36px;
}
.home-hero-v2 .hero-frame {
  grid-template-columns: minmax(0, 1fr);
}
.home-hero-v2 .hero-content {
  max-width: 780px;
}

@media (max-width: 980px) {
  .home-hero-topline {
    top: 90px;
    left: clamp(20px, 4vw, 32px);
    right: clamp(20px, 4vw, 32px);
    gap: 10px;
  }
  .home-hero-mark { width: 34px; height: 34px; font-size: 14px; }
  .home-hero-stamp, .home-hero-year { font-size: 10px; letter-spacing: 0.14em; }
}
/* Hide mobile-only ornaments on desktop */
@media (min-width: 641px) {
  .home-hero-mobile-only { display: none !important; }
}

@media (max-width: 640px) {
  /* =====================================================================
     PHONE HERO — ONE-SCREEN composition (fits in 100svh, no scroll)
     ===================================================================== */
  .home-hero-v2 {
    height: 100svh;
    min-height: 580px;
    max-height: 100svh;
    padding: 70px 18px 16px !important;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }

  /* Soft, refined overlay — bouquet image visible as the hero subject */
  .home-hero-v2 .hero-media::after {
    background:
      radial-gradient(circle at 78% 30%, rgba(175, 151, 123, 0.18), transparent 44%),
      linear-gradient(180deg,
        rgba(20, 17, 15, 0.68) 0%,
        rgba(20, 17, 15, 0.42) 8%,
        rgba(20, 17, 15, 0.18) 26%,
        rgba(20, 17, 15, 0.42) 64%,
        rgba(20, 17, 15, 0.84) 100%);
  }

  /* Header — translucent dark backdrop so the logo + hamburger feel anchored */
  .site-header:not(.scrolled):not(.menu-open):not(.page-header) {
    background:
      linear-gradient(180deg, rgba(20, 17, 15, 0.42), rgba(20, 17, 15, 0.04));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .home-hero-v2 .hero-media img {
    object-position: center 38%;
    transform: scale(1.04);
  }
  .home-hero-v2::before {
    inset: 82px 14px 22px !important;
    border-color: rgba(220, 219, 208, 0.32);
    border-radius: 6px;
  }

  /* Masthead — single compact line */
  .home-hero-topline {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-bottom: 10px;
    padding: 0;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.14em;
    flex-wrap: nowrap;
    align-items: center;
  }
  .home-hero-mark { width: 26px; height: 26px; font-size: 11px; flex: 0 0 26px; }
  .home-hero-rule { display: none; }
  .home-hero-stamp {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .home-hero-year {
    flex: 0 0 auto;
    color: rgba(220, 219, 208, 0.6);
    font-size: 8px;
  }

  /* Frame — anchor content to BOTTOM of the screen, image shows above */
  .home-hero-v2 .hero-frame {
    padding-top: 0 !important;
    grid-template-columns: 1fr !important;
    align-content: end;
    align-items: end;
    gap: 0;
    width: 100%;
  }
  .home-hero-v2 .hero-content {
    display: grid;
    gap: 12px;
    text-align: left;
    margin-top: 0 !important;
    align-self: end;
  }

  /* Eyebrow — small inline pill */
  .home-hero-v2 .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid rgba(220, 219, 208, 0.36);
    border-radius: 999px;
    background: rgba(28, 24, 21, 0.3);
    backdrop-filter: blur(10px);
    color: var(--gold-soft) !important;
    font-size: 9px !important;
    font-weight: 800;
    letter-spacing: 0.14em !important;
    line-height: 1.3;
  }
  .home-hero-v2 .hero-kicker::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-soft);
    flex: 0 0 5px;
    box-shadow: 0 0 0 3px rgba(175, 151, 123, 0.18);
  }

  /* Headline — compact for single-screen */
  .home-hero-v2 .hero-content h1 {
    max-width: 340px;
    margin: 0;
    font-size: clamp(40px, 11.5vw, 52px) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.018em;
    text-shadow: 0 4px 24px rgba(20, 17, 15, 0.58);
  }

  /* Lede — short, 2 lines max */
  .home-hero-v2 .hero-lede {
    max-width: 320px;
    margin: 0;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    color: rgba(247, 244, 236, 0.92) !important;
    text-shadow: 0 2px 14px rgba(20, 17, 15, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hide the dense pills/meta on mobile — clean focus */
  .home-hero-v2 .hero-meta { display: none !important; }

  /* CTA — primary + secondary side-by-side */
  .home-hero-v2 .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 10px !important;
    margin-top: 4px !important;
    width: 100%;
  }
  .home-hero-v2 .hero-actions .button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 12px 14px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.14em;
    white-space: nowrap;
    justify-content: center;
  }
  .home-hero-v2 .hero-actions .button-light {
    box-shadow:
      0 16px 32px rgba(175, 151, 123, 0.3),
      0 0 0 1px rgba(220, 219, 208, 0.4);
  }
  .home-hero-v2 .hero-actions .button-ghost {
    background: transparent !important;
    border: 1px solid rgba(220, 219, 208, 0.46) !important;
    padding: 12px 14px !important;
  }

  /* Signature — bottom of hero row */
  .home-hero-v2 .hero-signature {
    display: flex !important;
    align-items: end;
    gap: 12px;
    margin: 0 !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(220, 219, 208, 0.22) !important;
    max-width: 100%;
  }
  .home-hero-v2 .hero-sig-script {
    font-size: 26px !important;
  }
  .home-hero-v2 .hero-sig-role {
    padding-bottom: 3px !important;
    font-size: 8.5px !important;
    letter-spacing: 0.14em;
  }

  /* Hide non-essentials on phone (kept for desktop) — fit-in-one-screen */
  .home-hero-v2 .hero-card,
  .home-hero-v2 .hero-note,
  .home-hero-v2 .scroll-cue,
  .home-hero-v2 .home-hero-topline,
  .home-hero-v2 .home-hero-status,
  .home-hero-v2 .hero-kicker {
    display: none !important;
  }

  /* Slim marquee at the bottom of the phone hero */
  .home-hero-v2 .hero-marquee {
    display: block;
    width: calc(100% + 36px);
    margin: 14px -18px 0;
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(220, 219, 208, 0.22);
    border-bottom: 0;
    background:
      linear-gradient(180deg, rgba(20, 17, 15, 0.18), rgba(20, 17, 15, 0.42));
    backdrop-filter: blur(8px);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .home-hero-v2 .hero-marquee div {
    display: flex;
    width: max-content;
    gap: 22px;
    padding: 10px 0;
    animation: heroMarquee 26s linear infinite;
  }
  .home-hero-v2 .hero-marquee span {
    color: rgba(247, 244, 236, 0.74);
    font-size: 9px !important;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .home-hero-v2 .hero-marquee span:nth-child(3n + 1) {
    color: var(--gold-soft);
  }

  /* Scroll cue — repositioned floating */
  .home-hero-v2 .scroll-cue {
    right: 18px;
    bottom: 18px;
  }

  /* Hide ornaments on phone (corners + polaroid + ::before frame) — saves vertical space */
  .home-hero-v2::before { display: none; }
  .home-hero-corner,
  .home-hero-polaroid {
    display: none !important;
  }

  /* === Floating "Booking 2026 & 2027" status badge — compact === */
  .home-hero-status {
    position: absolute;
    top: 76px;
    right: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 8px;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(28, 24, 21, 0.72), rgba(58, 47, 36, 0.62));
    backdrop-filter: blur(14px);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(175, 151, 123, 0.18);
    color: var(--gold-soft);
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: heroBadgeIn 700ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
  }
  .home-hero-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6dbf75;
    box-shadow:
      0 0 0 2px rgba(109, 191, 117, 0.3),
      0 0 8px rgba(109, 191, 117, 0.7);
    animation: statusPulse 2.4s ease-in-out infinite;
  }
  @keyframes heroBadgeIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(109, 191, 117, 0.3), 0 0 8px rgba(109, 191, 117, 0.7); }
    50% { box-shadow: 0 0 0 5px rgba(109, 191, 117, 0.06), 0 0 12px rgba(109, 191, 117, 0.9); }
  }

  /* === Featured testimonial — compact inline strip (no card) === */
  .home-hero-quote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    max-width: 100%;
  }
  .home-hero-quote-stars {
    color: var(--gold-soft);
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1;
    flex: 0 0 auto;
  }
  .home-hero-quote-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13.5px;
    line-height: 1.3;
    color: rgba(247, 244, 236, 0.96);
    flex: 1 1 auto;
    min-width: 0;
    text-shadow: 0 1px 12px rgba(20, 17, 15, 0.6);
  }
  .home-hero-quote-cite {
    color: rgba(247, 244, 236, 0.6);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    flex: 0 0 100%;
  }
}

@media (max-width: 380px) {
  .home-hero-v2 .hero-content h1 { font-size: 44px !important; }
}

/* ==========================================================================
   INQUIRY STUDIO v2 — editorial submission card
   ========================================================================== */
.inquiry-studio-v2 {
  position: relative;
  overflow: hidden;
  padding: 138px 0 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(175, 151, 123, 0.22), transparent 32%),
    radial-gradient(circle at 6% 78%, rgba(220, 219, 208, 0.32), transparent 30%),
    linear-gradient(120deg, var(--paper), var(--sand) 96%);
  border-bottom: 1px solid var(--gold-line);
}
.inquiry-studio-v2::before,
.inquiry-studio-v2::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.inquiry-studio-v2::before {
  inset: 118px clamp(28px, 4vw, 64px) 60px;
  border: 1px solid rgba(175, 151, 123, 0.22);
  border-radius: 2px;
}
.inquiry-studio-v2::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}
.inquiry-studio-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(175, 151, 123, 0.18), transparent 70%),
    radial-gradient(50% 40% at 16% 80%, rgba(175, 151, 123, 0.12), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  animation: aboutAurora 16s ease-in-out infinite alternate;
}
.inquiry-studio-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
}

/* Masthead */
.inquiry-studio-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(40px, 5vw, 72px);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.inquiry-studio-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.4));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.inquiry-studio-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  min-width: 24px;
}
.inquiry-studio-rule:last-of-type {
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.inquiry-studio-stamp { color: var(--brown); font-family: var(--sans); }
.inquiry-studio-year { color: rgba(43, 33, 26, 0.7); font-family: var(--sans); }

/* Main grid */
.inquiry-studio-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.78fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
}
.inquiry-studio-copy-v2 {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 28px;
  min-width: 0;
}

/* Copy */
.inquiry-eyebrow { margin: 0; color: var(--gold-deep); }
.inquiry-headline {
  margin: 0;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.inquiry-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.inquiry-lede {
  margin: 0;
  max-width: 480px;
  color: rgba(43, 33, 26, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

/* Quick list */
.inquiry-quick-list-v2 {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.inquiry-quick-list-v2 li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.88), rgba(220, 219, 208, 0.22));
  box-shadow: 0 12px 30px rgba(43, 33, 26, 0.05);
}
.inquiry-quick-num {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.inquiry-quick-list-v2 li > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.inquiry-quick-list-v2 strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.inquiry-quick-list-v2 span:not(.inquiry-quick-num) {
  color: rgba(43, 33, 26, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Detail image */
.inquiry-detail-image-v2 {
  position: relative;
  margin: 0;
}
.inquiry-detail-frame {
  position: relative;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow:
    0 30px 70px rgba(43, 33, 26, 0.14),
    0 0 0 7px rgba(255, 253, 247, 0.78),
    0 0 0 8px var(--gold-line);
}
.inquiry-detail-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(220, 219, 208, 0.5);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}
.inquiry-detail-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 24, 21, 0.28));
  pointer-events: none;
}
.inquiry-detail-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}
.inquiry-detail-image-v2 figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 12px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(43, 33, 26, 0.18);
}
.inquiry-detail-image-v2 figcaption span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.inquiry-detail-image-v2 figcaption strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

/* Contact panel */
.contact-panel-v2 {
  display: grid;
  gap: 0;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.22));
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(43, 33, 26, 0.06);
}
.contact-panel-eyebrow {
  padding: 14px 22px;
  border-bottom: 1px solid var(--gold-line);
  background: rgba(247, 244, 236, 0.7);
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-panel-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--gold-line);
  color: var(--ink);
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}
.contact-panel-row:last-child { border-bottom: 0; }
.contact-panel-row:hover {
  background: rgba(175, 151, 123, 0.08);
}
.contact-panel-label {
  color: rgba(43, 33, 26, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-panel-row strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-panel-arrow {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 18px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-panel-row:hover .contact-panel-arrow {
  transform: translateX(4px);
}

/* Form intro */
.inquiry-form-v2 {
  position: relative;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(175, 151, 123, 0.12), transparent 36%),
    linear-gradient(160deg, var(--paper), var(--ivory)) !important;
  box-shadow:
    0 36px 80px rgba(43, 33, 26, 0.1),
    0 0 0 8px rgba(255, 253, 247, 0.7),
    0 0 0 9px var(--gold-line) !important;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 48px) !important;
}
.form-intro-v2 .eyebrow {
  margin-bottom: 12px !important;
  color: var(--gold-deep);
}
.inquiry-form-heading {
  margin: 0 0 12px !important;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 48px) !important;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.inquiry-form-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.form-intro-v2 p:not(.eyebrow) {
  margin: 0;
  color: rgba(43, 33, 26, 0.7) !important;
  font-size: 15px !important;
  max-width: 540px;
}

/* Form section title — refined */
.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line);
}
.form-section-title span {
  display: inline-grid !important;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid var(--gold-line) !important;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  color: var(--gold-deep) !important;
  font-family: var(--serif) !important;
  font-size: 15px !important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1 !important;
}
.form-section-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 28px) !important;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* Inputs */
.inquiry-form-v2 label {
  color: rgba(43, 33, 26, 0.7) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
}
.inquiry-form-v2 input,
.inquiry-form-v2 select,
.inquiry-form-v2 textarea {
  border: 1px solid rgba(175, 151, 123, 0.36) !important;
  border-radius: 10px !important;
  background: rgba(255, 253, 247, 0.78) !important;
  font-family: var(--serif) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em;
  color: var(--ink) !important;
  text-transform: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.inquiry-form-v2 input::placeholder,
.inquiry-form-v2 textarea::placeholder {
  color: rgba(43, 33, 26, 0.4);
  font-family: var(--serif);
  font-style: italic;
}
.inquiry-form-v2 input:focus,
.inquiry-form-v2 select:focus,
.inquiry-form-v2 textarea:focus {
  border-color: var(--gold-deep) !important;
  background: var(--paper) !important;
  box-shadow: 0 0 0 4px rgba(175, 151, 123, 0.18) !important;
}
.inquiry-form-v2 textarea {
  resize: vertical;
  min-height: 120px;
}

/* Field label */
.inquiry-form-v2 .field-label,
.inquiry-form-v2 .choice-field legend {
  color: rgba(43, 33, 26, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

/* Choice group / multi-select pills */
.inquiry-form-v2 .choice-group label,
.inquiry-form-v2 .multi-select-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 16px !important;
  border: 1px solid var(--gold-line) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.84), rgba(220, 219, 208, 0.18)) !important;
  color: var(--brown) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: none !important;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}
.inquiry-form-v2 .choice-group label:hover,
.inquiry-form-v2 .multi-select-options label:hover {
  border-color: rgba(175, 151, 123, 0.74);
  background: rgba(247, 244, 236, 0.92) !important;
}
.inquiry-form-v2 .multi-select summary {
  border-radius: 10px !important;
  border-color: rgba(175, 151, 123, 0.36) !important;
  font-family: var(--serif) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em;
  text-transform: none !important;
}

/* Form intro flourish — small quill mark */
.inquiry-form-v2 .form-intro-v2 {
  position: relative;
  padding-right: 56px;
}
.inquiry-form-v2 .form-intro-v2::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--paper), rgba(220, 219, 208, 0.3)),
    linear-gradient(135deg, var(--gold-deep) 0 1px, transparent 1px 100%);
  background-size: 100% 100%, 1.5px 18px;
  background-position: center, center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 22px rgba(107, 86, 67, 0.12);
}

/* Step indicator — rebuilt for clear active state */
.inquiry-form-v2 .form-steps {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-bottom: 38px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.inquiry-form-v2 .form-steps::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 21px !important;
  left: 12.5% !important;
  right: 12.5% !important;
  height: 1px !important;
  background: var(--gold-line) !important;
  z-index: 0 !important;
}
.inquiry-form-v2 .form-progress-bar {
  display: block !important;
  position: absolute !important;
  top: 21px !important;
  left: 12.5% !important;
  height: 1px !important;
  background: var(--gold-deep) !important;
  z-index: 1 !important;
  max-width: 75%;
}
.inquiry-form-v2 .form-step-dot {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
}
.inquiry-form-v2 .form-step-dot span {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
  border: 1px solid var(--gold-line) !important;
  border-radius: 50% !important;
  background:
    linear-gradient(135deg, var(--paper), rgba(220, 219, 208, 0.3)) !important;
  color: var(--gold-deep) !important;
  font-family: var(--serif) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.inquiry-form-v2 .form-step-dot label {
  margin: 0 !important;
  color: rgba(43, 33, 26, 0.5) !important;
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: color 280ms ease;
}
.inquiry-form-v2 .form-step-dot.active span {
  background: linear-gradient(135deg, var(--charcoal), #3a2f24) !important;
  color: var(--ivory) !important;
  border-color: var(--gold-deep) !important;
  box-shadow:
    0 12px 26px rgba(43, 33, 26, 0.28),
    0 0 0 4px rgba(175, 151, 123, 0.18) !important;
  transform: scale(1.06);
}
.inquiry-form-v2 .form-step-dot.active label {
  color: var(--ink) !important;
}
.inquiry-form-v2 .form-step-dot.completed span {
  background: linear-gradient(135deg, var(--gold-deep), #3a2f24) !important;
  border-color: var(--gold-deep) !important;
  color: transparent !important;
  font-size: 0 !important;
  position: relative;
}
.inquiry-form-v2 .form-step-dot.completed span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  border: solid var(--ivory);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -2px);
}
.inquiry-form-v2 .form-step-dot.completed label {
  color: var(--brown) !important;
}

/* Section title with step counter */
.inquiry-form-v2 .form-section-title {
  position: relative;
}
.inquiry-form-v2 .form-section-title::after {
  content: "Section " counter(form-section, decimal-leading-zero) " of 04";
  position: absolute;
  right: 0;
  bottom: 14px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0.8;
}
.inquiry-form-v2 .form-section-title {
  counter-increment: form-section;
}
.inquiry-form-v2 .inquiry-form-updated { counter-reset: form-section; }

/* Required asterisk in gold */
.inquiry-form-v2 label {
  position: relative;
}
.inquiry-form-v2 label:not(:has(input[type="checkbox"])):not(:has(input[type="radio"])) {
  display: grid;
  gap: 8px;
}

/* Submit / next step button — refined */
.inquiry-form-v2 .form-nav-buttons {
  margin-top: 32px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--gold-line) !important;
}
.inquiry-form-v2 .next-step-btn,
.inquiry-form-v2 .submit-step-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 26px 14px 30px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--charcoal), #3a2f24) !important;
  color: var(--ivory) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  box-shadow:
    0 18px 36px rgba(43, 33, 26, 0.2),
    inset 0 1px 0 rgba(255, 253, 247, 0.18) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}
.inquiry-form-v2 .next-step-btn::after,
.inquiry-form-v2 .submit-step-btn::after {
  content: "\2192";
  display: inline-block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.inquiry-form-v2 .next-step-btn:hover,
.inquiry-form-v2 .submit-step-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 44px rgba(43, 33, 26, 0.28),
    inset 0 1px 0 rgba(255, 253, 247, 0.22) !important;
}
.inquiry-form-v2 .next-step-btn:hover::after,
.inquiry-form-v2 .submit-step-btn:hover::after {
  transform: translateX(4px);
}
.inquiry-form-v2 .submit-step-btn[data-loading="true"] {
  cursor: wait !important;
  opacity: 0.92;
  transform: none !important;
  pointer-events: none;
}
.inquiry-form-v2 .submit-step-btn[data-loading="true"]::after {
  content: none;
}
.inquiry-form-v2 .submit-step-btn .button-loader {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid rgba(255, 253, 247, 0.36);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: submitLoaderSpin 720ms linear infinite;
}
@keyframes submitLoaderSpin {
  to { transform: rotate(360deg); }
}
.inquiry-form-v2 .prev-step-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 26px !important;
  border: 1px solid var(--gold-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 247, 0.62) !important;
  color: var(--brown) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}
.inquiry-form-v2 .prev-step-btn::before {
  content: "\2190";
  display: inline-block;
  font-family: var(--serif);
  font-size: 18px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.inquiry-form-v2 .prev-step-btn:hover {
  border-color: var(--gold-deep) !important;
  background: var(--paper) !important;
}
.inquiry-form-v2 .prev-step-btn:hover::before {
  transform: translateX(-4px);
}

@media (max-width: 640px) {
  .inquiry-form-v2 .form-intro-v2::after { display: none; }
  .inquiry-form-v2 .form-section-title::after { font-size: 11px; }
  .inquiry-form-v2 .form-step-dot span { width: 36px !important; height: 36px !important; flex: 0 0 36px !important; }
  .inquiry-form-v2 .form-steps::before,
  .inquiry-form-v2 .form-progress-bar { top: 18px !important; }
  .inquiry-form-v2 .form-step-dot label { font-size: 9px !important; }
  .inquiry-form-v2 .next-step-btn,
  .inquiry-form-v2 .submit-step-btn,
  .inquiry-form-v2 .prev-step-btn { font-size: 11px !important; padding: 12px 20px !important; }
}

/* Status bar */
.inquiry-form-v2 .form-status {
  color: var(--gold-deep) !important;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

/* Form + aftercare wrapper — sits in column 2 of grid */
.inquiry-form-stack {
  display: grid;
  gap: 28px;
  min-width: 0;
}
.inquiry-aftercare {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(28px, 3.4vw, 40px) clamp(24px, 3vw, 36px);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 10%, rgba(175, 151, 123, 0.16), transparent 36%),
    linear-gradient(160deg, var(--paper), var(--ivory));
  box-shadow:
    0 24px 60px rgba(43, 33, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.6);
}
.inquiry-aftercare::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(220, 219, 208, 0.54);
  border-radius: 8px;
  pointer-events: none;
}
.inquiry-aftercare > * {
  position: relative;
  z-index: 1;
}
.inquiry-aftercare-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
}
.inquiry-aftercare-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), #3a2f24);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 600;
}
.inquiry-aftercare-label {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.inquiry-aftercare-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.inquiry-aftercare-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.6);
}
.inquiry-aftercare-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.32));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}
.inquiry-aftercare-list li > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-top: 4px;
}
.inquiry-aftercare-list strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.inquiry-aftercare-list span:not(.inquiry-aftercare-num) {
  color: rgba(43, 33, 26, 0.62);
  font-size: 13px;
  line-height: 1.5;
}
.inquiry-aftercare-foot {
  margin: 0;
  color: rgba(43, 33, 26, 0.7);
  font-size: 13px;
  line-height: 1.6;
}
.inquiry-aftercare-foot a {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .inquiry-studio-v2 { padding: 116px 0 72px; }
  .inquiry-studio-v2::before { inset: 100px clamp(20px, 4vw, 40px) 44px; }
  .inquiry-studio-grid-v2 { grid-template-columns: 1fr; gap: 48px; }
  .inquiry-studio-copy-v2 { position: static; }
  .inquiry-studio-topline { flex-wrap: wrap; }
  .inquiry-aftercare-list li { padding: 12px 14px; }
}
@media (max-width: 640px) {
  .inquiry-aftercare { padding: 24px 20px; }
  .inquiry-aftercare-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .inquiry-aftercare-num { width: 38px; height: 38px; font-size: 14px; }
  .inquiry-aftercare-list strong { font-size: 16px; }
}
@media (max-width: 640px) {
  .inquiry-studio-v2 { padding: 104px 0 56px; }
  .inquiry-studio-v2::before { display: none; }
  .inquiry-studio-topline { gap: 10px; margin-bottom: 32px; font-size: 10px; letter-spacing: 0.14em; }
  .inquiry-studio-mark { width: 34px; height: 34px; font-size: 14px; }
  .inquiry-studio-rule:not(:first-of-type) { display: none; }
  .inquiry-studio-stamp { flex: 1; }
  .inquiry-studio-year { width: 100%; text-align: left; }
  .inquiry-headline { font-size: clamp(36px, 10vw, 50px); }
  .inquiry-quick-list-v2 li { padding: 12px; gap: 12px; }
  .inquiry-quick-num { min-width: 42px; height: 32px; font-size: 12px; }
  .inquiry-quick-list-v2 strong { font-size: 16px; }
  .inquiry-detail-frame { height: 220px; }
  .contact-panel-row { grid-template-columns: 1fr auto; gap: 6px; padding: 14px 18px; }
  .contact-panel-row .contact-panel-label { grid-column: 1 / -1; }
  .contact-panel-row strong { font-size: 15px; }
  .inquiry-form-v2 { padding: 28px 22px !important; }
  .inquiry-form-heading { font-size: 28px !important; }
}

/* ==========================================================================
   SERVICES HERO v2 — editorial collage treatment
   ========================================================================== */
.services-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 88% 18%, rgba(175, 151, 123, 0.22), transparent 32%),
    radial-gradient(circle at 6% 78%, rgba(220, 219, 208, 0.32), transparent 30%),
    linear-gradient(120deg, var(--paper), var(--sand) 96%);
  border-bottom: 1px solid var(--gold-line);
}
.services-hero-v2::before,
.services-hero-v2::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.services-hero-v2::before {
  inset: 118px clamp(28px, 4vw, 64px) 60px;
  border: 1px solid rgba(175, 151, 123, 0.22);
  border-radius: 2px;
}
.services-hero-v2::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}
.services-hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(175, 151, 123, 0.18), transparent 70%),
    radial-gradient(50% 40% at 16% 80%, rgba(175, 151, 123, 0.12), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  animation: aboutAurora 16s ease-in-out infinite alternate;
}
.services-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
}
.services-hero-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(40px, 5vw, 72px);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.services-hero-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.4));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.services-hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  min-width: 24px;
}
.services-hero-rule:last-of-type {
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.services-hero-stamp { color: var(--brown); font-family: var(--sans); }
.services-hero-year { color: rgba(43, 33, 26, 0.7); font-family: var(--sans); }

.services-hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.services-hero-copy-v2 { min-width: 0; }
.services-hero-eyebrow { margin-bottom: 22px; color: var(--gold-deep); }
.services-hero-headline {
  max-width: 620px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.services-hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.services-hero-lede {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
  line-height: 1.65;
}
.services-hero-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 36px;
}
.services-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
}
.services-hero-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 7px 13px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.84), rgba(220, 219, 208, 0.22));
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-hero-collage {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}
.services-hero-card {
  position: absolute;
  margin: 0;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.services-hero-card-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow:
    0 30px 70px rgba(43, 33, 26, 0.18),
    0 0 0 7px rgba(255, 253, 247, 0.92),
    0 0 0 8px var(--gold-line);
}
.services-hero-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28, 24, 21, 0.18));
  pointer-events: none;
}
.services-hero-card-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.services-hero-card:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  z-index: 10;
}
.services-hero-card:hover .services-hero-card-frame img {
  transform: scale(1.05);
}
.services-hero-card figcaption {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(43, 33, 26, 0.1);
}
.services-hero-card figcaption span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.services-hero-card figcaption strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}
.services-hero-card-main {
  top: 30px;
  left: 0;
  right: 36%;
  z-index: 2;
  transform: rotate(-1.2deg);
}
.services-hero-card-main .services-hero-card-frame { height: 440px; }
.services-hero-card-top {
  top: 0;
  right: 0;
  width: 46%;
  z-index: 3;
  transform: rotate(2.4deg);
}
.services-hero-card-top .services-hero-card-frame { height: 220px; }
.services-hero-card-bottom {
  bottom: 0;
  right: 6%;
  width: 50%;
  z-index: 4;
  transform: rotate(-2deg);
}
.services-hero-card-bottom .services-hero-card-frame { height: 260px; }

.services-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  margin: clamp(60px, 7vw, 96px) 0 0;
  padding: 28px clamp(20px, 3vw, 36px);
  list-style: none;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.28));
  box-shadow:
    0 26px 70px rgba(43, 33, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.62);
}
.services-hero-stats li {
  display: grid;
  gap: 6px;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--gold-line);
}
.services-hero-stats li:first-child { padding-left: 0; border-left: 0; }
.services-hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  color: var(--gold-deep);
}
.services-hero-stat-label {
  color: rgba(43, 33, 26, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .services-hero-v2 { padding: 116px 0 68px; }
  .services-hero-v2::before { inset: 100px clamp(20px, 4vw, 40px) 44px; }
  .services-hero-grid-v2 { grid-template-columns: 1fr; gap: 56px; }
  .services-hero-collage { width: min(560px, 100%); margin: 0 auto; min-height: 540px; }
  .services-hero-card-main { right: 30%; }
  .services-hero-card-main .services-hero-card-frame { height: 380px; }
  .services-hero-card-top .services-hero-card-frame { height: 190px; }
  .services-hero-card-bottom .services-hero-card-frame { height: 220px; }
  .services-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .services-hero-stats li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .services-hero-stats li:nth-child(2) { padding-left: clamp(16px, 4vw, 24px); }
  .services-hero-topline { flex-wrap: wrap; }
  .services-hero-stamp, .services-hero-year { font-size: 10px; }
}
@media (max-width: 640px) {
  .services-hero-v2 { padding: 104px 0 56px; }
  .services-hero-v2::before { display: none; }
  .services-hero-topline { gap: 10px; margin-bottom: 32px; font-size: 10px; letter-spacing: 0.14em; }
  .services-hero-mark { width: 34px; height: 34px; font-size: 14px; }
  .services-hero-rule:not(:first-of-type) { display: none; }
  .services-hero-stamp { flex: 1; }
  .services-hero-year { width: 100%; text-align: left; }
  .services-hero-headline { font-size: clamp(38px, 10vw, 52px); }
  .services-hero-lede { font-size: 16px; }
  .services-hero-actions-v2 { gap: 16px; margin-bottom: 28px; }
  .services-hero-actions-v2 .button { width: 100%; justify-content: center; }
  .services-hero-tags { gap: 6px; padding-top: 18px; }
  .services-hero-tags span { padding: 6px 11px; font-size: 10px; }
  .services-hero-collage { min-height: 460px; }
  .services-hero-card-main { top: 24px; left: 0; right: 34%; }
  .services-hero-card-main .services-hero-card-frame { height: 300px; }
  .services-hero-card-top { width: 44%; }
  .services-hero-card-top .services-hero-card-frame { height: 150px; }
  .services-hero-card-bottom { width: 52%; right: 4%; }
  .services-hero-card-bottom .services-hero-card-frame { height: 178px; }
  .services-hero-card figcaption { margin-top: 10px; padding: 8px 12px; }
  .services-hero-card figcaption strong { font-size: 15px; }
  .services-hero-stats { grid-template-columns: 1fr; padding: 22px 24px; gap: 18px; }
  .services-hero-stats li { padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--gold-line); }
  .services-hero-stats li:first-child { padding-top: 0; border-top: 0; }
  .services-hero-stats li:nth-child(2) { padding-left: 0; }
}

/* ==========================================================================
   REVIEWS HERO v2 — editorial featured-quote treatment
   ========================================================================== */
.reviews-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 88% 18%, rgba(175, 151, 123, 0.22), transparent 32%),
    radial-gradient(circle at 6% 78%, rgba(220, 219, 208, 0.32), transparent 30%),
    linear-gradient(120deg, var(--paper), var(--sand) 96%);
  border-bottom: 1px solid var(--gold-line);
}
.reviews-hero-v2::before,
.reviews-hero-v2::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.reviews-hero-v2::before {
  inset: 118px clamp(28px, 4vw, 64px) 60px;
  border: 1px solid rgba(175, 151, 123, 0.22);
  border-radius: 2px;
}
.reviews-hero-v2::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}
.reviews-hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(175, 151, 123, 0.18), transparent 70%),
    radial-gradient(50% 40% at 16% 80%, rgba(175, 151, 123, 0.12), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  animation: aboutAurora 16s ease-in-out infinite alternate;
}
.reviews-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
}
.reviews-hero-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(40px, 5vw, 72px);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reviews-hero-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.4));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.reviews-hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  min-width: 24px;
}
.reviews-hero-rule:last-of-type {
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.reviews-hero-stamp { color: var(--brown); font-family: var(--sans); }
.reviews-hero-year { color: rgba(43, 33, 26, 0.7); font-family: var(--sans); }

.reviews-hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.reviews-hero-copy-v2 { min-width: 0; }
.reviews-hero-eyebrow { margin-bottom: 22px; color: var(--gold-deep); }
.reviews-hero-headline {
  max-width: 620px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.reviews-hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.reviews-hero-lede {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
  line-height: 1.65;
}
.reviews-hero-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 36px;
}
.reviews-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
}
.reviews-hero-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 7px 13px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.84), rgba(220, 219, 208, 0.22));
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Featured quote card */
.reviews-hero-feature {
  position: relative;
  margin: 0;
}
.reviews-hero-feature-card {
  position: relative;
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 44px);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--paper), var(--ivory));
  box-shadow:
    0 40px 90px rgba(43, 33, 26, 0.14),
    0 0 0 8px rgba(255, 253, 247, 0.7),
    0 0 0 9px var(--gold-line);
  overflow: hidden;
}
.reviews-hero-feature-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(220, 219, 208, 0.5);
  border-radius: 4px;
  pointer-events: none;
}
.reviews-hero-feature-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(175, 151, 123, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.reviews-hero-quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 600;
  line-height: 0.5;
  color: var(--gold-deep);
  opacity: 0.6;
  margin-bottom: 18px;
}
.reviews-hero-quote {
  margin: 0 0 32px;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.32;
  color: var(--ink);
  text-wrap: balance;
}
.reviews-hero-author {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--gold-line);
}
.reviews-hero-avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), #3a2f24);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.reviews-hero-author > div { display: grid; gap: 2px; min-width: 0; }
.reviews-hero-name {
  font-family: var(--serif);
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.reviews-hero-role {
  color: rgba(43, 33, 26, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.reviews-hero-stars {
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.reviews-hero-feature-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--ivory);
  box-shadow: 0 10px 24px rgba(107, 86, 67, 0.14);
}
.reviews-hero-feature-tag span {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.reviews-hero-feature-tag strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.reviews-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  margin: clamp(60px, 7vw, 96px) 0 0;
  padding: 28px clamp(20px, 3vw, 36px);
  list-style: none;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.28));
  box-shadow:
    0 26px 70px rgba(43, 33, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.62);
}
.reviews-hero-stats li {
  display: grid;
  gap: 6px;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--gold-line);
}
.reviews-hero-stats li:first-child { padding-left: 0; border-left: 0; }
.reviews-hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  color: var(--gold-deep);
}
.reviews-hero-stat-label {
  color: rgba(43, 33, 26, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .reviews-hero-v2 { padding: 116px 0 68px; }
  .reviews-hero-v2::before { inset: 100px clamp(20px, 4vw, 40px) 44px; }
  .reviews-hero-grid-v2 { grid-template-columns: 1fr; gap: 56px; }
  .reviews-hero-feature { max-width: 560px; margin: 0 auto; }
  .reviews-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .reviews-hero-stats li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .reviews-hero-stats li:nth-child(2) { padding-left: clamp(16px, 4vw, 24px); }
  .reviews-hero-topline { flex-wrap: wrap; }
  .reviews-hero-stamp, .reviews-hero-year { font-size: 10px; }
}
@media (max-width: 640px) {
  .reviews-hero-v2 { padding: 104px 0 56px; }
  .reviews-hero-v2::before { display: none; }
  .reviews-hero-topline { gap: 10px; margin-bottom: 32px; font-size: 10px; letter-spacing: 0.14em; }
  .reviews-hero-mark { width: 34px; height: 34px; font-size: 14px; }
  .reviews-hero-rule:not(:first-of-type) { display: none; }
  .reviews-hero-stamp { flex: 1; }
  .reviews-hero-year { width: 100%; text-align: left; }
  .reviews-hero-headline { font-size: clamp(38px, 10vw, 52px); }
  .reviews-hero-lede { font-size: 16px; }
  .reviews-hero-actions-v2 { gap: 16px; margin-bottom: 28px; }
  .reviews-hero-actions-v2 .button { width: 100%; justify-content: center; }
  .reviews-hero-tags { gap: 6px; padding-top: 18px; }
  .reviews-hero-tags span { padding: 6px 11px; font-size: 10px; }
  .reviews-hero-feature-card { padding: 36px 24px 28px; }
  .reviews-hero-quote { font-size: 20px; margin-bottom: 24px; }
  .reviews-hero-author { grid-template-columns: auto minmax(0, 1fr); gap: 12px; }
  .reviews-hero-stars { grid-column: 1 / -1; padding-top: 6px; }
  .reviews-hero-feature-tag { left: 16px; padding: 7px 13px; }
  .reviews-hero-stats { grid-template-columns: 1fr; padding: 22px 24px; gap: 18px; }
  .reviews-hero-stats li { padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--gold-line); }
  .reviews-hero-stats li:first-child { padding-top: 0; border-top: 0; }
  .reviews-hero-stats li:nth-child(2) { padding-left: 0; }
}

/* ==========================================================================
   PORTFOLIO HERO v2 — editorial collage treatment
   ========================================================================== */
.portfolio-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 88% 18%, rgba(175, 151, 123, 0.22), transparent 32%),
    radial-gradient(circle at 6% 78%, rgba(220, 219, 208, 0.32), transparent 30%),
    linear-gradient(120deg, var(--paper), var(--sand) 96%);
  border-bottom: 1px solid var(--gold-line);
}
.portfolio-hero-v2::before,
.portfolio-hero-v2::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.portfolio-hero-v2::before {
  inset: 118px clamp(28px, 4vw, 64px) 60px;
  border: 1px solid rgba(175, 151, 123, 0.22);
  border-radius: 2px;
}
.portfolio-hero-v2::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
}
.portfolio-hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(175, 151, 123, 0.18), transparent 70%),
    radial-gradient(50% 40% at 16% 80%, rgba(175, 151, 123, 0.12), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  animation: aboutAurora 16s ease-in-out infinite alternate;
}

.portfolio-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
}

/* Masthead strip */
.portfolio-hero-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(40px, 5vw, 72px);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.portfolio-hero-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.4));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(107, 86, 67, 0.12);
}
.portfolio-hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
  min-width: 24px;
}
.portfolio-hero-rule:last-of-type {
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.portfolio-hero-stamp { color: var(--brown); font-family: var(--sans); }
.portfolio-hero-year { color: rgba(43, 33, 26, 0.7); font-family: var(--sans); }

/* Main grid */
.portfolio-hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.portfolio-hero-copy-v2 { min-width: 0; }
.portfolio-hero-eyebrow {
  margin-bottom: 22px;
  color: var(--gold-deep);
}
.portfolio-hero-headline {
  max-width: 620px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.portfolio-hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.portfolio-hero-lede {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(43, 33, 26, 0.72);
  font-size: 17px;
  line-height: 1.65;
}
.portfolio-hero-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 36px;
}
.portfolio-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
}
.portfolio-hero-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 7px 13px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.84), rgba(220, 219, 208, 0.22));
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Collage */
.portfolio-hero-collage {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}
.portfolio-hero-card {
  position: absolute;
  margin: 0;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-hero-card-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow:
    0 30px 70px rgba(43, 33, 26, 0.18),
    0 0 0 7px rgba(255, 253, 247, 0.92),
    0 0 0 8px var(--gold-line);
}
.portfolio-hero-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28, 24, 21, 0.18));
  pointer-events: none;
}
.portfolio-hero-card-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-hero-card:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  z-index: 10;
}
.portfolio-hero-card:hover .portfolio-hero-card-frame img {
  transform: scale(1.05);
}
.portfolio-hero-card figcaption {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(43, 33, 26, 0.1);
}
.portfolio-hero-card figcaption span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.portfolio-hero-card figcaption strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}

/* Main card — large, dominant */
.portfolio-hero-card-main {
  top: 30px;
  left: 0;
  right: 36%;
  z-index: 2;
  transform: rotate(-1.2deg);
}
.portfolio-hero-card-main .portfolio-hero-card-frame {
  height: 440px;
}

/* Top right small card */
.portfolio-hero-card-top {
  top: 0;
  right: 0;
  width: 46%;
  z-index: 3;
  transform: rotate(2.4deg);
}
.portfolio-hero-card-top .portfolio-hero-card-frame {
  height: 220px;
}

/* Bottom right small card */
.portfolio-hero-card-bottom {
  bottom: 0;
  right: 6%;
  width: 50%;
  z-index: 4;
  transform: rotate(-2deg);
}
.portfolio-hero-card-bottom .portfolio-hero-card-frame {
  height: 260px;
}

/* Stats band */
.portfolio-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  margin: clamp(60px, 7vw, 96px) 0 0;
  padding: 28px clamp(20px, 3vw, 36px);
  list-style: none;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(220, 219, 208, 0.28));
  box-shadow:
    0 26px 70px rgba(43, 33, 26, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.62);
}
.portfolio-hero-stats li {
  display: grid;
  gap: 6px;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--gold-line);
}
.portfolio-hero-stats li:first-child {
  padding-left: 0;
  border-left: 0;
}
.portfolio-hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  color: var(--gold-deep);
}
.portfolio-hero-stat-label {
  color: rgba(43, 33, 26, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .portfolio-hero-v2 { padding: 116px 0 68px; }
  .portfolio-hero-v2::before { inset: 100px clamp(20px, 4vw, 40px) 44px; }
  .portfolio-hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .portfolio-hero-collage {
    width: min(560px, 100%);
    margin: 0 auto;
    min-height: 540px;
  }
  .portfolio-hero-card-main { right: 30%; }
  .portfolio-hero-card-main .portfolio-hero-card-frame { height: 380px; }
  .portfolio-hero-card-top .portfolio-hero-card-frame { height: 190px; }
  .portfolio-hero-card-bottom .portfolio-hero-card-frame { height: 220px; }
  .portfolio-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .portfolio-hero-stats li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .portfolio-hero-stats li:nth-child(2) {
    padding-left: clamp(16px, 4vw, 24px);
  }
  .portfolio-hero-topline { flex-wrap: wrap; }
  .portfolio-hero-stamp,
  .portfolio-hero-year { font-size: 10px; }
}

@media (max-width: 640px) {
  .portfolio-hero-v2 { padding: 104px 0 56px; }
  .portfolio-hero-v2::before { display: none; }
  .portfolio-hero-topline {
    gap: 10px;
    margin-bottom: 32px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .portfolio-hero-mark { width: 34px; height: 34px; font-size: 14px; }
  .portfolio-hero-rule:not(:first-of-type) { display: none; }
  .portfolio-hero-stamp { flex: 1; }
  .portfolio-hero-year { width: 100%; text-align: left; }
  .portfolio-hero-headline { font-size: clamp(38px, 10vw, 52px); }
  .portfolio-hero-lede { font-size: 16px; }
  .portfolio-hero-actions-v2 { gap: 16px; margin-bottom: 28px; }
  .portfolio-hero-actions-v2 .button { width: 100%; justify-content: center; }
  .portfolio-hero-tags { gap: 6px; padding-top: 18px; }
  .portfolio-hero-tags span { padding: 6px 11px; font-size: 10px; }
  .portfolio-hero-collage { min-height: 460px; }
  .portfolio-hero-card-main {
    top: 24px;
    left: 0;
    right: 34%;
  }
  .portfolio-hero-card-main .portfolio-hero-card-frame { height: 300px; }
  .portfolio-hero-card-top { width: 44%; }
  .portfolio-hero-card-top .portfolio-hero-card-frame { height: 150px; }
  .portfolio-hero-card-bottom { width: 52%; right: 4%; }
  .portfolio-hero-card-bottom .portfolio-hero-card-frame { height: 178px; }
  .portfolio-hero-card figcaption {
    margin-top: 10px;
    padding: 8px 12px;
  }
  .portfolio-hero-card figcaption strong { font-size: 15px; }
  .portfolio-hero-stats {
    grid-template-columns: 1fr;
    padding: 22px 24px;
    gap: 18px;
  }
  .portfolio-hero-stats li {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--gold-line);
  }
  .portfolio-hero-stats li:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .portfolio-hero-stats li:nth-child(2) {
    padding-left: 0;
  }
}

/* Accessibility — visible focus state for keyboard users */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
.button:focus-visible,
.nav-cta:focus-visible,
.filter-button:focus-visible {
  outline-offset: 4px;
}
.primary-nav a:focus-visible {
  outline-offset: 6px;
}

/* Skip-to-content link for keyboard and screen reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: top 180ms ease;
}
.skip-link:focus {
  top: 12px;
}

/* Remove decorative circle ornaments from inquiry and service detail cards */
.inquiry-form-v2 .form-intro-v2 {
  padding-right: 0 !important;
}
.inquiry-form-v2 .form-intro-v2::after,
.pricing-panel::after {
  display: none !important;
  content: none !important;
}
/* Remove auto-number pills from service detail cards */
.services-detail-section .service-panel > span:first-child {
  gap: 0 !important;
}
.services-detail-section .service-panel > span:first-child::before {
  display: none !important;
  content: none !important;
  counter-increment: none !important;
}
/* Align bridal party pricing cards with equal heading height */
.party-pricing-grid--compact > div {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
}
.party-pricing-grid--compact h3 {
  min-height: 58px;
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
}
.party-pricing-grid--compact .mini-price-list {
  margin-top: 0;
}
/* Slightly larger service menu numbering */
.services-detail-section .service-menu a::before {
  min-width: 20px;
  font-size: 15px !important;
  line-height: 1;
}
/* Compact inquiry checkbox and radio pills */
.inquiry-form-v2 .multi-select-options,
.inquiry-form-v2 .choice-group {
  gap: 9px !important;
}
.inquiry-form-v2 .choice-group label,
.inquiry-form-v2 .multi-select-options label {
  min-height: 34px !important;
  padding: 6px 12px !important;
  gap: 7px !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
}
.inquiry-form-v2 .choice-group input,
.inquiry-form-v2 .multi-select-options input {
  width: 12px !important;
  height: 12px !important;
  min-height: 0 !important;
  padding: 0 !important;
}
.inquiry-form-v2 .multi-select-options {
  padding: 16px !important;
}
/* Clean selected state for inquiry checkbox and radio controls */
.inquiry-form-v2 .choice-group input:focus,
.inquiry-form-v2 .choice-group input:focus-visible,
.inquiry-form-v2 .multi-select-options input:focus,
.inquiry-form-v2 .multi-select-options input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: currentColor !important;
}
.inquiry-form-v2 .choice-group label:has(input:checked),
.inquiry-form-v2 .multi-select-options label:has(input:checked) {
  border-color: rgba(107, 86, 67, 0.5) !important;
  background: rgba(220, 219, 208, 0.36) !important;
  color: var(--brown) !important;
}
.inquiry-form-v2 .choice-group label:has(input:focus-visible),
.inquiry-form-v2 .multi-select-options label:has(input:focus-visible) {
  box-shadow: 0 0 0 2px rgba(175, 151, 123, 0.16) !important;
}
/* Hide inquiry section count labels */
.inquiry-form-v2 .form-section-title span,
.inquiry-form-v2 .form-section-title::after {
  display: none !important;
  content: none !important;
}
/* Add breathing room to review location tags */
.testimonial-card-premium .testimonial-author-info span {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 5px 10px !important;
  border: 1px solid rgba(175, 151, 123, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.58);
  line-height: 1.15 !important;
}
/* Ensure portfolio filters fully hide non-matching cards */
[data-portfolio-gallery] .portfolio-card[hidden],
[data-portfolio-gallery] .portfolio-card.hidden {
  display: none !important;
}
/* Reduce bridal party pricing heading gap */
.party-pricing-grid--compact h3 {
  min-height: 42px !important;
  margin-bottom: 6px !important;
  line-height: 1.05;
}
/* Vertically center single-line bridal party headings */
.party-pricing-grid--compact h3 {
  align-items: center !important;
}
/* Remove decorative circle from Instagram section */
.instagram-section::before {
  display: none !important;
  content: none !important;
}
/* Use simple dash markers in the inquiry aftercare list */
.inquiry-aftercare-list li {
  grid-template-columns: 22px minmax(0, 1fr) !important;
}
.inquiry-aftercare-num {
  width: 22px !important;
  height: auto !important;
  min-height: 1px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--gold-deep) !important;
  font-size: 0 !important;
  line-height: 1 !important;
}
.inquiry-aftercare-num::before {
  content: "-";
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
/* Center and lengthen inquiry aftercare dash markers */
.inquiry-aftercare-list li {
  align-items: center !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
}
.inquiry-aftercare-num {
  align-self: center !important;
  justify-self: center !important;
  width: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.inquiry-aftercare-num::before {
  content: "" !important;
  width: 22px;
  height: 1px;
  background: var(--gold-deep);
  display: block;
}
