:root {
  --parchment: #f3ecde;
  --parchment-light: #faf6ef;
  --plum: #4d302f;
  --plum-dark: #32201f;
  --ocean: #4f7888;
  --ocean-dark: #355a68;
  --gold: #b18b4d;
  --stone: #e5e1da;
  --stone-dark: #aaa39a;
  --white: #ffffff;
  --muted: #6a6260;
  --line: #b9b0a6;
  --shell: 1160px;
}

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

body {
  margin: 0;
  background: var(--parchment);
  color: var(--plum-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(--ocean-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  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(--plum-dark);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.8vw, 6rem);
  line-height: 0.95;
}

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

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

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(--plum-dark);
  color: var(--white);
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 3px double var(--line);
  background: rgba(243, 236, 222, 0.98);
}

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

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

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

.primary-nav a,
.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.opening {
  padding-block: 1.25rem 2rem;
}

.title-panel {
  padding: 1rem 1.2rem 1.2rem;
  border: 3px double var(--line);
  background: var(--parchment-light);
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light { color: #f0ddbc; }

.opening-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.opening-photos figure { margin: 0; }

.opening-photos img {
  height: 360px;
  border: 3px double var(--line);
}

.introduction-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: 1.15rem 1.2rem;
  background: var(--ocean);
  color: var(--white);
}

.opening-lead {
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
}

.image-note,
figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.74rem;
}

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

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ocean-dark);
}

.button-light:hover {
  background: var(--parchment-light);
  color: var(--plum-dark);
}

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

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

.introduction-section {
  padding-block: clamp(2.8rem, 5vw, 4.2rem);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-block: 1rem;
  border-block: 3px double var(--line);
}

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

.review-grid-section {
  padding-block: clamp(2.8rem, 5vw, 4rem);
  background: var(--parchment-light);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.company-details,
.updates-panel {
  padding: 1.25rem;
  border: 3px double var(--line);
  background: var(--white);
}

.details-copy,
.updates-panel > p:not(.eyebrow):not(.form-note) { color: var(--muted); }

.location-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--stone);
}

.location-label {
  margin-bottom: 0.75rem;
  color: var(--ocean-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card address {
  display: grid;
  gap: 0.12rem;
  font-style: normal;
}

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

.location-card > p:last-child {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.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(--stone-dark);
  background: var(--white);
  color: var(--plum-dark);
}

.field input[type="email"]:disabled {
  background: #e2dfda;
  color: #65615e;
  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: #a5a09a;
  background: #dcd9d4;
  color: #605c58;
  cursor: not-allowed;
}

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

.material-detail {
  padding-block: 0 3.5rem;
  background: var(--parchment-light);
}

.material-detail figure { margin: 0; }

.material-detail img {
  height: 260px;
  border: 3px double var(--line);
}

.site-footer {
  padding-block: 1.8rem;
  border-top: 3px double var(--line);
  background: var(--parchment);
}

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

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

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

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

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

.legal-intro h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
}

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

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

.legal-alt {
  border-block: 3px double var(--line);
  background: var(--parchment-light);
}

.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(--gold);
  background: #f4ead8;
  color: var(--plum-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%; }

  .introduction-band,
  .intro-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .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.78rem;
  }

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

  .opening-photos { grid-template-columns: 1fr; }

  .opening-photos img { height: 240px; }

  .button { width: 100%; }

  .material-detail img { height: 220px; }

  .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;
  }
}
