﻿:root {
  --color-bg: #f4f1ea;
  --color-bg-soft: #ebe4d8;
  --color-surface: #ffffff;
  --color-surface-soft: rgba(255, 255, 255, 0.84);
  --color-text: #14221d;
  --color-text-muted: #506258;
  --color-heading: #0f1a16;
  --color-primary: #1d6655;
  --color-primary-dark: #134c40;
  --color-primary-soft: #d9ece6;
  --color-accent: #b87b46;
  --color-accent-soft: #f1ddc6;
  --color-border: rgba(20, 34, 29, 0.11);
  --color-border-strong: rgba(20, 34, 29, 0.16);
  --color-alert-bg: #fff2df;
  --color-alert-text: #7b4314;
  --color-alert-border: #d79a4a;

  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Trebuchet MS", "Segoe UI", sans-serif;

  --max-width: 1160px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(20, 34, 29, 0.06);
  --shadow-md: 0 14px 36px rgba(20, 34, 29, 0.10);
  --shadow-lg: 0 22px 50px rgba(20, 34, 29, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(29, 102, 85, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(184, 123, 70, 0.11), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, var(--color-bg) 24%, #f1ede4 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
h4,
.section-title,
.card-title {
  font-family: var(--font-serif);
  color: var(--color-heading);
}

ul,
ol {
  padding-left: 1.2rem;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(244, 241, 234, 0.84);
  border-bottom: 1px solid var(--color-border);
}

.header-inner,
.nav,
.footer-inner,
.site-footer .inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.header-inner,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.site-logo a,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-heading);
}

.site-logo a:hover,
.brand:hover {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 600;
}

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

main.site-shell,
main.legal {
  display: block;
  padding-bottom: 56px;
}

.hero {
  padding: 48px 0 20px;
}

.hero > h1 {
  max-width: 14ch;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.hero > p {
  max-width: 62ch;
  margin: 14px auto 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.hero-subtitle {
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.70));
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  padding: 40px;
}

.hero-copy p {
  max-width: 56ch;
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.btn-primary,
.hotel-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button:hover,
.btn-primary:hover,
.hotel-card .btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button.primary,
.btn-primary,
.hotel-card .btn {
  background: var(--color-primary);
  color: #fff;
}

.button.primary:hover,
.btn-primary:hover,
.hotel-card .btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.button.secondary {
  border-color: var(--color-border-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
}

.button.secondary:hover {
  border-color: rgba(29, 102, 85, 0.28);
  color: var(--color-primary);
}

.hero-side {
  padding: 32px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(15, 26, 22, 0.95), rgba(15, 26, 22, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(29, 102, 85, 0.55), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(184, 123, 70, 0.28), transparent 30%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.hero-side .card-title {
  margin-bottom: 12px;
  font-size: 1.18rem;
  color: #fff;
}

.hero-side ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-side li + li {
  margin-top: 6px;
}

.hero-side .callout {
  margin-top: auto;
}

.section {
  padding: 24px 0 0;
}

.section-inner,
.section-card {
  width: min(100%, var(--max-width));
}

.section-card {
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.06;
}

.section-intro {
  max-width: 68ch;
  margin-top: 10px;
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.spot-card,
.hotel-card,
.info-block,
.reservation-callout,
.callout,
.breadcrumbs {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
}

.card {
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 1.18rem;
}

.card p,
.card li,
.meta,
.spot-card p,
.hotel-card p,
.section-card li,
.section-card p,
.content-body p,
.content-body li {
  margin-top: 10px;
  color: var(--color-text-muted);
}

.card-title {
  font-size: 1rem;
  color: var(--color-heading);
  font-weight: 700;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.spot-card {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.spot-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 102, 85, 0.24);
}

.spot-card-body {
  padding: 1.2rem;
}

.spot-card-body h3 {
  font-size: 1.18rem;
}

.spot-card-body h3 a {
  color: var(--color-heading);
}

.spot-tags,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.spot-tag,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(20, 34, 29, 0.10);
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.spot-tag.reservation {
  border-color: rgba(215, 154, 74, 0.24);
  background: var(--color-alert-bg);
  color: var(--color-alert-text);
}

.callout {
  padding: 18px 20px;
  background: var(--color-primary-soft);
  border-color: rgba(29, 102, 85, 0.18);
}

.callout strong {
  color: var(--color-primary);
}

.content-body {
  max-width: 760px;
}

.content-body h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.content-body p,
.content-body li {
  font-family: var(--font-sans);
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 16px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

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

.info-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 18px;
  margin: 18px 0 0;
  box-shadow: var(--shadow-sm);
}

.info-item .label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reservation-callout {
  padding: 18px 20px;
  margin: 20px 0 0;
  background: var(--color-alert-bg);
  border-color: rgba(215, 154, 74, 0.26);
}

.reservation-callout h3 {
  color: var(--color-alert-text);
  font-size: 1.05rem;
}

.reservation-callout p {
  color: var(--color-alert-text);
}

.hotel-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(20, 34, 29, 0.10);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.hotel-card {
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.hotel-card h4 {
  font-size: 1.02rem;
}

.hotel-card .distance,
.meta {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.hotel-card .detail {
  margin-top: 8px;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer,
.footer {
  margin-top: 44px;
  padding: 28px 0 38px;
  color: var(--color-text-muted);
}

.site-footer .inner,
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.site-footer p,
.footer p,
.page-note,
.disclosure {
  font-size: 0.92rem;
}

.disclosure {
  color: var(--color-text-muted);
  font-style: italic;
}

.legal h1 {
  max-width: none;
  font-size: clamp(2rem, 3vw, 3rem);
}

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

@media (max-width: 920px) {
  .header-inner,
  .nav,
  .site-footer .inner,
  .footer-inner,
  .hero-panel,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-panel,
  .section-card,
  .hero-copy,
  .hero-side {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-panel {
    display: grid;
  }
}

@media (max-width: 680px) {
  .site-shell,
  .header-inner,
  .nav,
  .footer-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

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

  .hero > h1 {
    max-width: 12ch;
  }

  .section {
    padding-top: 18px;
  }

  .section-card,
  .card,
  .hotel-card,
  .reservation-callout,
  .callout,
  .info-block {
    border-radius: var(--radius-md);
  }
}
