/* =====================================================================
   Martha's Alterations - preview build by NH Media Web
   v2, the dress-led register: ivory and blush grounds, deep garnet
   dark grounds, rose and champagne accents, a romantic high-contrast
   serif (Playfair Display) over a geometric sans (Jost).
   The running-stitch rule is the house ornament.
   No external requests. No inline styles anywhere.
   ===================================================================== */

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-latin-var.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-latin-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory:   #FBF6F1;
  --blush:   #F3E5E2;
  --card:    #FFFCFA;

  --wine:    #4A2130;   /* story */
  --wine-2:  #3C1926;   /* award band, preview block */
  --wine-3:  #2E101C;   /* request, footer, masthead of the 404 */

  --text:    #2A1A20;
  --muted:   #6B4C55;
  --rule:    #E4D2CE;

  --rose:    #C08792;   /* decoration only, never text on light */
  --rose-d:  #8E3F55;   /* accent text and fills on light grounds */
  --rose-dd: #742F44;   /* hover */
  --rose-l:  #F0C3C6;   /* accent text on dark grounds */

  --champ:   #C9A57A;   /* decoration on dark grounds */
  --champ-l: #E8CBA4;   /* accent text on dark grounds */

  --dim:     #D6BDBF;   /* body text on dark grounds */
  --dim-2:   #C4A7AB;   /* faint text on dark grounds */
  --line-d:  rgba(232, 203, 164, 0.28);

  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --sans:  'Jost', 'Avenir Next', 'Segoe UI', Helvetica, Arial, sans-serif;

  --shell: 1200px;
  --gut: 32px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  font-variant-ligatures: common-ligatures;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--wine-3);
  color: var(--ivory);
  padding: 12px 20px;
  font: 600 15px/1 var(--sans);
  letter-spacing: .04em;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--rose-d);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.006em;
  margin: 0 0 18px;
  color: var(--text);
}
.h2-d { color: var(--ivory); }

.lede {
  font-size: clamp(17.5px, 1.5vw, 20px);
  line-height: 1.68;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 26px;
}
.lede-d { color: var(--dim); }

/* the running stitch: the house ornament, drawn from the text colour */
.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 600 12.5px/1 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose-d);
  margin: 0 0 18px;
}
.label::before {
  content: "";
  width: 34px;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px);
}
.label-d { color: var(--champ-l); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font: 600 15px/1.2 var(--sans);
  letter-spacing: .05em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease;
}
.btn-lg { padding: 17px 30px; font-size: 16px; }

.btn-rose {
  background: var(--rose-d);
  color: #FFF8F6;
  border-color: var(--rose-d);
}
.btn-rose:hover { background: var(--rose-dd); border-color: var(--rose-dd); }

.btn-line {
  background: transparent;
  color: var(--text);
  border-color: #B79AA0;
}
.btn-line:hover { border-color: var(--rose-d); color: var(--rose-d); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(251, 246, 241, 0.45);
}
.btn-ghost:hover { border-color: var(--champ-l); color: var(--champ-l); }

.btn-off {
  background: transparent;
  color: #6E5058;
  border: 1px dashed #B29AA0;
  cursor: not-allowed;
}

/* ------------------------------------------------- preview banner ---- */

.pbar {
  background: var(--wine-2);
  border-bottom: 1px solid var(--line-d);
  color: #EFE0DE;
}
.pbar-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 26px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.pbar p { margin: 0; }
.pbar-txt { font-size: 14px; line-height: 1.5; }
.pbar-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-size: 14px;
}
.pbar-btn {
  display: inline-block;
  padding: 7px 16px;
  background: var(--champ-l);
  color: #34131F;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
}
.pbar-btn:hover { background: #F3DCBC; }
.pbar-mail { color: #EFE0DE; }

/* ------------------------------------------------- masthead ---------- */

.mast {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
}
.mast-in {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-txt { display: block; }
.brand-name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: var(--text);
}
.brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.nav { display: flex; gap: 27px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--rose-d); border-bottom-color: var(--rose); }

.mast-call { flex: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid #C4A9AF;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 4px auto;
  background: var(--text);
}

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

.hero {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 88% 6%, rgba(192, 135, 146, .20), transparent 62%),
    radial-gradient(70% 60% at 4% 96%, rgba(201, 165, 122, .16), transparent 60%);
  pointer-events: none;
}
.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 68px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose-d);
}
.hero-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0 0 26px;
  color: var(--text);
}
.hero-lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.64;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 34px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

/* photograph frames: a champagne hairline stepped off the corner */
.hero-fig { margin: 0; position: relative; }
.frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #E7D3D0, #D8BEBD);
}
.hero-fig .frame { box-shadow: 0 26px 60px rgba(74, 33, 48, .20); z-index: 1; }
.off { position: relative; }
.off::before {
  content: "";
  position: absolute;
  left: 16px; top: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--rose);
  pointer-events: none;
}
.hero-fig .cap { position: relative; margin-top: 32px; }
.hero-fig img { width: 100%; height: auto; }

.cap {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.cap-src { display: block; color: #7A5A62; }
.cap-d { color: var(--dim); }
.cap-d .cap-src { color: var(--dim-2); }
.cap-note { display: block; margin-top: 6px; }

/* ------------------------------------------------- the award --------- */

.honor {
  position: relative;
  background: var(--wine-2);
  color: var(--ivory);
  overflow: hidden;
}
.honor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(60deg, rgba(232, 203, 164, .055) 0 1px, transparent 1px 9px);
  pointer-events: none;
}
.honor-in {
  position: relative;
  padding-top: 86px;
  padding-bottom: 88px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.honor .label { justify-content: center; }

.plate {
  width: 100%;
  max-width: 620px;
  padding: 34px 28px 30px;
  border: 1px solid var(--champ);
  position: relative;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(232, 203, 164, .34);
  pointer-events: none;
}
.plate-rule {
  display: block;
  width: 86px;
  height: 1px;
  margin: 0 auto;
  color: var(--champ);
  background-image: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px);
}
.plate-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 6.6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 22px 0 16px;
  color: var(--ivory);
}
.plate-src {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champ-l);
}

.honor-say {
  max-width: 56ch;
  margin: 34px 0 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--dim);
}

/* ------------------------------------------------- the work ---------- */

.work {
  background: var(--blush);
  padding-top: 88px;
  padding-bottom: 92px;
}
.work-head { max-width: 620px; margin-bottom: 46px; }

.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 26px;
}
.feat-i {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--rule);
}

/* the photograph rides the top of the card, the type sits under it */
.feat-ph {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--rule);
}
.feat-ph img { width: 100%; height: auto; aspect-ratio: 14 / 9; object-fit: cover; }

.feat-b {
  position: relative;
  padding: 28px 32px 8px;
}
.feat-p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.66; }

.feat-cap {
  margin: 18px 32px 24px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.feat-i .feat-cap { margin-top: auto; }

.feat-k {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-d);
}
.feat-k::before {
  content: "";
  width: 30px; height: 2px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px);
}
.feat-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.14;
  margin: 0 0 10px;
  color: var(--text);
}
.more {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.more-i { border-top: 1px solid var(--rose); padding-top: 20px; }
.more-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--text);
}
.more-i p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

.pic { margin: 0; }
.pic .frame { background: linear-gradient(155deg, #E7D3D0, #D8BEBD); }
.pic img { width: 100%; height: auto; }

/* honesty slot */
.slot {
  border: 1px dashed #B29AA0;
  background: rgba(255, 255, 255, .5);
  padding: 26px 26px 22px;
}
.slot p { margin: 0 0 12px; font-size: 15.5px; line-height: 1.68; color: var(--muted); }
.slot p:last-child { margin-bottom: 0; }
.slot-k {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-d) !important;
}

/* the wide cutout: the marker in its own column, the note beside it */
.slot-band {
  display: grid;
  grid-template-columns: minmax(150px, .24fr) 1fr;
  gap: 12px 46px;
  align-items: start;
  padding: 32px 34px 30px;
}
.slot-band .slot-k { margin: 3px 0 0; }
.work .slot-band { margin-top: 54px; }
.slot-body p:last-child { margin-bottom: 0; }

/* the same cutout on a dark ground */
.slot-d {
  border-color: rgba(232, 203, 164, .42);
  background: rgba(255, 255, 255, .045);
}
.slot-d p { color: var(--dim); }
.slot-d .slot-k { color: var(--champ-l) !important; }
.slot-d strong { color: var(--ivory); font-weight: 600; }

/* ------------------------------------------------- the story --------- */

.story {
  position: relative;
  background: var(--wine);
  color: var(--ivory);
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-60deg, rgba(232, 203, 164, .05) 0 1px, transparent 1px 10px);
  pointer-events: none;
}
.story-in {
  position: relative;
  padding-top: 92px;
  padding-bottom: 92px;
}
.story-top {
  display: grid;
  grid-template-columns: 1.24fr .76fr;
  gap: 64px;
  align-items: start;
}
.story-copy .h2 { max-width: 20ch; margin-bottom: 28px; }
.story-p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.78;
  color: var(--dim);
  max-width: 58ch;
}
.story-p:first-of-type {
  font-size: 21px;
  line-height: 1.64;
  color: var(--ivory);
}
.story-src {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-d);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim-2);
  max-width: 52ch;
}
.story-src a { color: var(--champ-l); }

.story-fig { margin: 0; }
.story-fig .frame { background: linear-gradient(155deg, #6A3546, #40202C); }
.story-fig img { width: 100%; height: auto; }

.rail {
  list-style: none;
  margin: 62px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.rail-i {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line-d);
}
.rail-i::before {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: 7px; height: 7px;
  background: var(--champ-l);
  border-radius: 50%;
}
.rail-y {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  color: var(--champ-l);
}
.rail-t { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--dim); }

/* ------------------------------------------------- reviews ----------- */

.words {
  background: var(--ivory);
  padding-top: 88px;
  padding-bottom: 92px;
}
.words-head { text-align: center; max-width: 900px; margin: 0 auto 32px; }
.words-head .label { justify-content: center; }
.pull {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(27px, 3.4vw, 43px);
  line-height: 1.22;
  letter-spacing: -0.004em;
  color: var(--text);
}
.words-attr {
  margin: 22px 0 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-d);
}

/* one source, so it reads as the closing line of the pull quote, not a tile */
.score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  margin: 0 0 52px;
}
.score-rule {
  flex: none;
  width: 96px;
  height: 1px;
  color: var(--rose);
  background-image: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px);
}
.score-n {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 1;
  color: var(--text);
}
.score-k {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
}
.score-k span { display: block; color: #7A5A62; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.quote {
  margin: 0;
  padding: 26px 24px 22px;
  background: var(--card);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.stars { margin: 0 0 12px; color: var(--rose-d); font-size: 15px; letter-spacing: .22em; }
.quote blockquote { margin: 0 0 16px; }
.quote blockquote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
}
.quote figcaption {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.q-src {
  display: block;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 2px;
}

.themes {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--rule);
}
.themes-h {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--text);
}
.theme-l {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.theme-l li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border: 1px solid var(--rule);
  background: var(--card);
  font-size: 14.5px;
  color: var(--text);
}
.theme-n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--rose-d);
}
.src { margin: 0; font-size: 13px; color: var(--muted); }

/* ------------------------------------------------- visit ------------- */

.visit {
  background: var(--blush);
  border-top: 1px solid var(--rule);
}
.visit-in {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
  padding-top: 88px;
  padding-bottom: 92px;
}
.visit-copy .h2 { margin-bottom: 4px; }
.visit-city {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--muted);
}
.visit-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 34px; }

.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--rule);
  font-size: 16px;
}
.facts li:last-child { border-bottom: 1px solid var(--rule); }
.facts-k {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-d);
  padding-top: 4px;
}
.facts-v { color: var(--text); overflow-wrap: anywhere; }

.hours {
  background: var(--card);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--rose);
  padding: 30px 30px 26px;
}
.hours-h {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--text);
}
.hrs { margin: 0 0 20px; }
.hrs-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--rule);
}
.hrs-row:last-child { border-bottom: 1px solid var(--rule); }
.hrs dt { font-size: 16px; color: var(--text); }
.hrs dd { margin: 0; font-size: 16px; color: var(--muted); text-align: right; }
.hrs-open dt { font-weight: 600; }

.chip {
  display: inline-block;
  padding: 4px 11px;
  border: 1px dashed #AE9299;
  font: 700 12px/1.4 var(--sans);
  letter-spacing: .12em;
  color: var(--rose-d);
  background: rgba(142, 63, 85, .07);
}

.hours-note {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
  padding: 16px 18px;
  border: 1px dashed #B29AA0;
}
.hours-call {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--muted);
}
.hours-tel {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 27px;
  color: var(--rose-d);
  text-decoration: none;
}
.hours-tel:hover { text-decoration: underline; }

/* ------------------------------------------------- request ----------- */

.ask {
  position: relative;
  background: var(--wine-3);
  color: var(--ivory);
  overflow: hidden;
}
.ask::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(60deg, rgba(232, 203, 164, .05) 0 1px, transparent 1px 10px);
  pointer-events: none;
}
.ask-in {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 96px;
}
.ask-copy .h2 { max-width: 15ch; }
.slot-book { grid-column: 1 / -1; margin-top: 20px; }
.pic-plate { margin: 38px 0 30px; }
.pic-plate .frame { background: #EFE7E2; }
.ask-alt { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--dim); }
.ask-alt a { color: var(--champ-l); overflow-wrap: anywhere; }

.form-card {
  background: var(--ivory);
  border: 1px solid var(--champ);
  padding: 34px 34px 30px;
}
.form-h {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: var(--text);
}
.form-sub { margin: 0 0 26px; font-size: 15.5px; color: var(--muted); }

.f { margin: 0 0 18px; display: block; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose-d);
}
.f input, .f select, .f textarea {
  width: 100%;
  padding: 12px 14px;
  font: 400 16px/1.5 var(--sans);
  color: var(--text);
  background: #FFFFFF;
  border: 1px solid #C9B0B4;
  border-radius: 2px;
}
.f textarea { resize: vertical; min-height: 108px; }
.f input:disabled, .f select:disabled, .f textarea:disabled {
  background: #F5EDEA;
  border-style: dashed;
  border-color: #BCA4A9;
  color: #6E5058;
  -webkit-text-fill-color: #6E5058;
  opacity: 1;
  cursor: not-allowed;
}
.f input::placeholder, .f textarea::placeholder { color: #7A5A62; opacity: 1; }

.f-send { margin: 24px 0 0; }
.f-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ------------------------------------------------- about preview ----- */

.preview {
  background: var(--wine-2);
  color: var(--dim);
  border-top: 1px solid var(--line-d);
}
.about-preview {
  max-width: 74ch;
  padding-top: 54px;
  padding-bottom: 54px;
}
.ap-h {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--ivory);
}
.about-preview p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.74; }
.about-preview p:last-child { margin-bottom: 0; }

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

.foot {
  background: var(--wine-3);
  color: var(--dim);
}
.foot-in {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-top: 66px;
  padding-bottom: 52px;
}
.foot-brand .brand-mark { width: 50px; height: 50px; margin-bottom: 16px; }
.foot-name {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--ivory);
}
.foot-sub { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--dim); }
.foot-k {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--champ-l);
}
.foot-col a { color: var(--dim); text-decoration: none; }
.foot-col a:hover { color: var(--champ-l); text-decoration: underline; }
.foot-col > a { display: block; font-size: 15px; padding: 5px 0; }
.foot-col p { margin: 0 0 8px; font-size: 15px; line-height: 1.6; overflow-wrap: anywhere; }

.foot-bar {
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(232, 203, 164, .18);
}
.foot-bar p { margin: 0; font-size: 13.5px; color: var(--dim-2); }

/* ------------------------------------------------- 404 --------------- */

.page-404 { background: var(--wine-3); }

.nf {
  background: var(--wine-2);
  color: var(--ivory);
  padding-top: 110px;
  padding-bottom: 120px;
}
.nf-code {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 1;
  color: var(--champ-l);
}
.nf-lede { max-width: 48ch; }
.nf-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }

.mast-404 {
  position: static;
  background: var(--wine-3);
  border-bottom: 1px solid var(--line-d);
}
.mast-404 .brand-name { color: var(--ivory); }
.mast-404 .brand-sub { color: var(--dim-2); }

/* ------------------------------------------------- reveals ----------- */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-2 { transition-delay: .07s; }
.js .reveal-3 { transition-delay: .14s; }
.js .reveal-4 { transition-delay: .21s; }
.js .reveal-5 { transition-delay: .28s; }
.js .reveal-6 { transition-delay: .35s; }

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

@media (max-width: 1080px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
    padding: 8px var(--gut) 18px;
  }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .mast-in { position: relative; }
  .burger { display: block; order: 3; }
  .mast-call { display: none; }

  .hero-in, .story-top, .visit-in, .ask-in {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .slot-book { margin-top: 0; }
  .rail { grid-template-columns: repeat(2, 1fr); gap: 26px 30px; }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .more { grid-template-columns: 1fr 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-fig { max-width: 520px; }
  .story-fig { max-width: 460px; }
  .honor-in { padding-top: 70px; padding-bottom: 72px; }
}

@media (max-width: 700px) {
  :root { --gut: 20px; }
  body { font-size: 17px; }

  .pbar-in { padding-top: 12px; padding-bottom: 12px; }
  .pbar-txt, .pbar-acts { font-size: 13.5px; }

  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 20px; }
  .brand-sub { display: none; }

  .hero-in { padding-top: 52px; padding-bottom: 60px; gap: 38px; }
  .hero-cta .btn { width: 100%; }
  .hero-fig { max-width: none; }
  .off::before { left: 12px; top: 12px; right: -10px; bottom: -12px; }
  .hero-fig .cap { margin-top: 26px; }

  .honor-in { padding-top: 58px; padding-bottom: 60px; }
  .plate { padding: 26px 18px 24px; }
  .honor-say { font-size: 17.5px; }

  .work, .words { padding-top: 60px; padding-bottom: 64px; }
  .story-in, .ask-in, .visit-in { padding-top: 60px; padding-bottom: 64px; }

  .feat { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
  .feat-b { padding: 24px 22px 6px; }
  .feat-cap { margin: 16px 22px 22px; }
  .more { grid-template-columns: 1fr; gap: 22px; }

  .slot-band { grid-template-columns: 1fr; gap: 14px; padding: 24px 20px 22px; }
  .work .slot-band { margin-top: 44px; }

  .rail { grid-template-columns: 1fr; gap: 24px; margin-top: 46px; }

  .quotes { grid-template-columns: 1fr; }
  .score-rule { display: none; }
  .score { gap: 6px 16px; margin-bottom: 44px; }

  .facts li { grid-template-columns: 1fr; gap: 2px; }
  .hours { padding: 24px 20px 22px; }
  .hrs-row { flex-direction: column; align-items: flex-start; gap: 3px; }
  .hrs dd { text-align: left; }

  .form-card { padding: 26px 20px 24px; }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .f-send .btn { width: 100%; }

  .foot-in { grid-template-columns: 1fr; gap: 30px; padding-top: 52px; }
  .visit-cta .btn, .nf-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
