:root {
  --alabaster: #f4f0e8;
  --ink: #19324d;
  --ink-dark: #10263a;
  --bronze: #9a7452;
  --bronze-dark: #765438;
  --sandstone: #e8ddcc;
  --white: #ffffff;
  --muted: #66717d;
  --line: #b9b3aa;
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--alabaster);
  color: var(--ink-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover { color: var(--bronze-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 3px;
}

button, input { font: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3, .wordmark, .footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink-dark);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  margin-bottom: 0.9rem;
  font-size: clamp(3.1rem, 6.6vw, 6rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

p:last-child { margin-bottom: 0; }

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow { max-width: 840px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink-dark);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.98);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.wordmark {
  color: var(--ink-dark);
  font-size: 1.28rem;
  text-decoration: none;
}

.primary-nav,
.footer-nav,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0;
  color: var(--ink-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.opening {
  padding-block: clamp(1.5rem, 3vw, 2.8rem);
}

.presentation-board {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.opening-photo {
  margin: 0;
  border-right: 1px solid var(--line);
}

.opening-photo img {
  height: 590px;
}

.opening-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3.2rem);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--bronze-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light { color: #d9c1aa; }

.opening-lead {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.04rem;
}

.address-block {
  display: grid;
  gap: 0.1rem;
  margin: 1.1rem 0;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
}

.address-label {
  margin-bottom: 0.4rem;
  color: var(--bronze-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-note,
figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: italic;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid var(--ink-dark);
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
}

.button-primary {
  background: var(--ink-dark);
  color: var(--white);
}

.button-primary:hover {
  background: var(--bronze);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--ink-dark);
}

.button-secondary:hover { background: var(--sandstone); }

.about-section {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background: var(--white);
}

.image-ribbon {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
  padding-block: 0.7rem;
  border-block: 1px solid var(--line);
}

.image-ribbon figure { margin: 0; }

.image-ribbon img {
  height: 190px;
  border: 1px solid var(--line);
}

.image-ribbon figure:nth-child(2) img { height: 225px; }

.about-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.about-copy .eyebrow { grid-column: 1 / -1; }

.about-copy p { color: var(--muted); }

.details-section {
  padding-block: clamp(3rem, 5vw, 4rem);
  background: var(--sandstone);
  border-block: 1px solid var(--line);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.details-grid > div > p:not(.eyebrow) { color: var(--muted); }

.details-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.details-list > div {
  display: grid;
  grid-template-columns: minmax(145px, 0.62fr) minmax(0, 1.38fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--ink-dark);
  font-weight: 850;
}

.details-list dd {
  margin: 0;
  color: var(--muted);
}

.location-section {
  padding-block: clamp(3rem, 5vw, 4.2rem);
  background: var(--ink);
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.location-section h2 { color: var(--white); }

.location-section > .shell > div:first-child p:not(.eyebrow) { color: #d7e0e8; }

.location-card {
  display: grid;
  gap: 0.15rem;
  padding: 1.2rem;
  border: 1px solid #798b9a;
  background: var(--white);
  color: var(--ink-dark);
  font-style: normal;
}

.location-card strong { margin-bottom: 0.25rem; }

.location-card .button {
  justify-self: start;
  margin-top: 0.9rem;
}

.button-bronze {
  background: var(--bronze);
  color: var(--white);
}

.button-bronze:hover {
  background: var(--bronze-dark);
  color: var(--white);
}

.newsletter {
  padding-block: clamp(3rem, 5vw, 4.3rem);
  background: var(--alabaster);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.newsletter p:not(.eyebrow):not(.form-note) { color: var(--muted); }

.newsletter-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label { font-weight: 850; }

.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-dark);
}

.field input[type="email"]:disabled {
  background: #e5e1da;
  color: #666c72;
  cursor: not-allowed;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.18rem 0 0;
}

.button-disabled,
.button-disabled:disabled {
  border-color: #a3a3a0;
  background: #dfdedb;
  color: #62666a;
  cursor: not-allowed;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
  background: var(--sandstone);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
}

.footer-nav { justify-content: flex-end; }

.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.legal-main { background: var(--white); }

.legal-intro {
  padding-block: clamp(3rem, 6vw, 4.8rem);
  border-bottom: 1px solid var(--line);
  background: var(--sandstone);
}

.legal-intro p:last-child {
  max-width: 68ch;
  color: var(--muted);
}

.legal-section {
  padding-block: clamp(3.1rem, 6vw, 4.8rem);
  scroll-margin-top: 1rem;
}

.legal-alt {
  border-block: 1px solid var(--line);
  background: var(--alabaster);
}

.legal-copy h2 { margin-bottom: 2rem; }
.legal-copy h3 { margin-top: 1.6rem; }
.legal-copy p { color: var(--muted); }

.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 5px solid var(--bronze);
  background: #f1e8dc;
  color: var(--ink-dark) !important;
}

.legal-return { padding-block: 2.4rem; }

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .primary-nav { width: 100%; }

  .presentation-board {
    grid-template-columns: 1fr;
  }

  .opening-copy { order: 1; }

  .opening-photo {
    order: 2;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .opening-photo img { height: 440px; }

  .about-copy,
  .details-grid,
  .location-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .about-copy .eyebrow { grid-column: auto; }

  .footer-grid { flex-direction: column; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 1.3rem), var(--shell)); }

  .primary-nav { gap: 0.3rem 0.7rem; }

  .primary-nav a {
    min-height: 46px;
    font-size: 0.8rem;
  }

  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }

  .opening-photo img { height: 330px; }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button { width: 100%; }

  .image-ribbon {
    grid-template-columns: 1fr;
  }

  .image-ribbon img,
  .image-ribbon figure:nth-child(2) img {
    height: 220px;
  }

  .details-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
