@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap");

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; }
select { appearance: auto; }

/* ── Screen reader only ────────────────────────── */
.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; }

/* ── Design Tokens ─────────────────────────────── */
:root {
  --brand: oklch(0.52 0.15 50);
  --brand-dark: oklch(0.48 0.14 50);
  --brand-surface: #fcfcfb;
  --brand-ink: #2e3444;
  --muted-fg: oklch(0.55 0.04 60);
  --border-color: oklch(0.85 0.02 70);
  --radius: 0.625rem;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Typography ────────────────────────────────── */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

/* ── Layout Utilities ──────────────────────────── */
.container { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; }
.section { padding: 6rem 1.5rem; }
.section-alt { background-color: rgba(46,52,68,0.03); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.aspect-video { aspect-ratio: 16 / 9; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-9 { height: 2.25rem; }
.h-\[60vh\] { height: 60vh; }
.min-h-\[400px\] { min-height: 400px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-0 { margin-top: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mb-0 { margin-bottom: 0; }
.m-6 { margin: -1.5rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.pl-2 { padding-left: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-24 { padding-top: 6rem; }
.pt-12 { padding-top: 3rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-24 { padding-bottom: 6rem; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.aspect-square { aspect-ratio: 1 / 1; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.block { display: block; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.inline-flex { display: inline-flex; }
.text-left { text-align: left; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.self-start { align-self: flex-start; }
.italic { font-style: italic; }
.font-medium { font-weight: 500; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.transition-transform { transition: transform 0.2s ease; }
.hover\:underline:hover { text-decoration: underline; }

/* ── Grids ─────────────────────────────────────── */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 64rem) {
  .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg-col-span-5 { grid-column: span 5; }
  .lg-col-span-7 { grid-column: span 7; }
  .lg-hidden { display: none !important; }
  .lg-order-1 { order: 1; }
  .lg-order-2 { order: 2; }
}
@media (min-width: 768px) {
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-inline-flex { display: inline-flex !important; }
  .md-flex { display: flex !important; }
  .md-hidden { display: none !important; }
  .md-block { display: block !important; }
}
@media (min-width: 768px) {
  .md-p-10 { padding: 2.5rem; }
}
@media (min-width: 640px) {
  .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Colors ────────────────────────────────────── */
.text-brand { color: var(--brand); }
.text-brand-ink { color: var(--brand-ink); }
.text-white { color: #fff; }
.bg-brand { background-color: var(--brand); }
.bg-brand\/5 { background-color: rgba(89,128,70,0.05); }
.bg-brand\/10 { background-color: rgba(89,128,70,0.1); }
.bg-brand-surface { background-color: var(--brand-surface); }
.bg-brand-ink { background-color: var(--brand-ink); }
.bg-white { background-color: #fff; }
.bg-zinc-100 { background-color: #f4f4f5; }
.bg-zinc-200 { background-color: #e4e4e7; }
.opacity-80 { opacity: 0.8; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-60 { opacity: 0.6; }
.text-opacity-70 { color: rgba(46,52,68,0.7); }
.text-opacity-50 { color: rgba(46,52,68,0.5); }
.text-opacity-60 { color: rgba(46,52,68,0.6); }
.text-brand-ink\/9 { color: rgba(46,52,68,0.9); }
.text-brand-ink\/8 { color: rgba(46,52,68,0.8); }
.text-brand-ink\/7 { color: rgba(46,52,68,0.7); }
.text-brand-ink\/6 { color: rgba(46,52,68,0.6); }
.text-brand-ink\/5 { color: rgba(46,52,68,0.5); }
.text-brand-ink\/80 { color: rgba(46,52,68,0.8); }
.text-brand-ink\/70 { color: rgba(46,52,68,0.7); }
.text-white\/8 { color: rgba(255,255,255,0.8); }
.text-white\/4 { color: rgba(255,255,255,0.4); }
.text-white\/3 { color: rgba(255,255,255,0.3); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-brand-ink\/50 { color: rgba(46,52,68,0.5); }
.text-brand-ink\/60 { color: rgba(46,52,68,0.6); }
.text-brand-ink\/90 { color: rgba(46,52,68,0.9); }
.bg-brand-ink\/5 { background-color: rgba(46,52,68,0.05); }
.bg-opacity-40 { background-color: rgba(46,52,68,0.4); }
.bg-opacity-5 { background-color: rgba(46,52,68,0.05); }
.bg-opacity-10 { background-color: rgba(46,52,68,0.1); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }

/* ── Borders & Shadows ─────────────────────────── */
.border-b { border-bottom: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: calc(var(--radius) - 2px); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-3xl { border-radius: calc(var(--radius) + 12px); }
.col-span-2 { grid-column: span 2; }
.border { border: 1px solid; }
.border-black\/5 { border-color: rgba(0,0,0,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-brand\/10 { border-color: rgba(89,128,70,0.1); }
.border-brand\/20 { border-color: rgba(89,128,70,0.2); }
.border-brand-ink\/10 { border-color: rgba(46,52,68,0.1); }
.border-brand-ink\/5 { border-color: rgba(46,52,68,0.05); }
.border-brand { border-color: var(--brand); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }

/* ── Rings ─────────────────────────────────── */
.ring-1 { box-shadow: inset 0 0 0 1px; }
.ring-brand { box-shadow: inset 0 0 0 1px var(--brand); }
.ring-brand\/10 { box-shadow: inset 0 0 0 1px rgba(89,128,70,0.1); }
.ring-black\/5 { box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }
.ring-brand-ink\/10 { box-shadow: inset 0 0 0 1px rgba(46,52,68,0.1); }

/* ── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.5rem; background: var(--brand); color: #fff;
  font-size: 0.875rem; font-weight: 500; padding: 0 1.5rem;
  border-radius: calc(var(--radius) - 2px); border: 1px solid var(--brand);
  transition: transform 0.1s ease, background-color 0.2s ease; cursor: pointer;
}
.btn-primary:hover { background-color: var(--brand-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.5rem; background: transparent; color: var(--brand-ink);
  font-size: 0.875rem; font-weight: 500; padding: 0 1.5rem;
  border-radius: calc(var(--radius) - 2px); border: 1px solid rgba(46,52,68,0.1);
  transition: background-color 0.2s ease; cursor: pointer;
}
.btn-outline:hover { background-color: rgba(46,52,68,0.05); }
.btn-sm { height: 2.25rem; font-size: 0.875rem; padding: 0 1rem; }
.btn-icon {
  height: 2.5rem; background: rgba(46,52,68,0.05); color: var(--brand-ink);
  font-size: 0.875rem; font-weight: 500; padding: 0 1.25rem;
  border-radius: calc(var(--radius) - 2px); border: 1px solid rgba(46,52,68,0.1);
  transition: background-color 0.2s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.btn-icon:hover { background-color: rgba(46,52,68,0.08); }
.link-arrow {
  font-size: 0.875rem; font-weight: 500; color: var(--brand);
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.5rem; }
.link-arrow svg { width: 0.75rem; height: 0.75rem; }

/* ── Header ────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,252,251,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,52,68,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; height: 6rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 1rem; }
.logo img { width: 4.5rem; height: 4.5rem; object-fit: contain; }
.logo-text { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; color: var(--brand); }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: rgba(46,52,68,0.7); transition: color 0.2s; }
.nav-link:hover { color: var(--brand); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* Mobile menu toggle (pure CSS) */
.menu-toggle { display: none; }
.menu-label { display: block; cursor: pointer; padding: 0.5rem; color: rgba(46,52,68,0.7); transition: color 0.2s; }
.menu-label:hover { color: var(--brand); }
@media (min-width: 768px) { .menu-label { display: none; } }
.mobile-menu { display: none; border-top: 1px solid rgba(46,52,68,0.05); padding: 1rem 1.5rem; background: rgba(252,252,251,0.95); }
.mobile-menu a { display: block; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; color: rgba(46,52,68,0.7); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--brand); }
#menu-open:checked ~ .mobile-menu { display: block; }

/* ── Footer ────────────────────────────────────── */
.footer { background: var(--brand-ink); color: #e4e4e7; }
.footer-inner { max-width: 80rem; margin: 0 auto; padding: 6rem 1.5rem 3rem; }
.footer-grid { display: grid; gap: 4rem; margin-bottom: 6rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-contact-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
.footer-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.footer-input { width: 100%; background: transparent; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 0; font-size: 0.875rem; color: #fff; outline: none; transition: border-color 0.2s; }
.footer-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-input:focus { border-color: var(--brand); }
.footer-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.footer-form-grid .col-span-2 { grid-column: span 2; }
.footer-submit { grid-column: span 2; margin-top: 1.5rem; height: 2.5rem; background: var(--brand); color: #fff; font-size: 0.875rem; font-weight: 500; border-radius: calc(var(--radius) - 2px); border: none; padding: 0 1.5rem; cursor: pointer; transition: background-color 0.2s; }
.footer-submit:hover { background-color: var(--brand-dark); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-nav { display: flex; gap: 2rem; margin-top: 1rem; }
@media (min-width: 768px) { .footer-nav { margin-top: 0; } }
.footer-nav a { transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }

/* ── Cards ─────────────────────────────────────── */
.card {
  background: var(--brand-surface); padding: 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-0.25rem); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: calc(var(--radius) + 4px); background: #f4f4f5; margin-bottom: 1rem; }
.card-badge { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; }
.card-badge svg { width: 0.75rem; height: 0.75rem; }
.card-title { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-desc { font-size: 0.875rem; color: rgba(46,52,68,0.7); line-height: 1.625; margin-bottom: 1.5rem; }
.card-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.card-price-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(46,52,68,0.5); }
.card-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--brand); }

/* ── Service Card ──────────────────────────────── */
.service-card {
  background: var(--brand-surface); padding: 0.5rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-0.25rem); }
.service-card .p-4 { padding: 1rem; }
.service-card .service-link { font-size: 0.875rem; font-weight: 500; color: var(--brand); display: inline-flex; align-items: center; gap: 0.25rem; }
.service-card .service-link svg { width: 0.75rem; height: 0.75rem; }

/* ── Forms ─────────────────────────────────────── */
.form-input {
  width: 100%; background: transparent;
  border-bottom: 1px solid rgba(46,52,68,0.2);
  padding: 0.5rem 0; font-size: 0.875rem;
  color: var(--brand-ink); outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(46,52,68,0.3); }
.form-input:focus { border-color: var(--brand); }
.form-select {
  width: 100%; background: transparent;
  border-bottom: 1px solid rgba(46,52,68,0.2);
  padding: 0.5rem 0; font-size: 0.875rem;
  color: var(--brand-ink); outline: none;
  transition: border-color 0.2s;
}
.form-select:focus { border-color: var(--brand); }
.form-textarea {
  width: 100%; background: transparent;
  border-bottom: 1px solid rgba(46,52,68,0.2);
  padding: 0.5rem 0; font-size: 0.875rem;
  color: var(--brand-ink); outline: none; resize: none;
  transition: border-color 0.2s;
}
.form-textarea:focus { border-color: var(--brand); }
.form-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(46,52,68,0.5); margin-bottom: 0.5rem; display: block; }
.form-submit {
  width: 100%; height: 2.75rem; background: var(--brand); color: #fff;
  font-size: 0.875rem; font-weight: 500; border-radius: calc(var(--radius) - 2px);
  border: none; cursor: pointer; transition: background-color 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { background-color: var(--brand-dark); }

/* ── Hero ──────────────────────────────────────── */
.hero-overlay { position: absolute; inset: 0; background: rgba(46,52,68,0.4); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-text { position: relative; z-index: 10; }

/* ── Value Icon ────────────────────────────────── */
.value-icon { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: rgba(89,128,70,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-icon svg { width: 1rem; height: 1rem; color: var(--brand); }

/* ── Highlight Box ─────────────────────────────── */
.highlight-box { background: rgba(89,128,70,0.05); padding: 1.5rem; border-radius: calc(var(--radius) + 4px); border: 1px solid rgba(89,128,70,0.1); }
.quote { font-size: 0.875rem; font-style: italic; font-family: var(--font-serif); }
.quote-author { font-size: 0.75rem; font-weight: 500; margin-top: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand); }

/* ── Amenities ─────────────────────────────────── */
.amenity { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: rgba(46,52,68,0.05); border-radius: calc(var(--radius) - 2px); }
.amenity svg { width: 1rem; height: 1rem; color: var(--brand); flex-shrink: 0; }
.amenity span { font-size: 0.875rem; font-weight: 500; }

/* ── Checklist ─────────────────────────────────── */
.checklist-item { display: flex; align-items: center; gap: 0.75rem; }
.checklist-item svg { width: 1rem; height: 1rem; color: var(--brand); flex-shrink: 0; }
.checklist-item span { font-size: 0.875rem; color: rgba(46,52,68,0.8); }

/* ── Menu Item ─────────────────────────────────── */
.menu-item { padding: 1.25rem; background: var(--brand-surface); border-radius: calc(var(--radius) + 4px); border: 1px solid rgba(0,0,0,0.05); }
.menu-item h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.25rem; }
.menu-item p { font-size: 0.875rem; color: rgba(46,52,68,0.6); }

/* ── Tour Card ─────────────────────────────────── */
.tour-card {
  background: var(--brand-surface);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.tour-card.featured { border-width: 2px; border-color: rgba(89,128,70,0.2); }
.tour-hero { position: relative; aspect-ratio: 16/10; overflow: hidden; }
@media (min-width: 1024px) { .tour-hero { aspect-ratio: auto; min-height: 26.25rem; } }
.tour-info { padding: 2rem; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .tour-info { padding: 2.5rem; } }
.tour-route { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; overflow-wrap: break-word; word-break: break-word; }
.tour-route svg { width: 0.75rem; height: 0.75rem; }
.tour-title { font-family: var(--font-serif); font-size: 1.875rem; margin-bottom: 0.5rem; }
.tour-tagline { font-size: 0.875rem; font-style: italic; font-family: var(--font-serif); color: rgba(46,52,68,0.6); margin-bottom: 1rem; }
.tour-desc { font-size: 0.875rem; color: rgba(46,52,68,0.7); line-height: 1.625; margin-bottom: 1.5rem; }
.tour-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; color: var(--brand-ink); display: flex; align-items: center; gap: 0.375rem; }
.tour-badge svg { width: 0.75rem; height: 0.75rem; }
.tour-popular { position: absolute; top: 1rem; right: 1rem; background: var(--brand); color: #fff; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 9999px; }
.tour-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; border-radius: calc(var(--radius) + 4px); border: 1px solid rgba(0,0,0,0.05); -webkit-overflow-scrolling: touch; }
.tour-table { width: 100%; font-size: 0.8125rem; border-collapse: collapse; min-width: 320px; }
.tour-table th { text-align: left; padding: 0.625rem 0.75rem; font-weight: 500; background: rgba(46,52,68,0.05); font-size: 0.75rem; white-space: nowrap; position: sticky; top: 0; z-index: 1; }
.tour-table td { padding: 0.625rem 0.75rem; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.8125rem; }
.tour-table td:first-child, .tour-table th:first-child { position: sticky; left: 0; z-index: 2; background: inherit; font-weight: 500; }
.tour-table td:last-child, .tour-table th:last-child { text-align: right; }
.tour-table .price-season { font-weight: 600; color: var(--brand); text-align: right; }
.tour-table .price-off { color: rgba(46,52,68,0.7); text-align: right; }
.tour-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: auto; }

/* Itinerary details */
.tour-itin summary { cursor: pointer; font-size: 0.875rem; font-weight: 500; color: var(--brand); padding: 0.25rem 0; user-select: none; list-style: none; }
.tour-itin summary::-webkit-details-marker { display: none; }
.tour-itin summary:hover { text-decoration: underline; }
.tour-itin .itin-content { padding-top: 1rem; }
.itin-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .itin-grid { grid-template-columns: repeat(2, 1fr); } }
.itin-item { position: relative; padding-left: 2rem; }
.itin-item::before { content: ""; position: absolute; left: 0; top: 0.375rem; width: 0.625rem; height: 0.625rem; border-radius: 9999px; background: rgba(89,128,70,0.3); box-shadow: 0 0 0 4px rgba(89,128,70,0.1); }
.itin-day { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 500; }
.itin-title { font-size: 0.875rem; font-weight: 600; color: var(--brand-ink); margin-top: 0.25rem; }
.itin-stops { margin-top: 0.5rem; }
.itin-stops li { font-size: 0.875rem; color: rgba(46,52,68,0.7); display: flex; align-items: flex-start; gap: 0.5rem; }
.itin-stops li::before { content: "\2022"; color: rgba(89,128,70,0.6); margin-top: 0.125rem; flex-shrink: 0; }

@media (max-width: 639px) {
  .tour-table { font-size: 0.6875rem; min-width: 280px; }
  .tour-table th, .tour-table td { padding: 0.5rem; }
  .tour-table th { font-size: 0.6875rem; }
  .tour-table td { font-size: 0.6875rem; }
  .tour-table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tour-info { padding: 1rem !important; }
  .tour-title { font-size: 1.5rem !important; }
  .tour-desc { font-size: 0.75rem; }
  .tour-tagline { font-size: 0.8125rem; }
  .section-header p { font-size: 0.8125rem; }
  .page-header p { font-size: 0.9375rem; }
  .property-box p { font-size: 0.8125rem; }
  .stat-card p { font-size: 0.8125rem; }
  .menu-item p { font-size: 0.8125rem; }
  .tour-badge { font-size: 0.6875rem; padding: 0.2rem 0.6rem; }
  .tour-popular { font-size: 0.6875rem; padding: 0.2rem 0.6rem; }
  .tour-route { font-size: 0.6875rem; }
  .tour-actions { flex-direction: column; }
  .tour-actions a { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 639px) {
  .tour-table { display: block; }
  .tour-table thead { display: none; }
  .tour-table tbody { display: block; }
  .tour-table tbody tr { display: block; margin-bottom: 1rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 0.5rem; overflow: hidden; }
  .tour-table tbody td { display: block; padding: 0.5rem 0.75rem; text-align: left !important; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .tour-table tbody td::before { content: attr(data-label); font-weight: 600; font-size: 0.75rem; color: var(--brand-ink/60); display: block; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
  .tour-table tbody td:last-child { border-bottom: none; font-weight: 600; color: var(--brand); }
  .tour-table tbody tr:last-child td:last-child { border-bottom: none; }
}

/* ── Contact Icons ─────────────────────────────── */
.contact-icon { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: rgba(89,128,70,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1rem; height: 1rem; color: var(--brand); }

/* ── Property Box ──────────────────────────────── */
.property-box { background: var(--brand-ink); color: #fff; padding: 2rem; border-radius: calc(var(--radius) + 8px); }
.property-box h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.5rem; }
.property-box p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.625; }

/* ── Stats / Why Us ────────────────────────────── */
.stat-card { padding: 1.5rem; text-align: center; }
.stat-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.75rem; }
.stat-card p { font-size: 0.875rem; color: rgba(46,52,68,0.7); }

/* ── Section Headers ───────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-family: var(--font-serif); font-size: 1.875rem; line-height: 1.25; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }
.section-header p { font-size: 0.875rem; color: rgba(46,52,68,0.6); max-width: 56ch; margin: 0 auto; }
.page-header { padding: 6rem 1.5rem; background: rgba(46,52,68,0.03); }
.page-header-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.page-header .badge { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); margin-bottom: 1rem; display: block; }
.page-header h1 { font-family: var(--font-serif); font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-header h1 { font-size: 4rem; } }
.page-header p { font-size: 1.125rem; color: rgba(46,52,68,0.7); max-width: 60ch; margin: 0 auto; }

/* ── Two Column Layout ─────────────────────────── */
.two-col { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, 1fr); } }
.two-col-reverse { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .two-col-reverse { grid-template-columns: repeat(2, 1fr); } }

/* ── Selection ─────────────────────────────────── */
::selection { background: rgba(89,128,70,0.1); }

/* ── Tour card grid on mobile ──────────────────── */
.tour-split { display: grid; }
@media (min-width: 1024px) { .tour-split { grid-template-columns: repeat(2, 1fr); } }

/* ── Responsive Typography ─────────────────────── */
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[10px\] { font-size: 10px; }

@media (min-width: 768px) {
  .md-text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md-text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md-text-7xl { font-size: 4.5rem; line-height: 1; }
}
@media (min-width: 1024px) {
  .lg-flex-row { flex-direction: row; }
  .lg-w-1\/2 { width: 50%; }
  .lg-text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* ── Sizing Utilities ──────────────────────────── */
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-3 { width: 0.75rem; height: 0.75rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-24 { width: 6rem; height: 6rem; }

/* ── Object Aspect Ratio ───────────────────────── */
.aspect-ratio-4-5 { aspect-ratio: 4/5; }
.aspect-ratio-4-3 { aspect-ratio: 4/3; }

/* ── Max Width ─────────────────────────────────── */
.max-w-20ch { max-width: 20ch; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-48ch { max-width: 48ch; }
.max-w-56ch { max-width: 56ch; }
.max-w-60ch { max-width: 60ch; }

/* ── Tracking / Letter Spacing ─────────────────── */
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-widest { letter-spacing: 0.1em; }

/* ── Negative Margins ──────────────────────────── */
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }

/* ── Flex Shrink ───────────────────────────────── */
.shrink { flex-shrink: 1; }

/* ── Font Weights ──────────────────────────────── */
.font-semibold { font-weight: 600; }

/* ── Text Transform ────────────────────────────── */
.uppercase { text-transform: uppercase; }

/* ── White Space ───────────────────────────────── */
.whitespace-nowrap { white-space: nowrap; }

/* ── Cursor ────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }

/* ── Mobile Gap Reductions ─────────────────────── */
@media (max-width: 767px) {
  html, body { max-width: 100vw; }
  .nav { gap: 0.5rem !important; padding: 0 1rem !important; height: auto !important; flex-wrap: wrap !important; justify-content: center !important; }
  .logo-text { font-size: 1.25rem !important; }
  .two-col { gap: 1.5rem !important; }
  .footer-grid { gap: 1.5rem !important; }
  .space-y-12 > * + * { margin-top: 1rem !important; }
  .space-y-6 > * + * { margin-top: 0.75rem !important; }
  .container { padding: 0 0.5rem 0 0.75rem !important; }
  .section { padding: 2.5rem 0.5rem 2.5rem 0.75rem !important; }
  .footer-inner { padding: 2.5rem 0.5rem 1.5rem 0.75rem !important; }
  .tour-info { padding: 1rem 0.5rem 1rem 1rem !important; }
  .tour-title { font-size: 1.5rem !important; }
  .tour-table th, .tour-table td { padding: 0.4rem 0.5rem !important; }
  .tour-table { font-size: 0.75rem !important; }
  .tour-route { font-size: 0.6875rem !important; letter-spacing: 0.05em !important; }
  .tour-badge, .tour-popular { font-size: 0.6875rem !important; padding: 0.15rem 0.5rem !important; }
  .btn-primary, .btn-outline, .btn-icon { padding: 0.5rem 1rem !important; font-size: 0.8125rem !important; }
  .value-icon, .contact-icon { width: 2rem !important; height: 2rem !important; }
}

.form-status { font-size: 0.8125rem; margin-top: 0.75rem; min-height: 1.2em; }
.form-status-success { color: #598046; }
.form-status-error { color: #b3462c; }
