:root {
  --oatmeal: #efe6d6;
  --oatmeal-light: #f8f3ea;
  --aubergine: #4a2e3a;
  --aubergine-deep: #2f1d26;
  --fern: #607a61;
  --fern-dark: #435845;
  --apricot: #eea477;
  --white: #fffdf9;
  --muted: #706662;
  --line: #b9aa9f;
  --shell: 1160px;
}

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

body {
  margin: 0;
  background: var(--oatmeal);
  color: var(--aubergine-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  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(--fern-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--apricot);
  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(--aubergine-deep);
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  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(--aubergine-deep);
  color: var(--white);
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(239,230,214,0.98);
}

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

.wordmark {
  color: var(--aubergine-deep);
  font-size: 1.2rem;
  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.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.name-band {
  padding: 1.15rem 1.2rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--oatmeal-light);
}

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

.eyebrow-light { color: #d8ead8; }

.opening-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(300px, 0.95fr) minmax(230px, 0.6fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
  align-items: start;
}

.opening-copy {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.opening-lead {
  color: var(--aubergine);
  font-size: 1.2rem;
  line-height: 1.4;
}

.opening-copy > p:not(.opening-lead) { color: var(--muted); }

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

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

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

.opening-tall,
.opening-square {
  margin: 0;
}

.opening-tall img {
  height: 440px;
  border: 1px solid var(--line);
}

.opening-square {
  margin-top: 4rem;
}

.opening-square img {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
}

.image-note,
figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
}

figcaption span {
  margin-right: 0.45rem;
  color: var(--apricot);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.introduction-section {
  padding-block: clamp(3rem, 5vw, 4.1rem);
  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;
}

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

.detail-band {
  padding-block: clamp(2.8rem, 4vw, 3.7rem);
  background: var(--fern);
}

.detail-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.3);
  background: var(--oatmeal-light);
}

.company-details,
.updates-panel {
  padding: 1.25rem;
}

.company-details {
  border-right: 1px solid var(--line);
}

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

.address-label {
  margin-bottom: 0.75rem;
  color: var(--apricot);
  font-weight: 900;
}

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

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

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

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

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

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

.field label { font-weight: 800; }

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

.field input[type="email"]:disabled {
  background: #e9e2d8;
  color: #69635f;
  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: #aaa198;
  background: #ddd6cc;
  color: #655f5b;
  cursor: not-allowed;
}

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

.image-notes {
  padding-block: clamp(3rem, 5vw, 4rem);
  background: var(--aubergine);
  color: var(--white);
}

.image-notes-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 0.8rem;
  align-items: center;
}

.image-notes figure { margin: 0; }

.image-notes img {
  height: 250px;
  border: 1px solid #7f6370;
}

.image-notes h2,
.image-notes .eyebrow { color: var(--white); }

.image-notes p { color: #eee5e8; }

.image-notes figcaption { color: #eee5e8; }

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

.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: 1px solid var(--line);
  background: var(--oatmeal);
}

.legal-intro h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.5vw, 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: 1px solid var(--line);
  background: var(--oatmeal-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(--apricot);
  background: #f7e8dc;
  color: var(--aubergine-deep) !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%; }

  .opening-grid {
    display: flex;
    flex-direction: column;
  }

  .opening-copy { order: 1; }
  .opening-tall { order: 2; }
  .opening-square { order: 3; margin-top: 0; }

  .opening-tall img { height: 380px; }
  .opening-square img { height: 300px; aspect-ratio: auto; }

  .intro-grid,
  .detail-band-grid,
  .image-notes-grid {
    grid-template-columns: 1fr;
  }

  .company-details {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .opening-tall img,
  .opening-square img,
  .image-notes img {
    height: 230px;
  }

  .button { width: 100%; }

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