:root {
  --primary: #D9A441;
  --teal: #2F6F6B;
  --bg: #F4ECDC;
  --text: #2B2620;
  --radius: 10px;
  --max: 940px;
}

* { box-sizing: border-box; }

html { font-display: swap; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.35;
}

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

a { color: var(--teal); }

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

.section-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 48px 20px;
}

/* Header */
.site-header {
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 20;
}

.header-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 900;
  color: var(--teal);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.hamburger {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  padding: 6px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--primary); }

@media (max-width: 720px) {
  .hamburger { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
  }
  .main-nav ul li {
    border-top: 1px solid var(--primary);
  }
  .main-nav ul li a {
    display: block;
    padding: 12px 4px;
  }
  .main-nav.is-open { display: block; }
}

/* Hero - diagonal split mid-century */
.hero {
  position: relative;
  padding: 76px 20px 96px;
  overflow: hidden;
  background: var(--teal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  clip-path: polygon(0 0, 62% 0, 38% 100%, 0 100%);
}

.hero-decor {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(244, 236, 220, 0.14);
}

.hero-decor::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid rgba(244, 236, 220, 0.4);
}

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  color: var(--bg);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin: 0 0 14px;
}

.hero h1 {
  color: #2B2620;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  margin: 0 0 18px;
}

.hero-lead {
  color: #2B2620;
  margin: 0 0 28px;
  font-size: 1.05rem;
  max-width: 520px;
}

/* CTA */
.cta {
  display: inline-block;
  text-decoration: none;
  border: none;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  padding: 14px 30px;
  font-weight: 700;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.cta:hover {
  background: #244f4c;
  transform: translateY(-2px);
}

.cta--alt {
  background: var(--primary);
  color: #2B2620;
}

.cta--alt:hover {
  background: #c2902f;
}

/* Section numbering */
.content-section { border-top: 3px dashed rgba(47, 111, 107, 0.25); }

.section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #2B2620;
  font-family: 'Gothic A1', sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
}

.content-section h2 {
  font-size: 1.4rem;
  margin: 0 0 16px;
}

/* Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.95rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table th, .spec-table td {
  border: 1px solid #e8dcc0;
  padding: 12px 14px;
  text-align: left;
}

.spec-table thead th {
  background: var(--teal);
  color: #fff;
}

/* Branch / callout boxes */
.branch-box {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.branch-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  border-left: 6px solid var(--primary);
}

.branch-item h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--teal);
}

.branch-item p { margin: 0; }

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 32px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

/* FAQ */
.faq-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
}

.faq-list p {
  margin: 12px 0 0;
}

/* Images */
.shot {
  margin: 0 auto;
  max-width: 480px;
  padding: 0 20px;
}

.shot img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.shot figcaption {
  font-size: 0.9rem;
  color: #5a5142;
  margin-top: 8px;
  text-align: center;
}

/* CTA block (bottom) */
.cta-block {
  background: var(--teal);
  color: #fff;
  text-align: center;
}

.cta-block p { color: #f4ecdc; }

.cta-heading {
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: #fff;
  font-weight: 900;
}

/* Related links */
.related-heading {
  font-size: 1.4rem;
  margin: 0 0 16px;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.related-list a {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--teal);
  font-weight: 700;
}

.related-list a:hover {
  background: var(--primary);
  color: #2B2620;
}

/* Footer */
footer {
  background: #2B2620;
  color: #F4ECDC;
  margin-top: 24px;
}

footer address {
  font-style: normal;
  line-height: 1.8;
}

footer small {
  display: block;
  margin-top: 16px;
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
