/* Shaved Thermos Strings — prefix st- · T04 didone + humanistic · A07 charcoal/bone */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,600;0,6..96,700;1,6..96,400&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --st-charcoal: #2c2a28;
  --st-ink: #1f1d1b;
  --st-bone: #ebe6dc;
  --st-bone-soft: #f4f0e8;
  --st-ash: #6e6a64;
  --st-line: #c9c2b6;
  --st-accent: #8a7355;
  --st-panel: #353230;
  --st-font-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --st-font-body: 'Source Sans 3', 'Source Sans Pro', 'Segoe UI', sans-serif;
  --st-measure: 38rem;
  --st-ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);
  --st-drawer-w: min(20rem, 86vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.st-body {
  margin: 0;
  font-family: var(--st-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--st-charcoal);
  background: var(--st-bone-soft);
  background-image:
    radial-gradient(rgba(44, 42, 40, 0.035) 0.6px, transparent 0.7px);
  background-size: 3px 3px;
  min-height: 100vh;
}

.st-body.is-drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--st-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--st-accent);
}

.st-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* H21 trigger — no top nav bar */
.st-menu-trigger {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--st-line);
  background: rgba(244, 240, 232, 0.92);
  color: var(--st-ink);
  font-family: var(--st-font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--st-ease-spring), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(44, 42, 40, 0.06);
}

.st-menu-trigger:hover,
.st-menu-trigger:focus-visible {
  background: var(--st-bone);
  outline: 2px solid var(--st-accent);
  outline-offset: 2px;
}

.st-menu-trigger.is-holding {
  transform: scale(0.97);
}

.st-menu-trigger__mark {
  font-weight: 700;
  font-style: italic;
}

.st-menu-trigger__hint {
  font-family: var(--st-font-body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--st-ash);
}

/* Off-canvas drawer H21 + M16 spring */
.st-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(31, 29, 27, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.st-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.st-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: var(--st-drawer-w);
  height: 100%;
  background: var(--st-panel);
  color: var(--st-bone);
  padding: 2rem 1.5rem 2.5rem;
  transform: translateX(-105%);
  transition: transform 0.55s var(--st-ease-spring);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  overflow-y: auto;
}

.st-drawer.is-open {
  transform: translateX(0);
}

.st-drawer__brand {
  font-family: var(--st-font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--st-bone);
}

.st-drawer__place {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #b8b0a4;
  letter-spacing: 0.04em;
}

.st-drawer__close {
  align-self: flex-start;
  margin-top: -0.25rem;
  background: transparent;
  border: 1px solid #6a645c;
  color: var(--st-bone);
  font-family: var(--st-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.st-drawer__close:hover,
.st-drawer__close:focus-visible {
  border-color: var(--st-bone);
  outline: none;
}

.st-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.st-drawer__nav a {
  color: var(--st-bone);
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(235, 230, 220, 0.12);
  transition: padding-left 0.25s var(--st-ease-spring), color 0.2s ease;
}

.st-drawer__nav a:hover,
.st-drawer__nav a[aria-current='page'] {
  color: #d4c4a8;
  padding-left: 0.4rem;
}

.st-drawer__meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: #9e968a;
  line-height: 1.5;
}

/* Main shell — no top nav */
.st-shell {
  padding: 4.5rem 0 0;
}

.st-wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.st-wrap--narrow {
  width: min(42rem, calc(100% - 2.5rem));
}

/* L17 map-first band (text map) */
.st-mapband {
  padding: 1.75rem 0 1.25rem;
  border-bottom: 1px solid var(--st-line);
  background: var(--st-bone);
}

.st-mapband__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem 2rem;
  align-items: end;
}

@media (max-width: 720px) {
  .st-mapband__grid {
    grid-template-columns: 1fr;
  }
}

.st-mapband__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-ash);
  margin: 0 0 0.5rem;
}

.st-mapband__title {
  font-family: var(--st-font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.st-mapband__coords {
  font-family: var(--st-font-body);
  font-size: 0.9rem;
  color: var(--st-ash);
  margin: 0.6rem 0 0;
}

.st-mapband__sketch {
  border: 1px dashed var(--st-line);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--st-charcoal);
  background:
    linear-gradient(90deg, transparent 49%, rgba(138, 115, 85, 0.2) 49%, rgba(138, 115, 85, 0.2) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(138, 115, 85, 0.15) 49%, rgba(138, 115, 85, 0.15) 51%, transparent 51%);
  background-size: 100% 100%, 100% 100%;
}

.st-mapband__sketch strong {
  display: block;
  font-family: var(--st-font-display);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Y17 diagonal clipped panel (typography, no photo) */
.st-hero-diag {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--st-charcoal);
  color: var(--st-bone);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  min-height: clamp(18rem, 48vh, 28rem);
  display: grid;
  align-items: end;
}

.st-hero-diag__inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 5.5rem;
}

.st-hero-diag__brand {
  font-family: var(--st-font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
}

.st-hero-diag__line {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 1.05rem;
  color: #d6d0c4;
}

.st-hero-diag__cta {
  display: inline-block;
  margin-top: 1.35rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--st-bone);
  color: var(--st-bone);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.st-hero-diag__cta:hover {
  background: var(--st-bone);
  color: var(--st-ink);
}

/* S24 cadence helpers */
.st-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  padding: 3rem 0;
}

@media (max-width: 780px) {
  .st-dual {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.st-bleed {
  width: 100%;
  background: var(--st-charcoal);
  color: var(--st-bone);
  padding: 2.75rem 0;
  margin: 0;
}

.st-bleed .st-wrap p,
.st-bleed .st-wrap h2 {
  color: inherit;
}

.st-bleed a {
  color: #e8dfcf;
}

.st-section {
  padding: 2.75rem 0;
}

.st-section h2,
.st-dual h2,
.st-bleed h2 {
  font-family: var(--st-font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.st-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-ash);
  margin: 0 0 0.4rem;
}

.st-lead {
  font-size: 1.12rem;
  margin: 0 0 1rem;
}

.st-prose p {
  margin: 0 0 1rem;
}

.st-prose p:last-child {
  margin-bottom: 0;
}

.st-list-plain {
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-list-plain li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--st-line);
}

.st-list-plain li:first-child {
  border-top: 1px solid var(--st-line);
}

/* C07 offerings table */
.st-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 0;
}

.st-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.st-table th,
.st-table td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--st-line);
  vertical-align: top;
}

.st-table th {
  font-family: var(--st-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom-width: 2px;
  border-bottom-color: var(--st-charcoal);
}

.st-table caption {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-ash);
  margin-bottom: 0.75rem;
}

/* Inner page hero strip */
.st-pagehead {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--st-line);
  background: var(--st-bone);
}

.st-pagehead h1 {
  font-family: var(--st-font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
}

.st-pagehead p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--st-ash);
}

/* K07 contact buttons */
.st-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.95rem 1.35rem;
  font-family: var(--st-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--st-charcoal);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.st-btn--solid {
  background: var(--st-charcoal);
  color: var(--st-bone);
}

.st-btn--solid:hover {
  background: var(--st-ink);
  color: var(--st-bone);
}

.st-btn--ghost {
  background: transparent;
  color: var(--st-ink);
}

.st-btn--ghost:hover {
  background: var(--st-charcoal);
  color: var(--st-bone);
}

.st-form {
  display: grid;
  gap: 0.85rem;
  max-width: 28rem;
}

.st-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.st-form input,
.st-form textarea {
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--st-line);
  background: #fffdf8;
  color: var(--st-ink);
}

.st-form input:focus,
.st-form textarea:focus {
  outline: 2px solid var(--st-accent);
  outline-offset: 1px;
}

.st-form-success {
  display: none;
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--st-accent);
  background: rgba(138, 115, 85, 0.1);
  font-size: 0.95rem;
}

.st-form-success.is-visible {
  display: block;
}

.st-visit-block {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--st-line);
  font-size: 0.98rem;
}

.st-visit-block p {
  margin: 0 0 0.4rem;
}

/* F17 footer — brand + © + legal only (one contact line) */
.st-footer {
  margin-top: 3rem;
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid var(--st-line);
  background: var(--st-bone);
}

.st-footer__brand {
  font-family: var(--st-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0;
}

.st-footer__contact {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: var(--st-charcoal);
  line-height: 1.55;
}

.st-footer__copy {
  margin: 1rem 0 0.65rem;
  font-size: 0.82rem;
  color: var(--st-ash);
}

.st-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
}

.st-footer__legal a {
  color: var(--st-ash);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.st-footer__legal a:hover {
  border-bottom-color: var(--st-ash);
  color: var(--st-ink);
}

/* Cookie CB15 two-line compact */
.st-cookie {
  position: fixed;
  z-index: 100;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 34rem;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  background: var(--st-ink);
  color: var(--st-bone);
  border: 1px solid #4a4642;
  display: none;
  gap: 0.55rem;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.st-cookie.is-visible {
  display: flex;
}

.st-cookie__line1 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

.st-cookie__line2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.st-cookie__line2 p {
  margin: 0;
  flex: 1 1 10rem;
  font-size: 0.78rem;
  color: #c9c2b6;
}

.st-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.st-cookie__actions button {
  font-family: var(--st-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.7rem;
  border: 1px solid #8a8378;
  background: transparent;
  color: var(--st-bone);
  cursor: pointer;
}

.st-cookie__actions button:hover,
.st-cookie__actions button:focus-visible {
  border-color: var(--st-bone);
  outline: none;
}

.st-cookie__actions .st-cookie-accept {
  background: var(--st-bone);
  color: var(--st-ink);
  border-color: var(--st-bone);
}

.st-cookie-settings-panel {
  display: none;
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid #4a4642;
  font-size: 0.8rem;
}

.st-cookie-settings-panel.is-open {
  display: grid;
  gap: 0.4rem;
}

.st-cookie-settings-panel label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Utility */
.st-muted {
  color: var(--st-ash);
}

.st-rule {
  border: 0;
  border-top: 1px solid var(--st-line);
  margin: 0;
}

.st-quote {
  font-family: var(--st-font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0;
}

.st-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
}

.st-hours dt {
  font-weight: 600;
}

.st-hours dd {
  margin: 0;
}
