:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --deep: #122029;
  --radius: 2px;
  --btn-radius: 0px;
  --font-heading: Baskerville, "Baskerville Old Face", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --content-max: 1080px;
  --section-pad: 76px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 28px;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  padding: 12px 18px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: none;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(18, 32, 41, 0.18);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 4px 14px rgba(18, 32, 41, 0.1);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
}

.text-link:hover {
  color: var(--secondary);
}

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.notice-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header .container.nav-inner,
.nav-inner {
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand img {
  width: 28px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.page-hero {
  padding: calc(var(--section-pad) - 12px) 0 40px;
}

.page-hero .lead {
  max-width: 46em;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section-head {
  margin-bottom: 36px;
  max-width: 40em;
}

.section-head p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero {
  padding: 56px 0 40px;
}

.hero-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.hero-copy p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: end;
  max-width: 920px;
  margin: 0 auto;
}

.hero-frame {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
}

.hero-frame--short img {
  height: 200px;
}

.hero-frame--tall img {
  height: 320px;
}

.hero-frame--mid img {
  height: 260px;
}

.hero-frame figcaption {
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.category-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.category-card-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
}

.category-card-body p {
  color: var(--text-muted);
  margin: 0 0 auto;
}

.amenities-lead {
  max-width: 42em;
  margin-bottom: 28px;
  font-size: 18px;
  color: var(--text-muted);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity-tile {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 20px 18px;
  border-radius: var(--radius);
}

.amenity-tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.amenity-tile p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.arrival-note {
  border-top: 2px solid var(--secondary);
  padding-top: 16px;
}

.arrival-note h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.arrival-note p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonial {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:first-child {
  padding-top: 0;
}

.testimonial:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text);
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.regions-list {
  border-top: 1px solid var(--border);
}

.region-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.region-row strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.region-row span {
  color: var(--text-muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.venue-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.venue-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
  gap: 10px;
}

.venue-card-body .kicker {
  margin-bottom: 0;
}

.venue-card-body h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 0;
}

.venue-card-body p {
  margin: 0 0 auto;
  color: var(--text-muted);
  font-size: 15px;
}

.venue-card-body .btn {
  margin-top: 16px;
  align-self: stretch;
  text-align: center;
}

.venue-star {
  font-size: 12px;
  color: var(--accent-2);
  letter-spacing: 0.08em;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.venue-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.venue-row-thumb {
  width: 96px;
  height: 96px;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.venue-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-row-copy {
  min-width: 0;
}

.venue-row-copy h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 6px;
}

.venue-row-copy .meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.venue-row-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.catalog-close {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 42em;
  color: var(--text-muted);
}

.method-lead {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  max-width: 28em;
  margin-bottom: 48px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.method-block h2 {
  margin-bottom: 14px;
}

.method-block p {
  color: var(--text-muted);
}

.contact-intro {
  padding: 48px 0;
}

.contact-intro p {
  max-width: 40em;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-form-wrap {
  padding: 48px 0 var(--section-pad);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  max-width: 760px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
}

.agree-row input {
  margin-top: 4px;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 14px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.agree-error {
  display: none;
  grid-column: 1 / -1;
  color: #8b2e2e;
  font-size: 14px;
  margin: -8px 0 0;
}

.agree-error.is-visible {
  display: block;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  color: #8b2e2e;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-actions {
  grid-column: 1 / -1;
}

.confirm-panel {
  max-width: 640px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 28px;
}

.confirm-panel h2 {
  margin-bottom: 12px;
}

.confirm-panel p {
  color: var(--text-muted);
}

.legal-content {
  padding: 56px 0 var(--section-pad);
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-bottom: var(--section-pad);
}

.sitemap-group h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-group li {
  margin-bottom: 10px;
}

.sitemap-group a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
}

.sitemap-group a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-brand-band {
  padding: 56px 0 36px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-brand-lockup img {
  width: 32px;
  height: 53px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.1;
}

.footer-blurb {
  max-width: 36em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-about {
  max-width: 40em;
  color: var(--text-muted);
  font-size: 15px;
  margin: 28px 0 0;
}

.footer-email {
  display: inline-block;
  margin-top: 4px;
}

.footer-links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 28px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--border);
  align-items: start;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-top {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  justify-self: end;
  white-space: nowrap;
}

.footer-top:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0 28px;
}

.footer-independence {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-meta p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta button {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-meta button:hover {
  color: var(--secondary);
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.consent-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1px 1fr;
  gap: 24px;
  align-items: start;
}

.consent-copy h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

.consent-copy p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.consent-copy a {
  font-size: 14px;
}

.consent-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.consent-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 12px;
}

.consent-cats .btn {
  padding: 8px 12px;
  font-size: 12px;
}

.consent-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.consent-cat input:disabled {
  opacity: 0.7;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
}

.consent-banner[hidden] {
  display: none !important;
}

.is-nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid,
  .arrival-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    justify-self: start;
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 28px 16px;
  }

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

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--border);
    color: var(--accent);
  }

  .site-header {
    position: sticky;
  }

  .category-grid,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-frames {
    gap: 14px;
  }

  .hero-frame--short img {
    height: 160px;
  }

  .hero-frame--tall img {
    height: 240px;
  }

  .hero-frame--mid img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    align-items: stretch;
    max-width: none;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-frame {
    flex: 0 0 72%;
  }

  .hero-frame img,
  .hero-frame--short img,
  .hero-frame--tall img,
  .hero-frame--mid img {
    height: 220px;
  }

  .amenities-grid,
  .arrival-grid,
  .category-grid,
  .catalog-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .region-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .venue-row {
    grid-template-columns: 96px 1fr;
  }

  .venue-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .consent-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .consent-divider {
    width: 100%;
    height: 1px;
  }

  .footer-links-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container,
  .consent-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .hero-frame {
    flex-basis: 85%;
  }

  .venue-row {
    grid-template-columns: 1fr;
  }

  .venue-row-thumb {
    width: 100%;
    height: 180px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .btn {
    width: 100%;
  }
}
