/* ==========================================================================
   AQUIVAR MANAGEMENT INC — shared stylesheet
   Editorial magazine layout: oversized serif display, clean sans body,
   asymmetric grids, full-bleed banded sections.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ivory:        #faf7f1;
  --ivory-deep:   #f2ede3;
  --ivory-warm:   #ede5d7;
  --charcoal:     #2a2724;
  --charcoal-soft:#4b463f;
  --charcoal-mute:#6d665c;
  --olive:        #4a5340;
  --olive-deep:   #363d2e;
  --olive-light:  #6d7659;
  --terracotta:   #b0603c;
  --terracotta-dp:#8f4a2c;
  --brass:        #a98b4e;
  --brass-light:  #c9ae74;
  --line:         #ded5c5;
  --line-soft:    #e8e1d3;

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --maxw: 1240px;
  --band-y: clamp(4.5rem, 10vw, 9rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
figure { margin: 0; }
ul { margin: 0; padding: 0; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.06;
}
h1 { font-size: clamp(2.9rem, 7.4vw, 6.1rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); line-height: 1.1; }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.95rem); line-height: 1.18; }
h4 { font-size: 1.22rem; line-height: 1.25; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: clamp(22px, 4vw, 48px);
  height: 1px;
  background: var(--brass);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--light { color: var(--brass-light); }
.eyebrow--light::before { background: var(--brass-light); }

.lede {
  font-size: clamp(1.13rem, 1.6vw, 1.32rem);
  line-height: 1.62;
  color: var(--charcoal-soft);
  font-weight: 300;
}
.serif-note {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.42;
  font-style: italic;
  color: var(--olive);
  font-weight: 300;
}
.muted { color: var(--charcoal-mute); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap--wide { max-width: 1440px; }
.band { padding: var(--band-y) 0; }
.band--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.band--ivory-deep { background: var(--ivory-deep); }
.band--warm { background: var(--ivory-warm); }
.band--olive { background: var(--olive-deep); color: var(--ivory); }
.band--olive h2, .band--olive h3, .band--olive h4 { color: var(--ivory); }
.band--charcoal { background: var(--charcoal); color: var(--ivory-deep); }
.band--charcoal h2, .band--charcoal h3 { color: var(--ivory); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* asymmetric two-column editorial split */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.split--7-5  { grid-template-columns: 1fr; }
.split--5-7  { grid-template-columns: 1fr; }
.split--label { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split--7-5 { grid-template-columns: 1.35fr 1fr; }
  .split--5-7 { grid-template-columns: 1fr 1.35fr; }
  .split--label { grid-template-columns: 15rem 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
}
.sticky-label { position: relative; }
@media (min-width: 900px) {
  .sticky-label { position: sticky; top: 7.5rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.08rem 1.9rem;
  border: 1px solid transparent;
  background: var(--olive);
  color: var(--ivory);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.btn:hover { background: var(--olive-deep); transform: translateY(-2px); }
.btn--terra { background: var(--terracotta); }
.btn--terra:hover { background: var(--terracotta-dp); }
.btn--ghost {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--ivory); }
.btn--onlight-brass {
  background: transparent;
  border-color: var(--brass);
  color: var(--charcoal);
}
.btn--onlight-brass:hover { background: var(--brass); color: #fff; }
.btn--ondark {
  background: transparent;
  border-color: var(--brass-light);
  color: var(--ivory);
}
.btn--ondark:hover { background: var(--brass-light); color: var(--charcoal); }
.btn--block { width: 100%; justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease, gap .3s ease, color .3s ease;
}
.textlink::after { content: "\2192"; font-size: 1rem; letter-spacing: 0; }
.textlink:hover { border-color: var(--olive); gap: 1rem; }
.textlink--light { color: var(--brass-light); border-color: rgba(201,174,116,.35); }
.textlink--light:hover { border-color: var(--brass-light); }

/* ==========================================================================
   Tonal fields — deliberate, photo-free image areas
   Real photography drops in later; each field carries an HTML comment.
   ========================================================================== */
.tone {
  position: relative;
  overflow: hidden;
  background: var(--ivory-warm);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.tone::before {
  /* woven linen texture, drawn in CSS */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg,  rgba(0,0,0,.045)   0 1px, transparent 1px 7px);
  z-index: 1;
  pointer-events: none;
}
.tone::after {
  /* soft directional light */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 95% at 22% 8%, rgba(255,255,255,.4), transparent 62%);
  z-index: 1;
  pointer-events: none;
}
.tone > * { position: relative; z-index: 2; }

.tone--olive   { background: linear-gradient(148deg, #5c6650 0%, #414a37 52%, #2e3427 100%); }
.tone--terra   { background: linear-gradient(152deg, #c8794f 0%, #b0603c 45%, #8a4527 100%); }
.tone--brass   { background: linear-gradient(150deg, #d9c08a 0%, #b99a5c 48%, #92763f 100%); }
.tone--cream   { background: linear-gradient(150deg, #f6efe1 0%, #e7dcc7 52%, #d8caae 100%); }
.tone--charcoal{ background: linear-gradient(150deg, #4c4741 0%, #322e29 55%, #221f1c 100%); }
.tone--sage    { background: linear-gradient(150deg, #b7bda6 0%, #98a184 55%, #77815f 100%); }
.tone--clay    { background: linear-gradient(150deg, #e3c6b0 0%, #cfa385 50%, #b1815f 100%); }

/* brass hairline frame set inside the field */
.tone--framed::before {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.tone__frame {
  position: absolute;
  inset: clamp(10px, 1.6vw, 20px);
  border: 1px solid rgba(255,255,255,.34);
  z-index: 2;
  pointer-events: none;
}
.tone--cream .tone__frame,
.tone--brass .tone__frame,
.tone--clay  .tone__frame,
.tone--sage  .tone__frame { border-color: rgba(88,74,50,.3); }

/* typographic overlay inside a field */
.tone__cap {
  margin: 0;
  padding: clamp(1.4rem, 2.6vw, 2.4rem);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-style: italic;
  line-height: 1.3;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 18px rgba(0,0,0,.22);
  max-width: 22ch;
}
.tone--cream .tone__cap,
.tone--brass .tone__cap,
.tone--clay  .tone__cap,
.tone--sage  .tone__cap { color: #40372a; text-shadow: none; }

.tone__stamp {
  position: absolute;
  top: clamp(1.5rem, 2.8vw, 2.6rem);
  left: clamp(1.5rem, 2.8vw, 2.6rem);
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.tone--cream .tone__stamp,
.tone--brass .tone__stamp,
.tone--clay  .tone__stamp,
.tone--sage  .tone__stamp { color: rgba(64,55,42,.72); }

/* aspect helpers */
.ar-43  { aspect-ratio: 4 / 3; }
.ar-11  { aspect-ratio: 1 / 1; }
.ar-34  { aspect-ratio: 3 / 4; }
.ar-23  { aspect-ratio: 2 / 3; }
.ar-32  { aspect-ratio: 3 / 2; }
.ar-169 { aspect-ratio: 16 / 9; }
.ar-2110{ aspect-ratio: 21 / 10; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250,247,241,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-top {
  display: none;
  background: var(--charcoal);
  color: rgba(250,247,241,.78);
}
@media (min-width: 900px) {
  .header-top { display: block; }
}
.header-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  min-height: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
}
.header-top a { color: var(--brass-light); text-decoration: none; }
.header-top a:hover { color: #fff; }
.header-top .dot { color: rgba(250,247,241,.3); margin: 0 .6rem; }

.header-main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}
.brand {
  text-decoration: none;
  display: block;
  line-height: 1;
  flex: none;
}
.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.3vw, 1.72rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.brand__sub {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.nav { display: none; }
@media (min-width: 1020px) {
  .nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
}
.nav a {
  text-decoration: none;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--charcoal); border-color: var(--brass); }
.nav a[aria-current="page"] { color: var(--charcoal); border-color: var(--olive); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: none;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  white-space: nowrap;
}
.header-phone:hover { color: var(--terracotta); }
@media (min-width: 700px) { .header-phone { display: block; } }
.header-cta { display: none; }
@media (min-width: 700px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 8px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}
@media (min-width: 1020px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--ivory);
  padding: 1rem 0 2rem;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1020px) { .mobile-nav, .mobile-nav.is-open { display: none; } }
.mobile-nav a {
  display: block;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a[aria-current="page"] { color: var(--olive); }
.mobile-nav .mobile-nav__foot {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* ==========================================================================
   Hero — asymmetric editorial
   ========================================================================== */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 0; overflow: hidden; }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.12fr 0.88fr; gap: clamp(2rem, 4vw, 4rem); }
}
.hero__title { position: relative; z-index: 3; }
.hero__title h1 { letter-spacing: -0.03em; }
.hero__title h1 em {
  font-style: italic;
  color: var(--olive);
  display: block;
}
.hero__copy {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 46ch;
}
.hero__actions {
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  align-items: center;
}
.hero__art { position: relative; }
.hero__art .tone { width: 100%; }
/* Needs to out-specify `.hero__art .tone { width: 100% }` above, otherwise the
   accent tile fills the column and covers the hero photograph behind it. */
.hero__art .tone.hero__art-offset {
  position: absolute;
  bottom: -1.75rem;
  left: -2.5rem;
  width: 47%;
  box-shadow: -18px 18px 0 rgba(169,139,78,.16);
}
@media (max-width: 959px) {
  .hero__art .tone.hero__art-offset {
    position: static;
    width: 62%;
    margin: -2.5rem 0 0 auto;
    box-shadow: none;
  }
}
.hero__meta {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
}
@media (min-width: 700px) { .hero__meta { grid-template-columns: repeat(3, 1fr); } }
.hero__meta div {
  padding: 1.5rem clamp(0rem, 2vw, 2rem) 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .hero__meta div { border-bottom: 0; border-right: 1px solid var(--line); padding-left: 0; }
  .hero__meta div:first-child { padding-left: 0; }
  .hero__meta div + div { padding-left: clamp(1rem, 2.5vw, 2.4rem); }
  .hero__meta div:last-child { border-right: 0; }
}
.hero__meta dt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.hero__meta dd { margin: 0; font-size: 0.95rem; color: var(--charcoal-soft); line-height: 1.6; }

/* ---------- Page masthead (inner pages) ---------- */
.masthead { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.masthead__grid { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
@media (min-width: 900px) { .masthead__grid { grid-template-columns: 1.25fr 1fr; } }
.masthead h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
.masthead h1 em { font-style: italic; color: var(--olive); }
.masthead__side { padding-bottom: 0.5rem; }
.masthead__side p { max-width: 42ch; }

/* ---------- Breadcrumb-ish index number ---------- */
.folio {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.8;
  color: var(--line);
  display: block;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Editorial feature rows (alternating, asymmetric)
   ========================================================================== */
.feature-row {
  display: grid;
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1.05fr; }
  .feature-row--flip .feature-row__art { order: 2; }
}
.feature-row__body { max-width: 52ch; }
.feature-row__num {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  display: block;
  margin-bottom: 0.9rem;
}
.feature-row h3 { margin-bottom: 0.9rem; }

/* ==========================================================================
   Event types — asymmetric card grid
   ========================================================================== */
.types {
  display: grid;
  gap: clamp(1.5rem, 2.6vw, 2.2rem);
}
@media (min-width: 640px) { .types { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .types { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) {
  .types > *:nth-child(2) { transform: translateY(2.4rem); }
  .types > *:nth-child(4) { transform: translateY(2.4rem); }
}
.type-card { text-decoration: none; color: inherit; display: block; }
.type-card .tone { transition: transform .5s ease; }
.type-card:hover .tone { transform: translateY(-6px); }
.type-card h3 { margin: 1.15rem 0 0.6rem; font-size: 1.5rem; }
.type-card p { font-size: 0.95rem; color: var(--charcoal-mute); }
.type-card__more {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ==========================================================================
   How it works — numbered editorial steps
   ========================================================================== */
.steps { display: grid; gap: 0; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.4vw, 2rem) clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(250,247,241,.2);
  position: relative;
}
@media (min-width: 860px) {
  .step { border-right: 1px solid rgba(250,247,241,.16); padding-left: clamp(1.25rem, 2.4vw, 2rem); }
  .step:first-child { padding-left: 0; }
  .step:last-child { border-right: 0; }
}
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brass-light);
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.step p { font-size: 0.95rem; color: rgba(242,237,227,.76); }

/* ==========================================================================
   Signature element — asymmetric offset gallery grid
   Tiles sit at staggered heights and vertical offsets, never an even row.
   ========================================================================== */
.offset-grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .offset-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .offset-grid { grid-template-columns: repeat(12, 1fr); align-items: start; }
  .offset-grid > * { grid-column: span 4; }
  .offset-grid > *:nth-child(6n + 1) { grid-column: span 5; margin-top: 0; }
  .offset-grid > *:nth-child(6n + 2) { grid-column: span 4; margin-top: 4.5rem; }
  .offset-grid > *:nth-child(6n + 3) { grid-column: span 3; margin-top: 1.5rem; }
  .offset-grid > *:nth-child(6n + 4) { grid-column: span 4; margin-top: -2rem; }
  .offset-grid > *:nth-child(6n + 5) { grid-column: span 3; margin-top: 3.5rem; }
  .offset-grid > *:nth-child(6n + 6) { grid-column: span 5; margin-top: 0.5rem; }
}
.gtile { position: relative; }
.gtile .tone {
  width: 100%;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), box-shadow .55s ease;
}
.gtile:hover .tone {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px -22px rgba(42,39,36,.42);
}
.gtile__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.gtile__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.2;
}
.gtile__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
}
.band--olive .gtile__meta, .band--charcoal .gtile__meta { border-color: rgba(250,247,241,.2); }
.band--olive .gtile__tag, .band--charcoal .gtile__tag { color: var(--brass-light); }

/* ==========================================================================
   Menu / service lists
   ========================================================================== */
.menu-list { list-style: none; }
.menu-list li {
  display: grid;
  gap: 0.15rem 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) { .menu-list li { grid-template-columns: 13rem 1fr; } }
.menu-list li:first-child { border-top: 1px solid var(--line); }
.menu-list__name {
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.3;
  color: var(--charcoal);
}
.menu-list__desc { font-size: 0.96rem; color: var(--charcoal-mute); }
.band--olive .menu-list li, .band--charcoal .menu-list li { border-color: rgba(250,247,241,.18); }
.band--olive .menu-list__name, .band--charcoal .menu-list__name { color: var(--ivory); }
.band--olive .menu-list__desc, .band--charcoal .menu-list__desc { color: rgba(242,237,227,.75); }

.tick-list { list-style: none; display: grid; gap: 0.7rem; }
.tick-list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--charcoal-soft);
}
.tick-list li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 0.62rem;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  justify-self: center;
}
.band--olive .tick-list li, .band--charcoal .tick-list li { color: rgba(242,237,227,.8); }
.band--olive .tick-list li::before, .band--charcoal .tick-list li::before { border-color: var(--brass-light); }

/* two-column list at wide sizes */
.cols-2 { columns: 1; }
@media (min-width: 760px) { .cols-2 { columns: 2; column-gap: clamp(2rem, 4vw, 3.5rem); } }
.cols-2 li { break-inside: avoid; }

/* ---------- Pull quote / statement band ---------- */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.05rem);
  line-height: 1.22;
  font-weight: 300;
  max-width: 30ch;
  letter-spacing: -0.015em;
}
.statement em { font-style: italic; color: var(--brass-light); }

/* ---------- Detail cards ---------- */
.cards { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
@media (min-width: 700px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
}
.card--flat { background: transparent; border: 0; border-top: 2px solid var(--charcoal); padding-left: 0; padding-right: 0; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.96rem; color: var(--charcoal-mute); }
.card__icon {
  width: 34px; height: 34px;
  margin-bottom: 1.1rem;
  color: var(--olive);
}
.card__icon svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--charcoal); color: var(--ivory); position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 88% 10%, rgba(169,139,78,.24), transparent 60%),
    radial-gradient(60% 100% at 4% 92%, rgba(74,83,64,.5), transparent 62%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band__grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .cta-band__grid { grid-template-columns: 1.3fr 1fr; } }
.cta-band h2 { color: var(--ivory); max-width: 24ch; }
.cta-band p { color: rgba(242,237,227,.8); max-width: 44ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-phone {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  text-decoration: none;
  color: var(--ivory);
  display: inline-block;
  border-bottom: 1px solid rgba(201,174,116,.5);
  transition: border-color .3s ease, color .3s ease;
}
.cta-phone:hover { color: var(--brass-light); border-color: var(--brass-light); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.35fr 1fr; } }

.form { margin-top: 0.5rem; }
.form-note {
  background: var(--ivory-warm);
  border-left: 2px solid var(--brass);
  padding: 1.1rem 1.3rem;
  font-size: 0.93rem;
  color: var(--charcoal-soft);
  margin-bottom: 2.2rem;
}
.field-grid { display: grid; gap: 1.35rem; }
@media (min-width: 640px) { .field-grid--2 { grid-template-columns: repeat(2, 1fr); } }
.field { display: block; }
.field > span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.55rem;
}
.field .req { color: var(--terracotta); letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.92rem 1rem;
  transition: border-color .25s ease, box-shadow .25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--charcoal-mute) 50%),
                    linear-gradient(135deg, var(--charcoal-mute) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(74,83,64,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #a89f92; }

/* the two fields this business needs first */
.fieldset-key {
  border: 1px solid var(--brass);
  background: linear-gradient(160deg, #fdfaf4, #f5eee1);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 1.5rem;
}
.fieldset-key legend {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 0 0.7rem;
  margin-left: -0.7rem;
}
.fieldset-key .field > span { color: var(--charcoal); }
.fieldset-key .field input,
.fieldset-key .field select { border-color: #d9c9a6; font-size: 1.06rem; }
.fieldset-key__hint { font-size: 0.86rem; color: var(--charcoal-mute); margin: 0.9rem 0 0; }

.form__submit { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.form__fineprint { font-size: 0.84rem; color: var(--charcoal-mute); margin: 0; max-width: 34ch; }

.form-success {
  display: none;
  border: 1px solid var(--olive);
  background: #fff;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}
.form-success.is-visible { display: block; }
.form-success h3 { color: var(--olive); margin-bottom: 0.8rem; }
.form-success p { font-size: 0.98rem; color: var(--charcoal-soft); }
.form-success__seal {
  width: 46px; height: 46px;
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  color: var(--brass);
  transform: rotate(45deg);
}
.form-success__seal svg { width: 20px; height: 20px; transform: rotate(-45deg); }
.form.is-hidden { display: none; }

.info-block { border-top: 2px solid var(--charcoal); padding-top: 1.4rem; margin-bottom: 2.2rem; }
.info-block h3 { font-size: 1.32rem; margin-bottom: 0.8rem; }
.info-block p, .info-block address {
  font-size: 0.97rem;
  font-style: normal;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin: 0;
}
.info-block a { color: var(--olive); text-decoration: none; border-bottom: 1px solid var(--line); }
.info-block a:hover { border-color: var(--olive); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list span:last-child { color: var(--charcoal); text-align: right; }

.map-frame { border: 1px solid var(--line); background: var(--ivory-deep); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal); color: rgba(242,237,227,.74); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.footer-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1060px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.1fr; } }
.site-footer h4 {
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-brand__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.94rem; max-width: 34ch; margin-top: 1rem; }
.footer-est {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(201,174,116,.4);
  padding: 0.45rem 0.85rem;
}
.footer-list { list-style: none; display: grid; gap: 0.62rem; }
.footer-list a, .footer-contact a {
  color: rgba(242,237,227,.74);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color .25s ease;
}
.footer-list a:hover, .footer-contact a:hover { color: var(--brass-light); }
.footer-contact { font-style: normal; font-size: 0.94rem; line-height: 1.85; }
.footer-contact strong { color: var(--ivory); font-weight: 500; }
.footer-phone {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ivory) !important;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(242,237,227,.24);
  display: grid; place-items: center;
  color: rgba(242,237,227,.8);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.footer-social a:hover { border-color: var(--brass-light); color: var(--charcoal); background: var(--brass-light); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(242,237,227,.16);
  padding: 1.6rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(242,237,227,.5);
}
.footer-bottom p { margin: 0; }

/* ---------- Skip link + a11y ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--olive);
  color: #fff;
  padding: 0.8rem 1.2rem;
  z-index: 200;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .gtile:hover .tone, .type-card:hover .tone, .btn:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .cta-band, .site-footer, .menu-toggle { display: none; }
  body { background: #fff; }
}

/* ==========================================================================
   Photography layered into the tonal fields
   The gradient stays underneath as the loading colour and as the backstop if an
   image is ever missing, so a bad path degrades to the original tonal design.
   ========================================================================== */
.tone__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
/* over a photograph the linen weave drops back to a whisper */
.tone--photo::before { opacity: .16; }
/* and the light wash becomes a legibility scrim for the overlaid type.
   The bottom stop carries the captions, which sit on some very light photos
   (the run-of-show notebook, the shower table), so it has to hold white text. */
.tone--photo::after {
  background: linear-gradient(180deg,
    rgba(26,21,16,.36) 0%, rgba(26,21,16,0) 36%, rgba(26,21,16,.58) 100%);
}
.tone--photo .tone__frame { border-color: rgba(255,255,255,.40); }
.tone--photo .tone__stamp {
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 12px rgba(0,0,0,.65);
}
.tone--photo .tone__cap {
  color: #fff;
  text-shadow: 0 1px 20px rgba(0,0,0,.55);
}
