:root {
  --cream: #f4eee6;
  --paper: #fbf8f3;
  --stone: #dfd4c8;
  --ink: #25201e;
  --muted: #6c625d;
  --wine: #5a2035;
  --wine-deep: #35141f;
  --wine-soft: #764257;
  --line: rgba(37, 32, 30, 0.20);
  --line-light: rgba(255, 249, 242, 0.26);
  --gutter: clamp(18px, 3.1vw, 72px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden }
img { display: block; max-width: 100%; height: auto }
a { color: inherit; text-decoration: none }
button, input, textarea { font: inherit }
button { color: inherit }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--wine);
  color: white;
}
.skip-link:focus { top: 12px }

.section-anchor { scroll-margin-top: calc(var(--header-h) + 24px) }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 238, 230, 0.97);
  border-bottom: 1px solid rgba(37, 32, 30, 0.12);
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-inline: var(--gutter);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 236px }
.brand img { width: 46px; height: 46px }
.brand-copy { display: grid; gap: 1px }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.1;
}
.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.1vw, 34px) }
.desktop-nav a,
.footer-top,
.site-footer nav a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after { transform: scaleX(1) }
.desktop-nav a[aria-current="location"] { color: var(--wine) }
.header-actions { display: flex; align-items: center; gap: 12px }
.primary-cta,
.button-solid,
.brief-submit,
.mobile-menu-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--wine);
  background: var(--wine);
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.primary-cta:hover,
.button-solid:hover,
.brief-submit:hover,
.mobile-menu-cta:hover { background: var(--wine-deep); transform: translateY(-1px) }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 1px; background: var(--ink); transition: transform .2s ease }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg) }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg) }
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 45;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transform-origin: top;
}
.mobile-menu[hidden] { display: none }
.mobile-menu.is-opening { animation: menu-open .22s ease both }
.mobile-menu-inner { padding: 24px var(--gutter) 30px }
.mobile-menu nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; border-top: 1px solid var(--line) }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 23px }
.mobile-menu-cta { margin-top: 22px; width: 100% }
.noscript-nav { padding: 12px var(--gutter); display: flex; flex-wrap: wrap; gap: 14px 22px; border-top: 1px solid var(--line) }
.noscript-nav a { font-size: 13px; text-transform: uppercase; letter-spacing: .06em }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  position: relative;
  min-height: 660px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-copy {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 118px) clamp(28px, 5.1vw, 98px) clamp(48px, 6vw, 94px) var(--gutter);
  min-width: 0;
}
.kicker,
.section-index,
.case-label,
.result-label,
.summary-label,
.map-kicker {
  margin: 0;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.section-index-light { color: #dbc1ca }
.hero h1 {
  margin: 18px 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 8.2cqw, 92px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero h1 span { display: block }
.hero-lead { max-width: 48ch; margin: 0; color: var(--muted); font-size: clamp(17px, 1.3vw, 21px) }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 32px }
.button-text { display: inline-flex; gap: 10px; align-items: center; padding-block: 10px; border-bottom: 1px solid var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .08em }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line) }
.hero-meta span { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase }
.hero-image { margin: 0; position: relative; align-self: stretch; background: #d9cec1 }
.hero-image picture, .hero-image img { width: 100%; height: 100% }
.hero-image img { object-fit: cover; object-position: center center }
.hero-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  max-width: 260px;
  padding: 10px 12px;
  background: rgba(244, 238, 230, .9);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-vertical {
  position: absolute;
  right: 13px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.manifest {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .68fr) minmax(100px, .18fr);
  gap: clamp(30px, 4vw, 80px);
  padding: clamp(92px, 9vw, 160px) var(--gutter) clamp(64px, 7vw, 120px);
  align-items: center;
  background: var(--cream);
}
.manifest-copy { max-width: 880px }
.manifest h2,
.projects h2,
.mood h2,
.services h2,
.approach h2,
.gallery h2,
.team h2,
.reviews h2,
.faq h2,
.brief h2,
.contact h2 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.03em;
  font-size: clamp(40px, 4.3vw, 76px);
  text-wrap: balance;
}
.manifest-lead { max-width: 55ch; margin: 28px 0 0; font-size: clamp(18px, 1.35vw, 22px); color: var(--muted) }
.manifest-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line) }
.manifest-notes p { margin: 0; color: var(--muted); font-size: 15px }
.manifest-image { margin: 0; position: relative }
.manifest-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover }
.manifest-image figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em }
.manifest-rail { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding-block: 12px; border-left: 1px solid var(--line) }
.manifest-rail span { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 11px; letter-spacing: .22em; color: var(--wine) }
.manifest-rail strong { font-size: 12px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted) }

.projects { padding: clamp(70px, 7vw, 120px) var(--gutter) clamp(90px, 9vw, 160px); background: #efe6dc }
.projects-head,
.gallery-head,
.services-head,
.reviews-head,
.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .54fr);
  gap: clamp(34px, 6.5vw, 124px);
  align-items: start;
  margin-bottom: clamp(42px, 5.5vw, 82px);
}
.projects-head > div,
.gallery-head > div,
.services-head > .section-heading-block,
.reviews-head > .section-heading-block,
.faq-head > .section-heading-block { min-width: 0; max-width: 980px }
.projects-head > p,
.services-head > p,
.gallery-head > p,
.reviews-head > p,
.faq-head > p,
.section-head-note {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.section-heading-block h2,
.projects-head h2,
.gallery-head h2 { max-width: 100% }
.project-layout { display: grid; grid-template-columns: 1.3fr .72fr .66fr; gap: clamp(18px, 2vw, 34px); align-items: start }
.project { min-width: 0 }
.project-media { display: block; position: relative; overflow: hidden; background: #d4c8bb }
.project-media picture, .project-media img { width: 100% }
.project-media img { transition: transform .45s ease }
.project-media:hover img { transform: scale(1.018) }
.project-main .project-media img { aspect-ratio: 3 / 2; object-fit: cover }
.project-secondary .project-media img { aspect-ratio: 3 / 2; object-fit: cover }
.project-tertiary .project-media img { aspect-ratio: 4 / 3; object-fit: cover }
.project-secondary { margin-top: clamp(90px, 9vw, 170px) }
.project-tertiary { margin-top: clamp(24px, 3vw, 58px) }
.project-caption { display: grid; gap: 10px; margin-top: 15px; padding-top: 12px; border-top: 1px solid var(--line) }
.project-caption > div { display: flex; align-items: baseline; gap: 12px }
.project-number { color: var(--wine); font-size: 12px; letter-spacing: .1em }
.project-caption h3 { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2vw, 34px); font-weight: 400 }
.project-caption p { margin: 0; color: var(--muted); font-size: 14px }
.project-caption a { justify-self: start; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: 12px; letter-spacing: .07em; text-transform: uppercase }
.case-studies { margin-top: clamp(66px, 7vw, 120px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line) }
.case-study { padding: 30px clamp(18px, 2.2vw, 38px); border-right: 1px solid var(--line) }
.case-study:last-child { border-right: 0 }
.case-study h3 { margin: 10px 0 22px; font-family: var(--serif); font-size: 30px; font-weight: 400 }
.case-study dl { margin: 0; display: grid; gap: 18px }
.case-study dl div { display: grid; gap: 4px }
.case-study dt { font-size: 11px; color: var(--wine); text-transform: uppercase; letter-spacing: .09em }
.case-study dd { margin: 0; color: var(--muted); font-size: 15px }

.mood { background: var(--wine-deep); color: #f8f0e9; padding: clamp(72px, 8vw, 132px) var(--gutter) }
.mood-inner { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.15fr) minmax(320px, .78fr); gap: clamp(30px, 4vw, 74px); align-items: start }
.mood-heading { position: sticky; top: calc(var(--header-h) + 30px) }
.mood-heading h2 { color: #fff4ed; font-size: clamp(42px, 4.8vw, 82px) }
.mood-heading > p:last-child { color: #d8c2c8; max-width: 38ch; margin: 24px 0 0 }
.mood-form { border-top: 1px solid var(--line-light) }
.mood-progress { display: none }
.mood-form fieldset { border: 0; margin: 0; padding: 24px 0 28px; border-bottom: 1px solid var(--line-light) }
.mood-form legend { padding: 0; margin-bottom: 16px; color: #fff; font-family: var(--serif); font-size: 23px }
.radio-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 18px }
.radio-row-four { grid-template-columns: repeat(4, minmax(0, 1fr)) }
.radio-row label { position: relative; display: flex; align-items: center; gap: 10px; min-height: 44px; cursor: pointer; color: #d8c2c8 }
.radio-row input { position: absolute; opacity: 0; pointer-events: none }
.radio-row span { display: flex; gap: 10px; align-items: center; width: 100%; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px }
.radio-row span::before { content: ""; width: 8px; height: 8px; border: 1px solid currentColor; transform: rotate(45deg); flex: 0 0 auto }
.radio-row input:checked + span { color: #fff }
.radio-row input:checked + span::before { background: #fff }
.radio-row input:focus-visible + span { outline: 2px solid #fff; outline-offset: 3px }
.mood-summary { background: var(--cream); color: var(--ink); padding: clamp(26px, 3vw, 44px); border-left: 8px solid var(--wine-soft) }
.mood-summary h3 { margin: 12px 0 24px; font-family: var(--serif); font-size: clamp(34px, 3vw, 52px); font-weight: 400; line-height: 1.02 }
.summary-block { display: grid; gap: 9px; padding: 17px 0; border-top: 1px solid var(--line) }
.summary-block > span { color: var(--wine); font-size: 11px; text-transform: uppercase; letter-spacing: .09em }
.summary-block strong { font-size: 15px; font-weight: 600; line-height: 1.5 }
.swatches { display: grid; gap: 8px }
.swatch { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; font-size: 13px }
.swatch-color { width: 34px; height: 34px; border: 1px solid rgba(0,0,0,.14) }
.swatch-name { font-weight: 600 }
.swatch-code { color: var(--muted); font-size: 11px }
.summary-actions { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 22px }
.summary-actions button,
.mood-mobile-nav button,
.result-actions button,
.result-actions a,
.map-placeholder button,
.map-placeholder a {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 7px 0;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.summary-status { min-height: 24px; margin: 12px 0 0; color: var(--wine); font-size: 13px }
.mood-mobile-nav { display: none }
.mood-noscript { grid-column: 2 / 4; color: #d8c2c8 }

.services { padding: clamp(96px, 9vw, 164px) var(--gutter); background: var(--paper) }
.services-head { margin-bottom: clamp(44px, 5vw, 78px) }
.services-head h2 { max-width: 100% }
.services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.service,
.service-featured,
.service-featured + .service-featured,
.service-production {
  grid-column: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 20px;
  min-height: clamp(250px, 22vw, 340px);
  padding: clamp(24px, 2.5vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
  background: transparent;
}
.service:nth-child(4n) { border-right: 0 }
.service:nth-child(n+5) { border-bottom: 0 }
.service > span {
  font-family: var(--serif);
  font-size: clamp(42px, 3.6vw, 66px);
  line-height: .9;
  color: rgba(90, 32, 53, .28);
}
.service > div { margin-top: auto }
.service h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(23px, 1.7vw, 31px); font-weight: 400; line-height: 1.08; text-wrap: balance }
.service p { margin: 0; color: var(--muted); max-width: 34ch; font-size: 15px }
.service-featured { background: linear-gradient(145deg, rgba(90,32,53,.06), rgba(90,32,53,0) 62%) }
.service:hover { background: rgba(90, 32, 53, .035) }

.approach { display: grid; grid-template-columns: minmax(0, 58%) minmax(0, 42%); background: #e9ded3 }
.approach-image { margin: 0; position: relative; align-self: center }
.approach-image picture, .approach-image img { width: 100%; height: auto }
.approach-image img { object-fit: contain }
.approach-image figcaption { position: absolute; left: var(--gutter); bottom: 22px; background: rgba(244,238,230,.92); padding: 8px 10px; font-size: 11px; text-transform: uppercase; letter-spacing: .07em }
.approach-copy { padding: clamp(64px, 7vw, 116px) var(--gutter) clamp(64px, 7vw, 116px) clamp(34px, 5vw, 90px) }
.approach-copy h2 { font-size: clamp(40px, 4vw, 70px) }
.approach-copy ol { list-style: none; margin: 46px 0 0; padding: 0; border-top: 2px solid var(--wine) }
.approach-copy li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line) }
.approach-copy li > span { color: var(--wine); font-family: var(--serif); font-size: 22px }
.approach-copy h3 { margin: 0 0 5px; font-size: 16px }
.approach-copy p { margin: 0; color: var(--muted); font-size: 15px }

.gallery { padding: clamp(86px, 9vw, 156px) var(--gutter); background: var(--cream); overflow: clip }
.gallery-head { margin-bottom: 38px }
.gallery-collage { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(14px, 2vw, 30px); align-items: start }
.gallery-item { position: relative; display: block }
.gallery-item img { width: 100%; transition: filter .25s ease, transform .35s ease }
.gallery-item:hover img { transform: translateY(-3px); filter: contrast(1.02) }
.gallery-item > span { display: block; padding-top: 9px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em }
.gallery-light { grid-column: 1 / 9 }
.gallery-light img { aspect-ratio: 3 / 2; object-fit: cover }
.gallery-bouquet { grid-column: 9 / 13; margin-top: clamp(120px, 11vw, 210px) }
.gallery-bouquet img { aspect-ratio: 4 / 5; object-fit: cover }
.lightbox { width: min(94vw, 1400px); border: 0; padding: 0; background: #100c0d; color: white }
.lightbox::backdrop { background: rgba(20, 12, 15, .88) }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; background: #100c0d }
.lightbox p { margin: 0; padding: 14px 18px; font-size: 13px; text-transform: uppercase; letter-spacing: .07em }
.lightbox-close { position: absolute; right: 12px; top: 10px; z-index: 2; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.5); background: rgba(0,0,0,.35); color: white; font-size: 26px; cursor: pointer }

.team { display: grid; grid-template-columns: minmax(0, 48%) minmax(0, 27%) minmax(0, 25%); min-height: 740px; background: var(--wine-deep); color: #f9f0e8 }
.team-copy { padding: clamp(70px, 8vw, 138px) clamp(36px, 7vw, 128px) clamp(70px, 8vw, 138px) var(--gutter) }
.team-copy h2 { color: white; max-width: 100% }
.team-copy > p:not(.section-index):not(.team-proof) { color: #d8c2c8; max-width: 54ch; margin: 28px 0 0 }
.team-roles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; margin-top: 48px; border-top: 1px solid var(--line-light) }
.team-roles div { padding: 20px 0; border-bottom: 1px solid var(--line-light); display: grid; gap: 6px }
.team-roles strong { font-family: var(--serif); font-size: 20px; font-weight: 400 }
.team-roles span { color: #d8c2c8; font-size: 14px }
.team-proof { margin: 26px 0 0; color: #ead8de; font-size: 14px; max-width: 58ch }
.team-work { margin: 0; align-self: center; position: relative; z-index: 1 }
.team-work img { width: 112%; max-width: none; margin-left: -12%; height: auto; object-fit: contain }
.team-work figcaption { margin-top: 10px; color: #d8c2c8; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; padding-right: 20px }
.team-portrait { margin: 0; position: relative; align-self: stretch }
.team-portrait picture, .team-portrait img { width: 100%; height: 100% }
.team-portrait img { object-fit: cover; object-position: center top }
.team-portrait figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 2px; padding: 18px 20px; background: linear-gradient(transparent, rgba(29,13,18,.78)); padding-top: 86px }
.team-portrait figcaption strong { font-family: var(--serif); font-size: 24px; font-weight: 400 }
.team-portrait figcaption span { color: #e6d6db; font-size: 12px; text-transform: uppercase; letter-spacing: .07em }

.reviews { padding: clamp(92px, 9vw, 158px) var(--gutter); background: var(--paper) }
.reviews-head h2 { max-width: 100% }
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(40px, 6vw, 104px);
  border-top: 1px solid var(--ink);
  padding-top: clamp(30px, 3vw, 44px);
}
.review-featured { position: relative; margin: 0; padding-left: clamp(52px, 6vw, 104px); padding-right: clamp(10px, 2vw, 34px) }
.quote-mark { position: absolute; left: 0; top: -14px; color: var(--wine); font-family: var(--serif); font-size: clamp(80px, 9vw, 160px); line-height: 1 }
.review-featured p { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 56px); line-height: 1.15 }
.review-featured cite,
.review-side cite { display: block; margin-top: 22px; font-style: normal; color: var(--wine); font-size: 12px; text-transform: uppercase; letter-spacing: .06em }
.review-side { display: grid; align-content: start; border-left: 1px solid var(--line) }
.review-side blockquote { margin: 0; padding: 22px 0 28px 28px; border-bottom: 1px solid var(--line) }
.review-side p { margin: 0; color: var(--muted); font-size: 17px }

.faq { padding: clamp(86px, 8vw, 142px) var(--gutter); background: #ebe0d5 }
.faq-head { margin-bottom: clamp(38px, 4vw, 58px) }
.faq-head h2 { max-width: 100% }
.faq-list { width: 100%; max-width: none; margin-left: 0; border-top: 1px solid var(--ink) }
.faq-item { border-bottom: 1px solid var(--line) }
.faq-item summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 72px minmax(0, 1fr) 42px; gap: 24px; align-items: center; padding: 24px 0 }
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary > span { color: var(--wine); font-family: var(--serif); font-size: 20px }
.faq-item summary strong { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 28px); font-weight: 400 }
.faq-item summary i { position: relative; width: 26px; height: 26px; justify-self: end }
.faq-item summary i::before,
.faq-item summary i::after { content: ""; position: absolute; background: var(--wine); left: 50%; top: 50%; transform: translate(-50%, -50%); transition: transform .22s ease }
.faq-item summary i::before { width: 20px; height: 1px }
.faq-item summary i::after { width: 1px; height: 20px }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) scaleY(0) }
.faq-answer { padding: 0 0 28px 96px; animation: faq-in .22s ease both }
.faq-answer p { margin: 0; max-width: 68ch; color: var(--muted) }

.brief { display: grid; grid-template-columns: minmax(300px, .42fr) minmax(0, .58fr); gap: clamp(48px, 7vw, 120px); padding: clamp(86px, 9vw, 156px) var(--gutter); background: var(--wine); color: #fff6ef }
.brief-intro { align-self: start; position: sticky; top: calc(var(--header-h) + 28px) }
.brief-intro h2 { color: #fff; font-size: clamp(42px, 4.6vw, 78px) }
.brief-intro > p:last-child { color: #e1cbd2; max-width: 47ch; margin-top: 24px }
.brief-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 30px; align-content: start }
.field { display: grid; gap: 7px }
.field-wide { grid-column: 1 / -1 }
.field label,
.field > label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #e8d6dc }
.field input,
.field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.42); border-radius: 0; background: transparent; color: white; padding: 11px 0 12px; outline: 0 }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.46) }
.field input:focus,
.field textarea:focus { border-color: #fff }
.field [aria-invalid="true"] { border-color: #ffd1dc }
.field-error { min-height: 17px; color: #ffd8e2; font-size: 12px }
.consent { display: flex; align-items: flex-start; gap: 10px; color: #e9d8de; font-size: 13px }
.consent input { margin-top: 3px; accent-color: #fff }
.consent a { border-bottom: 1px solid currentColor }
.brief-actions { display: flex; align-items: center; gap: 18px; margin-top: 8px }
.brief-submit { background: #fff6ef; border-color: #fff6ef; color: var(--wine) }
.brief-submit:hover { background: #ead7df; color: var(--wine-deep) }
#form-status { margin: 0; color: #f2dce3; font-size: 13px }
.brief-result { grid-column: 2; display: grid; grid-template-columns: 1fr auto; gap: 20px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.36) }
.brief-result[hidden] { display: none }
.brief-result pre { white-space: pre-wrap; margin: 12px 0 0; font: 14px/1.55 var(--sans); color: #f4e5e9 }
.result-label { color: #f7e8ed }
.result-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 9px }
.result-actions button,
.result-actions a { color: white }
.privacy-note { grid-column: 2; margin: 0; color: #d9c1c8; font-size: 12px; max-width: 72ch }

.contact { display: grid; grid-template-columns: minmax(300px, .44fr) minmax(0, .56fr); gap: clamp(50px, 7vw, 120px); padding: clamp(86px, 9vw, 148px) var(--gutter); background: var(--cream) }
.contact h2 { font-size: clamp(54px, 6vw, 104px) }
.contact-note { margin: 20px 0 0; color: var(--muted); max-width: 48ch }
.contact-list { margin: 42px 0 0; border-top: 1px solid var(--ink) }
.contact-list > div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line) }
.contact-list dt { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em }
.contact-list dd { margin: 0; font-weight: 600 }
.contact-list a { border-bottom: 1px solid transparent }
.contact-list a:hover { border-color: currentColor }
.socials { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 26px }
.socials span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em }
.socials a { border-bottom: 1px solid var(--ink); font-size: 13px }
.map-area { align-self: center }
.map-placeholder { min-height: 320px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; padding: clamp(28px, 4vw, 58px); border-top: 4px solid var(--wine); border-bottom: 1px solid var(--line); background: #e5dbcf }
.map-placeholder strong { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); font-weight: 400 }
.map-placeholder p { margin: 0 0 8px; color: var(--muted); max-width: 50ch }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block }
.map-frame[hidden] { display: none }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 50px; align-items: center; padding: 44px var(--gutter); background: #1e1116; color: #f6ece8 }
.footer-brand { display: flex; gap: 12px; align-items: center }
.footer-brand img { width: 50px; height: 50px; filter: brightness(0) invert(1) }
.footer-brand div { display: grid; gap: 2px }
.footer-brand strong { font-family: var(--serif); font-size: 22px; font-weight: 400 }
.footer-brand span { color: #cdb9c0; font-size: 11px; text-transform: uppercase; letter-spacing: .08em }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap }
.site-footer nav a,
.footer-top { color: #d8c6cc }

@keyframes menu-open { from { opacity: 0; transform: scaleY(.96) translateY(-8px) } to { opacity: 1; transform: none } }
@keyframes faq-in { from { opacity: 0; transform: translateY(-5px) } to { opacity: 1; transform: none } }
@keyframes summary-flash { 0% { outline-color: rgba(90,32,53,0) } 45% { outline-color: rgba(90,32,53,.7) } 100% { outline-color: rgba(90,32,53,0) } }
.mood-summary.is-updated { outline: 2px solid transparent; animation: summary-flash .45s ease }

@media (min-width: 1800px) {
  :root { --gutter: clamp(64px, 3.3vw, 126px) }
  .hero { grid-template-columns: 40% 60% }
  .hero-copy { padding-right: clamp(72px, 4vw, 150px) }
  .hero h1 { font-size: clamp(66px, 6.4cqw, 104px) }
  .manifest { grid-template-columns: minmax(0, 1.2fr) minmax(420px, .58fr) minmax(120px, .14fr) }
  .project-layout { grid-template-columns: 1.45fr .72fr .62fr }
  .mood-inner { grid-template-columns: .72fr 1.18fr .72fr }
}

@media (max-width: 1240px) {
  :root { --header-h: 72px }
  .desktop-nav { gap: 16px }
  .desktop-nav a { font-size: 12px }
  .primary-cta { padding-inline: 16px }
  .brand { min-width: 214px }
  .manifest { grid-template-columns: 1fr .62fr 80px }
  .manifest-notes { grid-template-columns: 1fr }
  .mood-inner { grid-template-columns: .65fr 1fr .82fr; gap: 30px }
  .services-list { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  .service, .service-featured, .service-featured + .service-featured, .service-production { grid-template-columns: 1fr }
  .service:nth-child(4n) { border-right: 1px solid var(--line) }
  .service:nth-child(2n) { border-right: 0 }
  .service:nth-child(n+5) { border-bottom: 1px solid var(--line) }
  .service:nth-child(n+7) { border-bottom: 0 }
}

@media (max-width: 1120px) {
  .desktop-nav, .primary-cta { display: none }
  .js .menu-toggle { display: inline-flex }
  .header-inner { grid-template-columns: 1fr auto }
  .hero { grid-template-columns: 46% 54%; min-height: 610px }
  .hero-copy { padding-right: 32px }
  .hero h1 { font-size: clamp(45px, 8.6cqw, 72px) }
  .manifest { grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr); gap: 38px }
  .manifest-rail { grid-column: 1 / -1; flex-direction: row; border-left: 0; border-top: 1px solid var(--line); padding: 14px 0 }
  .manifest-rail span { writing-mode: horizontal-tb; transform: none }
  .project-layout { grid-template-columns: 1fr 1fr }
  .project-main { grid-column: 1 / -1 }
  .project-secondary, .project-tertiary { margin-top: 0 }
  .project-main .project-media img { aspect-ratio: 16 / 9 }
  .case-studies { grid-template-columns: 1fr }
  .case-study { border-right: 0; border-bottom: 1px solid var(--line) }
  .case-study:last-child { border-bottom: 0 }
  .mood-inner { grid-template-columns: 1fr 1.15fr }
  .mood-heading { position: static; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr .55fr; gap: 30px; align-items: end }
  .mood-heading > p:last-child { margin: 0 }
  .services-list { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  .service, .service-featured, .service-featured + .service-featured, .service-production { grid-column: auto }
  .service:nth-child(4n) { border-right: 1px solid var(--line) }
  .service:nth-child(2n) { border-right: 0 }
  .service:nth-child(n+5) { border-bottom: 1px solid var(--line) }
  .service:nth-child(n+7) { border-bottom: 0 }
  .approach { grid-template-columns: 54% 46% }
  .team { grid-template-columns: 46% 28% 26% }
  .reviews-layout { grid-template-columns: 1fr .72fr; gap: 52px }
}

@media (max-width: 900px) {
  :root { --gutter: 24px }
  .hero { grid-template-columns: 1fr; min-height: 0 }
  .hero-copy { padding: 54px var(--gutter) 42px }
  .hero h1 { font-size: clamp(45px, 10vw, 72px) }
  .hero-image img { width: 100%; height: auto; object-fit: contain }
  .hero-image figcaption { right: 14px; bottom: 14px }
  .hero-vertical { position: static; writing-mode: horizontal-tb; transform: none; padding: 10px var(--gutter) 12px; color: var(--wine); background: var(--paper); font-size: 10px }
  .hero-meta { display: none }

  .manifest { grid-template-columns: 1fr 42%; padding-top: 72px }
  .manifest-copy { grid-column: 1 / -1 }
  .manifest-notes { grid-template-columns: repeat(3, 1fr); margin-top: 30px }
  .manifest-image { grid-column: 2; width: 100% }
  .manifest-rail { grid-column: 1; grid-row: 2; align-self: end; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; border-top: 2px solid var(--wine) }

  .projects-head,
  .gallery-head,
  .services-head,
  .reviews-head,
  .faq-head { grid-template-columns: 1fr; gap: 22px }
  .projects-head > p,
  .gallery-head > p,
  .services-head > p,
  .reviews-head > p,
  .faq-head > p,
  .section-head-note { max-width: 62ch; padding-top: 18px }
  .project-layout { grid-template-columns: 1fr 1fr }
  .project-main { grid-column: 1 / -1 }
  .project-secondary, .project-tertiary { grid-column: auto }

  .mood-inner { grid-template-columns: 1fr }
  .mood-heading { grid-template-columns: 1fr }
  .mood-form, .mood-summary { grid-column: 1 }
  .mood-form { min-height: 340px }
  .mood-progress { display: flex; align-items: center; gap: 14px; padding: 0 0 18px; border-bottom: 1px solid var(--line-light); color: #d8c2c8; font-size: 12px; text-transform: uppercase; letter-spacing: .07em }
  .mood-progress-line { flex: 1; height: 1px; background: var(--line-light) }
  .mood-progress-line i { display: block; width: 25%; height: 2px; margin-top: -1px; background: #fff; transition: width .2s ease }
  .mood-form fieldset[hidden] { display: none }
  .radio-row, .radio-row-four { grid-template-columns: 1fr }
  .mood-mobile-nav { display: flex; justify-content: space-between; gap: 18px; margin-top: 18px }
  .mood-summary { margin-top: 18px }

  .services-list { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  .service, .service-featured, .service-featured + .service-featured, .service-production {
    grid-column: auto;
    min-height: 250px;
    margin-left: 0;
    padding: 26px 24px;
    border-left: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .service:nth-child(even) { border-right: 0 }
  .service:nth-child(n+7) { border-bottom: 0 }

  .approach { grid-template-columns: 1fr }
  .approach-image img { height: auto; object-fit: contain }
  .approach-copy { padding: 56px var(--gutter) 72px }

  .gallery-collage { grid-template-columns: repeat(12, minmax(0, 1fr)) }
  .gallery-light { grid-column: 1 / 13 }
  .gallery-bouquet { grid-column: 8 / 13; margin-top: 70px }

  .team { grid-template-columns: 1fr 44% }
  .team-copy { padding: 64px var(--gutter) }
  .team-roles { grid-template-columns: 1fr }

  .reviews-layout { grid-template-columns: 1fr; gap: 34px }
  .review-side { border-left: 0; border-top: 1px solid var(--line) }
  .review-side blockquote { padding-left: 0 }

  .brief { grid-template-columns: 1fr; gap: 46px }
  .brief-intro { position: static }
  .brief-result, .privacy-note { grid-column: 1 }

  .contact { grid-template-columns: 1fr; gap: 48px }
  .map-placeholder { min-height: 280px }
  .site-footer { grid-template-columns: 1fr auto; gap: 28px }
  .site-footer nav { grid-column: 1 / -1; grid-row: 2 }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --header-h: 68px }
  .header-inner { min-height: var(--header-h) }
  .brand { min-width: 0 }
  .brand img { width: 38px; height: 38px }
  .brand-copy strong { font-size: 18px }
  .brand-copy small { font-size: 8px }
  .menu-toggle { width: 42px; height: 42px }
  .mobile-menu nav { grid-template-columns: 1fr }
  .mobile-menu nav a { font-size: 20px; padding: 10px 0 }

  .hero-copy { padding-top: 42px }
  .hero h1 { font-size: clamp(42px, 12.2vw, 60px); line-height: 1.04; letter-spacing: -.025em }
  .hero-lead { font-size: 17px }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 8px }
  .hero-image figcaption { position: static; background: transparent; max-width: none; padding: 10px var(--gutter); color: var(--muted) }

  .manifest { grid-template-columns: 1fr; padding: 66px var(--gutter) 74px }
  .manifest h2,
  .projects h2,
  .mood h2,
  .services h2,
  .approach h2,
  .gallery h2,
  .team h2,
  .reviews h2,
  .faq h2,
  .brief h2,
  .contact h2 { font-size: clamp(38px, 10.8vw, 54px); line-height: 1.06 }
  .manifest-notes { grid-template-columns: 1fr; gap: 12px }
  .manifest-image { grid-column: 1; width: 78%; justify-self: end }
  .manifest-rail { grid-column: 1; grid-row: auto; display: flex; flex-wrap: wrap; flex-direction: row; justify-content: flex-start; gap: 10px 20px; border-top: 1px solid var(--line) }
  .manifest-rail span { width: 100% }

  .projects { padding: 64px var(--gutter) 82px }
  .project-layout { grid-template-columns: 1fr; gap: 44px }
  .project-main, .project-secondary, .project-tertiary { grid-column: 1; margin: 0 }
  .project-secondary { width: 88%; justify-self: end }
  .project-tertiary { width: 80%; justify-self: start }
  .project-main .project-media img { aspect-ratio: 3 / 2 }
  .case-study { padding-inline: 0 }

  .mood { padding: 66px var(--gutter) }
  .mood-summary { border-left-width: 5px; padding: 24px 20px }
  .summary-actions { display: grid; grid-template-columns: 1fr 1fr }
  .summary-actions button:last-of-type { grid-column: 1 / -1; justify-self: start }

  .services { padding: 76px var(--gutter) }
  .services-list { grid-template-columns: 1fr }
  .service, .service-featured, .service-featured + .service-featured, .service-production {
    min-height: 0;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }
  .service:nth-child(n) { border-bottom: 1px solid var(--line) }
  .service:last-child { border-bottom: 0 }
  .service > span { font-size: 42px }
  .service > div { margin-top: 0 }
  .service h3 { font-size: 25px }

  .approach-image figcaption { position: static; background: transparent; padding: 10px var(--gutter); color: var(--muted) }
  .approach-copy { padding: 50px var(--gutter) 68px }
  .approach-copy li { grid-template-columns: 42px 1fr }

  .gallery { padding: 70px var(--gutter) 88px }
  .gallery-collage { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 12px }
  .gallery-item { flex: 0 0 82vw; margin: 0; scroll-snap-align: start }
  .gallery-bouquet { flex-basis: 68vw }
  
  .team { grid-template-columns: 1fr }
  .team-copy { padding: 62px var(--gutter) 44px }
  .team-work { width: 88%; justify-self: start; margin-left: var(--gutter) }
  .team-work img { width: 100%; margin-left: 0 }
  .team-work figcaption { padding-right: 0 }
  .team-portrait { width: 74%; justify-self: end }
  .team-portrait img { height: auto; object-fit: contain }

  .reviews { padding: 72px var(--gutter) }
  .review-featured { padding-left: 42px }
  .quote-mark { font-size: 82px }
  .review-featured p { font-size: 30px }

  .faq { padding: 70px var(--gutter) }
  .faq-list { margin-left: 0 }
  .faq-item summary { grid-template-columns: 38px 1fr 28px; gap: 12px; padding: 18px 0 }
  .faq-answer { padding-left: 50px }

  .brief { padding: 70px var(--gutter) }
  .brief-form { grid-template-columns: 1fr }
  .field-wide { grid-column: 1 }
  .brief-actions { align-items: flex-start; flex-direction: column }
  .brief-result { grid-template-columns: 1fr }
  .result-actions { flex-direction: row; flex-wrap: wrap; gap: 14px }

  .contact { padding: 72px var(--gutter) }
  .contact-list > div { grid-template-columns: 110px 1fr }
  .map-frame iframe { height: 300px }

  .site-footer { grid-template-columns: 1fr; padding: 34px var(--gutter) }
  .site-footer nav { grid-column: 1; grid-row: auto; gap: 12px 16px }
  .footer-top { justify-self: start }
}

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

html:not(.js) .js-only { display: none !important }
