/* ============================================================
   DyeNamic Strands — Hair Studio
   Quiet-luxury editorial · ivory / ink / muted gold
   ============================================================ */

:root {
  --ivory: #f4efe7;
  --paper: #faf7f1;
  --parchment: #ece4d6;
  --linen: #ddd2bf;
  --taupe: #a2937c;
  --gold: #a8854e;
  --gold-deep: #8a6a3b;
  /* gold for dark bands — the mid gold only reaches ~4.3:1 on navy, this clears 4.5:1 */
  --gold-light: #c9a468;
  --ink: #23201a;
  --espresso: #3a332b;
  --navy: #1d2430;
  --navy-soft: #29313f;
  --white: #fffdf8;

  --serif: "Marcellus", "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --quote: "Cormorant Garamond", Georgia, serif;

  --hairline: 1px solid rgba(35, 32, 26, 0.14);
  --hairline-light: 1px solid rgba(244, 239, 231, 0.18);
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* film-grain atmosphere */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

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

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

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: var(--espresso);
  max-width: 34em;
}

.num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--taupe);
  letter-spacing: 0.18em;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover { background: var(--ink); color: var(--ivory); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }

.btn--ghost-light {
  border-color: rgba(244, 239, 231, 0.5);
  color: var(--ivory);
}

.btn--ghost-light:hover { background: var(--ivory); color: var(--navy); }

.textlink {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid transparent;
  transition: gap 0.3s var(--ease);
}

.textlink::after { content: "→"; font-family: var(--serif); letter-spacing: 0; }
.textlink:hover { gap: 1rem; }

/* ---------- announcement + header ---------- */

.topline {
  background: var(--navy);
  color: rgba(244, 239, 231, 0.75);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem var(--gutter);
}

.topline a { color: var(--ivory); border-bottom: 1px solid rgba(244, 239, 231, 0.35); }

.site-head {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(244, 239, 231, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: var(--hairline);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(35, 32, 26, 0.08);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-name span { color: var(--gold-deep); }

.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.28rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
}

.site-nav a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-block: 0.4rem;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.site-nav .btn { padding: 0.75rem 1.4rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  margin-block: 6px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--hairline);
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vh, 6.5rem) clamp(3rem, 7vh, 5.5rem);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  margin-block: 1.4rem 1.6rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-deep);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.hero .lede { margin-bottom: 2.3rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-figure { position: relative; }

.hero-figure .frame {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  border: 1px solid rgba(35, 32, 26, 0.16);
  box-shadow: 24px 24px 0 -1px var(--parchment), 24px 24px 0 0 rgba(35, 32, 26, 0.12);
}

.hero-figure img.photo { aspect-ratio: 4 / 5.4; object-fit: cover; width: 100%; }

.hero-figure .seal {
  position: absolute;
  left: -34px;
  bottom: 42px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(35, 32, 26, 0.22);
  transform: rotate(-4deg);
}

@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: -8px;
  font-family: var(--quote);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--taupe);
  transform: rotate(-2deg);
}

/* staggered entrance (only when the motion layer is active; no-JS stays visible) */
html.motion-on [data-rise] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.motion-on [data-rise].is-in { opacity: 1; transform: none; }

/* ---------- marquee ---------- */

.marquee {
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 1px solid rgba(35, 32, 26, 0.35);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 36s linear infinite;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee-track i { font-style: normal; color: var(--gold); }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- product line strip ---------- */

.brandstrip { padding-block: clamp(3rem, 6vh, 4.5rem) 0; }

.brandstrip-lede {
  max-width: 34em;
  margin: 1.1rem auto clamp(2rem, 4vh, 2.8rem);
  text-align: center;
  color: var(--espresso);
}

.marquee--brands {
  background: transparent;
  border-block: var(--hairline);
  padding-block: 1.35rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee--brands .marquee-track {
  animation-duration: 54s;
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  color: var(--ink);
}

/* ---------- list sign-up page ---------- */

.vip-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.label-as-text {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.label-as-text small {
  display: block;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--taupe);
}

.bday-row { display: flex; gap: 0.8rem; }
.bday-row select { flex: 2; }
.bday-row input { flex: 1; min-width: 5.5rem; }

/* .consent is a .field label, so it inherits the uppercase micro-label styling —
   opt back out: consent wording has to read as a plain sentence, not a caption. */
.field label.consent {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.6;
  color: var(--ink);
}

.consent input {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  margin-top: 0.2rem;
  accent-color: var(--gold-deep);
}

.vip-aside {
  border: var(--hairline);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--paper);
}

.vip-aside h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}

.vip-list { list-style: none; }

.vip-list li {
  padding-block: 0.9rem;
  border-top: var(--hairline);
  font-size: 0.96rem;
  color: var(--espresso);
}

.vip-list li b { color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .vip-wrap { grid-template-columns: 1fr; }
}

/* ---------- press credit ---------- */

.press {
  padding-block: clamp(3.2rem, 7vh, 5rem);
  text-align: center;
  border-block: var(--hairline);
}

.press-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.press-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  margin-top: 0.9rem;
  color: var(--ink);
}

.press-note {
  max-width: 34em;
  margin: 1.1rem auto 0;
  color: var(--espresso);
  font-size: 0.98rem;
}

.press-inline {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.press-inline em {
  font-family: var(--serif);
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}

/* ---------- sections ---------- */

.section { padding-block: clamp(4rem, 9vh, 7rem); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.4rem, 5vh, 3.6rem);
}

.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: 1.1rem; }

.section--parchment { background: var(--parchment); border-block: var(--hairline); }

.section--navy {
  background: var(--navy);
  color: var(--ivory);
  border-block: 1px solid rgba(0, 0, 0, 0.4);
}

.section--navy .eyebrow,
.cta-band .eyebrow { color: var(--gold-light); }
.section--navy .lede { color: rgba(244, 239, 231, 0.78); }

/* stats band */
.stats {
  border-top: var(--hairline);
  background: var(--paper);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 0;
}

.stat {
  padding: 1.9rem 1.4rem;
  text-align: center;
  border-left: var(--hairline);
}

.stat:first-child { border-left: none; }

.stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--ink);
}

.stat small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* feature split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 6vw, 5rem);
  align-items: center;
}

.split h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-block: 1.2rem 1.4rem; }

.split .figure {
  position: relative;
}

.split .figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border: 1px solid rgba(35, 32, 26, 0.16);
}

.split .figure::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold);
  opacity: 0.45;
  pointer-events: none;
}

.section--navy .split .figure img { border-color: rgba(244, 239, 231, 0.2); }

.method-list { list-style: none; margin-block: 1.8rem 2.2rem; }

.method-list li {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(244, 239, 231, 0.14);
  font-weight: 300;
  font-size: 1.02rem;
}

.method-list li:first-child { border-top: 1px solid rgba(244, 239, 231, 0.14); }

.method-list .num { color: var(--gold); font-size: 0.8rem; }

.method-list b { font-weight: 500; letter-spacing: 0.04em; }

.footnote {
  font-size: 0.86rem;
  color: rgba(244, 239, 231, 0.6);
  font-weight: 300;
  max-width: 32em;
}

.footnote--dark { color: var(--taupe); }

/* menu (services) */
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.menu-group { break-inside: avoid; margin-bottom: 2.6rem; }

.menu-group h3 {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.menu-group h3::after { content: ""; flex: 1; border-bottom: var(--hairline); }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-block: 0.5rem;
}

.menu-item .dots { flex: 1; border-bottom: 1px dotted rgba(35, 32, 26, 0.35); transform: translateY(-4px); }

.menu-item .price {
  font-family: var(--serif);
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-item small {
  display: block;
  font-size: 0.82rem;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* pull quote */
.pullquote {
  position: relative;
  overflow: hidden;
}

.pullquote .wrap {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.pullquote img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(35, 32, 26, 0.16);
  filter: saturate(0.05) contrast(1.04);
}

.pullquote blockquote {
  font-family: var(--quote);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.12;
  color: var(--ink);
}

/* Matched pair. A lone oversized opening mark stacked above the line reads as a
   typo rather than an ornament when the text is itself a spoken quote. */
.pullquote blockquote::before,
.pullquote blockquote::after {
  color: var(--gold);
  font-size: 1.05em;
}

.pullquote blockquote::before { content: "“"; }
.pullquote blockquote::after { content: "”"; }

.pullquote figcaption {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* work strip */
.workstrip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--taupe) transparent;
}

.workstrip figure {
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.workstrip img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  transition: transform 0.8s var(--ease);
}

.workstrip figure:hover img { transform: scale(1.045); }

.workstrip figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(29, 36, 48, 0.75), transparent);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* gallery grid page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.gallery-grid figure { position: relative; overflow: hidden; }

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(29, 36, 48, 0.72), transparent);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}

.quote-card {
  border-top: 2px solid var(--gold);
  padding-top: 1.6rem;
}

.quote-card p {
  font-family: var(--quote);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.35;
}

.quote-card cite {
  display: block;
  margin-top: 1.3rem;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

.stars { color: var(--gold); letter-spacing: 0.25em; font-size: 0.8rem; }

/* visit */
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 6vw, 5rem);
}

.hours { list-style: none; }

.hours li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.68rem;
  border-bottom: var(--hairline);
  font-size: 0.98rem;
}

.hours li span:first-child {
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  width: 7.5rem;
  flex: none;
}

.hours li .dots { flex: 1; border-bottom: 1px dotted rgba(35, 32, 26, 0.3); transform: translateY(-4px); }

.hours .closed { color: var(--taupe); }

.hours li em {
  display: block;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: right;
  margin-top: 0.2rem;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }

.chip {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(35, 32, 26, 0.25);
  border-radius: 999px;
  color: var(--espresso);
}

.address-card h3 { font-size: 1.5rem; margin-bottom: 0.9rem; }

.movenote {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tel-cta {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  margin-top: 0.4rem;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "DS";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 38rem;
  line-height: 1;
  color: rgba(244, 239, 231, 0.03);
  pointer-events: none;
}

.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-block: 1.3rem 1.1rem; }

/* .cta-band is dark but doesn't carry .section--navy, so .lede kept its dark
   --espresso and sat at ~1.2:1 on navy — effectively invisible. */
.cta-band .lede {
  margin-inline: auto;
  margin-bottom: 2.4rem;
  color: rgba(244, 239, 231, 0.86);
}

/* ---------- forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.6rem;
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--espresso);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(35, 32, 26, 0.22);
  padding: 0.9rem 1rem;
  border-radius: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 133, 78, 0.18);
}

.form-note { font-size: 0.85rem; color: var(--taupe); }

.form-status {
  display: none;
  padding: 1rem 1.2rem;
  border: 1px solid var(--gold);
  font-size: 0.95rem;
}

.form-status.is-ok { display: block; background: rgba(168, 133, 78, 0.08); color: var(--gold-deep); }
.form-status.is-err { display: block; background: rgba(150, 40, 30, 0.06); border-color: rgba(150, 40, 30, 0.5); color: #7c2d22; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FAQ / policies ---------- */

.policy-list { max-width: 46rem; }

details.policy {
  border-bottom: var(--hairline);
}

details.policy summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 1.15rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}

details.policy summary::-webkit-details-marker { display: none; }

details.policy summary::after {
  content: "+";
  font-family: var(--serif);
  color: var(--gold-deep);
  font-size: 1.3rem;
  transition: transform 0.3s var(--ease);
}

details.policy[open] summary::after { transform: rotate(45deg); }

details.policy p { padding-bottom: 1.2rem; color: var(--espresso); max-width: 40em; }

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  border-bottom: var(--hairline);
  padding-block: clamp(3rem, 7vh, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-top: 1.2rem; }

.page-hero .lede { margin-top: 1.3rem; }

.page-hero--art .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-hero--art img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border: 1px solid rgba(35, 32, 26, 0.16);
}

/* certificate */
.cert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cert img {
  border: 1px solid rgba(35, 32, 26, 0.18);
  box-shadow: 18px 18px 0 -1px var(--parchment), 18px 18px 0 0 rgba(35, 32, 26, 0.1);
}

/* ---------- footer ---------- */

.site-foot {
  background: var(--navy);
  color: rgba(244, 239, 231, 0.72);
  padding-block: clamp(3rem, 7vh, 4.5rem) 1.8rem;
  font-size: 0.92rem;
  font-weight: 300;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.6rem;
  border-bottom: var(--hairline-light);
}

.foot-brand img { width: 74px; height: 74px; border-radius: 50%; margin-bottom: 1.1rem; }

.foot-brand p { max-width: 26em; }

.site-foot h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.site-foot ul { list-style: none; }

.site-foot li { padding-block: 0.28rem; }

.site-foot a:hover { color: var(--ivory); }

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 231, 0.45);
}

.foot-legal a { color: rgba(244, 239, 231, 0.65); }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { max-width: 430px; }
  .split, .pullquote .wrap, .visit-grid, .cert, .page-hero--art .wrap { grid-template-columns: 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: var(--hairline); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* The brand lockup plus the full nav needs ~1100px before the name starts wrapping
   into the links, and on iPad portrait the row overflowed the page sideways by
   ~43px. So the hamburger has to take over well above the phone breakpoint. */
@media (max-width: 1040px) {
  /* backdrop-filter makes .site-head a containing block for position:fixed, which
     trapped the overlay nav inside the 79px-tall header instead of the viewport.
     The header background is already 92% opaque, so dropping the blur here is free. */
  .site-head {
    backdrop-filter: none;
    background: var(--ivory);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    z-index: 800;
  }

  .site-nav.is-open { transform: none; }

  .site-nav a:not(.btn) { font-size: 1rem; }

  .nav-toggle { display: block; position: relative; z-index: 850; }

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

@media (max-width: 760px) {
  .form-grid { grid-template-columns: 1fr; }

  .hero-figure .seal { left: auto; right: -18px; width: 88px; height: 88px; }

  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOTION & INTERACTION LAYER
   ============================================================ */

/* page enter / leave */
body { animation: pageIn 0.5s ease both; }
body.is-leaving { opacity: 0; transition: opacity 0.22s ease; }
@keyframes pageIn { from { opacity: 0; } }

/* scroll progress hairline (injected) */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 5;
  pointer-events: none;
}

/* condensing header */
.masthead { transition: padding 0.35s var(--ease); }
.brand img { transition: transform 0.35s var(--ease); }
.site-head { transition: box-shadow 0.35s var(--ease); }
.site-head.is-scrolled .masthead { padding-block: 0.45rem; }
.site-head.is-scrolled .brand img { transform: scale(0.86); }
.site-head.is-scrolled { box-shadow: 0 14px 34px -22px rgba(35, 32, 26, 0.45); }

/* button sheen sweep */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 253, 248, 0.38) 50%, transparent 58%);
  transform: translateX(-130%);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); transition: transform 0.7s ease; }

/* marquee: pause on hover */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* workstrip: edge fades + grab cursor */
.workstrip {
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.workstrip.is-grabbing { cursor: grabbing; scroll-snap-type: none; }
.workstrip.is-grabbing img { transform: none !important; }

/* gallery hover ring */
.gallery-grid figure::after,
.workstrip figure::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(244, 239, 231, 0.65);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.gallery-grid figure:hover::after,
.workstrip figure:hover::after { opacity: 1; transform: none; }

/* animated policy accordions */
details.policy { overflow: hidden; }
details.policy .policy-body { padding-bottom: 0; }

/* cursor accent (injected, fine pointers only) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3000;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(168, 133, 78, 0.55);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s ease;
}
body.cursor-on-link .cursor-ring { width: 52px; height: 52px; border-color: rgba(168, 133, 78, 0.9); }
body.cursor-hidden .cursor-dot,
body.cursor-hidden .cursor-ring { opacity: 0; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* Motion gating: js/main.js stamps html.motion-on or html.motion-off based on
   prefers-reduced-motion, overridable with ?motion=on|off|auto (persisted).
   No JS → neither class → fully visible static page. */

/* hero choreography */
.hl { display: block; overflow: hidden; }
html.motion-on .hl-inner { display: inline-block; transform: translateY(118%); }
html.motion-on body.is-loaded .hl-inner { transform: none; transition: transform 1s var(--ease); }
html.motion-on .hero h1 .hl:nth-child(1) .hl-inner { transition-delay: 0.12s; }
html.motion-on .hero h1 .hl:nth-child(2) .hl-inner { transition-delay: 0.24s; }

html.motion-on .hero-item { opacity: 0; transform: translateY(24px); }
html.motion-on body.is-loaded .hero-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease) var(--d, 0s), transform 0.85s var(--ease) var(--d, 0s);
}

html.motion-on .hero-figure .frame { clip-path: inset(100% 0 0 0 round 999px 999px 0 0); }
html.motion-on body.is-loaded .hero-figure .frame {
  clip-path: inset(0 0 0 0 round 999px 999px 0 0);
  transition: clip-path 1.15s var(--ease) 0.3s;
}
html.motion-on .hero-figure .frame img.photo { transform: scale(1.12); }
html.motion-on body.is-loaded .hero-figure .frame img.photo { transform: none; transition: transform 1.7s var(--ease) 0.3s; }

html.motion-on .hero-figure .seal { opacity: 0; }
html.motion-on body.is-loaded .hero-figure .seal {
  animation:
    sealIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both,
    sway 7s ease-in-out 1.9s infinite;
}
@keyframes sealIn {
  from { opacity: 0; transform: scale(0.5) rotate(-32deg); }
  to { opacity: 1; transform: scale(1) rotate(-4deg); }
}

/* curtain image reveals */
html.motion-on .curtain { clip-path: inset(80% 0 0 0); opacity: 0; }
html.motion-on .curtain.is-revealed {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: clip-path 1.05s var(--ease) var(--cd, 0s), opacity 0.55s ease var(--cd, 0s);
}

/* Calm mode: suppress continuous/large movement, keep the page fully visible
   and interaction feedback intact. Nothing is ever hidden here. */
html.motion-off body { animation: none; }
html.motion-off .marquee-track { animation: none; transform: none; }
/* brand names are real content, so make them reachable when the marquee is still */
html.motion-off .marquee--brands { overflow-x: auto; }
html.motion-off .marquee--brands .marquee-track { width: auto; }
html.motion-off .marquee--brands .marquee-track span[aria-hidden] { display: none; }
html.motion-off .hero-figure .seal { animation: none; }
html.motion-off .workstrip img,
html.motion-off .gallery-grid img { transition: none; }
html.motion-off .cursor-dot,
html.motion-off .cursor-ring { display: none; }
