@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #faf7f2;
  --cream-deep: #f0ebe3;
  --ink: #1a2421;
  --ink-soft: #4a5652;
  --teal: #1a5c56;
  --teal-light: #267870;
  --coral: #c45c4a;
  --coral-soft: #e8a598;
  --gold: #b8956a;
  --white: #ffffff;
  --line: #ddd5c8;
  --success: #1f6b4f;
  --shell: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --section-pad: clamp(72px, 9vw, 120px);
  --radius: 14px;
  --shadow: 0 18px 50px rgba(26, 36, 33, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.cookie-open { padding-bottom: 180px; }

main { overflow-x: hidden; min-width: 0; }

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover, a:focus-visible { color: var(--coral); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: var(--white);
}

.skip:focus { left: 1rem; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-bottom: 0.5rem; }

.prose { color: var(--ink-soft); max-width: 68ch; }
.prose p + p { margin-top: 1rem; }

.surface-cream { background: var(--cream); }
.surface-deep { background: var(--cream-deep); }
.surface-teal { background: var(--teal); color: var(--white); }
.surface-teal h2, .surface-teal h3 { color: var(--white); }
.surface-teal .prose { color: rgba(255,255,255,0.88); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo span { color: var(--coral); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.site-nav a:hover, .site-nav a:focus-visible,
.site-nav a[aria-current="page"] { color: var(--teal); }

.btn-nav {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-nav:hover, .btn-nav:focus-visible {
  background: var(--teal-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease);
}

/* Hero */
.hero {
  padding: var(--section-pad) 0 clamp(48px, 6vw, 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: #b04e3d;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--teal);
  color: var(--white);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.hero-visual figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* About guide */
.about-guide {
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.about-portrait img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  object-position: center 18%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-stats div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.about-stats span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal);
}

/* Tours */
.tours-section {
  padding: var(--section-pad) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}

.tour-card:hover { transform: translateY(-4px); }

.tour-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.tour-card-body { padding: clamp(20px, 3vw, 28px); }

.tour-card ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.tour-card li + li { margin-top: 0.35rem; }

.tour-rate {
  font-weight: 600;
  color: var(--teal);
  margin-top: 1rem;
}

/* Reviews */
.reviews-section {
  padding: var(--section-pad) 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--coral-soft);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
}

.review-card blockquote {
  font-style: italic;
  color: var(--ink-soft);
  padding-top: 1.5rem;
  margin-bottom: 1rem;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.review-card .review-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

/* Blog preview */
.notes-preview {
  padding: var(--section-pad) 0;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.note-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  transition: border-color 0.2s var(--ease);
}

.note-card:hover { border-color: var(--coral-soft); }

.note-card img {
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.note-card time {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.note-card h3 { font-size: 1.1rem; margin: 0.35rem 0; }

.note-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Blog page */
.blog-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 4vw, 48px);
}

.blog-list {
  padding-bottom: var(--section-pad);
}

.blog-item {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.blog-item:first-child { padding-top: 0; }

.blog-item img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.blog-item h2 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); }
.blog-item h2 a { color: var(--ink); }
.blog-item h2 a:hover { color: var(--coral); }

/* Article */
.article-hero {
  padding: clamp(48px, 7vw, 88px) 0 2rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.article-cover {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 720px;
  padding-bottom: var(--section-pad);
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--ink-soft);
}

.article-body li + li { margin-top: 0.35rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding: var(--section-pad) 0;
  align-items: start;
}

.contact-block address {
  font-style: normal;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  font: inherit;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}

.form-submit {
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.form-submit:hover, .form-submit:focus-visible { background: #b04e3d; }

.form-success {
  padding: 1rem 1.25rem;
  background: #e8f5ef;
  border: 1px solid #a8d5bc;
  border-radius: 10px;
  color: var(--success);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-caption {
  padding: 0.85rem 1rem;
  background: var(--white);
  font-size: 0.9rem;
}

/* Legal */
.legal-page {
  padding: clamp(48px, 7vw, 88px) 0 var(--section-pad);
}

.legal-page h1 { margin-bottom: 0.5rem; }

.legal-updated {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.legal-page p, .legal-page li {
  color: var(--ink-soft);
  max-width: 72ch;
}

.legal-page ul, .legal-page ol {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.legal-page li + li { margin-top: 0.35rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: clamp(48px, 6vw, 72px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 48px);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-note {
  font-size: 0.92rem;
  max-width: 42ch;
  margin-bottom: 1rem;
}

.footer-contact {
  font-style: normal;
  line-height: 1.85;
  margin: 1rem 0;
}

.footer-contact a { color: var(--coral-soft); }
.footer-contact a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.footer-links a:hover { color: var(--white); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 40px);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  max-width: 900px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions button {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: all 0.2s var(--ease);
}

#cookie-accept {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

#cookie-accept:hover { background: var(--teal-light); }

.cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cookie-panel.open { display: block; }

.cookie-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .tour-cards, .review-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .blog-item { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .note-card { grid-template-columns: 1fr; }
  .note-card img { max-height: 180px; aspect-ratio: 16/9; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
