:root {
  --ink: #1c2430;
  --navy: #243044;
  --cream: #f3eee4;
  --paper: #fbf8f2;
  --copper: #b4632a;
  --copper-dark: #8d4a1f;
  --sage: #3f5a4c;
  --muted: #5d6672;
  --line: #d8d0c4;
  --shadow: 0 18px 40px rgba(28, 36, 48, 0.12);
  --header-height: 4.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: var(--copper-dark);
}

a:hover {
  color: var(--copper);
}

h1,
h2,
h3,
.brand-text strong,
.rating-score {
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.6rem 1rem;
  background: var(--copper);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner,
.footer-inner,
.hero-actions,
.rating,
.hero-facts,
.visit-details,
.contact-form,
.subject-grid,
.review-grid {
  display: flex;
}

.header-inner {
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.4rem;
  background: var(--navy);
  color: var(--cream);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--copper);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: #fff;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(180, 99, 42, 0.16), transparent 28%),
    linear-gradient(180deg, #1c2430 0%, #2b384c 100%);
  color: var(--cream);
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e7b48a;
}

.lede {
  max-width: 38rem;
  font-size: 1.2rem;
  color: #e6e0d6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--copper);
  color: #fff;
}

.button-primary:hover {
  background: var(--copper-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1.5px currentColor;
}

.hero .button-secondary {
  color: var(--cream);
}

.hero-card,
.pull-quote,
.subject-grid li,
.review-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.6rem;
  border-radius: 1.1rem;
  color: var(--ink);
}

.hero-card-kicker {
  margin-bottom: 0.4rem;
  color: var(--sage);
  font-weight: 700;
}

.rating {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.7rem;
  margin-bottom: 1rem;
}

.rating-score {
  font-size: 2.4rem;
}

.stars {
  color: var(--copper);
  letter-spacing: 0.08em;
}

.hero-facts {
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section {
  padding: 5rem 0;
}

.about,
.visit {
  background: var(--cream);
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.pull-quote {
  margin: 0;
  padding: 2rem;
  border-left: 6px solid var(--copper);
  border-radius: 0 1rem 1rem 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.section-intro {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.subject-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.subject-grid {
  padding: 0;
  list-style: none;
}

.subject-grid li,
.review-card {
  padding: 1.4rem;
  border-radius: 1rem;
}

.subject-grid li:last-child,
.review-card-wide {
  grid-column: span 2;
}

.rating-inline {
  color: var(--muted);
}

.review-card p {
  font-size: 1.05rem;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.95rem;
}

.visit-details {
  font-style: normal;
}

.map-wrap {
  min-height: 320px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-form {
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--paper);
  font: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--sage);
  font-weight: 600;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  justify-content: center;
  text-align: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-height) + 1px);
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .subject-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .subject-grid li:last-child,
  .review-card-wide {
    grid-column: auto;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
