:root {
  --stone: #F2EDE3;
  --stone-deep: #E7DECE;
  --ink: #1C2A32;
  --ink-soft: #46545C;
  --thermal: #2F6E6C;
  --thermal-deep: #234F4E;
  --lavender: #6B5B95;
  --clay: #B8623F;
  --line: rgba(28,42,50,0.14);
  --shadow: 0 24px 60px -30px rgba(28,42,50,0.45);
  --serif: "Fraunhofer", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

@font-face { font-family:"Fraunhofer"; src:local("Georgia"); }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.01em; line-height: 1.08; }

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

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,237,227,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: baseline; gap: 3px; font-family: Georgia, serif; font-size: 1.42rem; letter-spacing: 0.02em; }
.brand b { font-weight: 400; }
.brand .dot { color: var(--thermal); }
.brand small { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); margin-left: 8px; align-self: center; }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a { font-size: 0.86rem; letter-spacing: 0.02em; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px; background: var(--thermal); }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 12px 22px; border-radius: 2px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--stone); cursor: pointer; transition: all .2s;
  text-transform: uppercase;
}
.btn:hover { background: var(--thermal-deep); border-color: var(--thermal-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--stone); }
.btn-thermal { background: var(--thermal); border-color: var(--thermal); }
.btn-thermal:hover { background: var(--thermal-deep); border-color: var(--thermal-deep); }
.menu-toggle { display:none; background:none; border:none; font-size:1.4rem; cursor:pointer; color: var(--ink); }

/* ---------- Eyebrow ---------- */
.eyebrow { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--thermal); display: inline-block; margin-bottom: 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 6vw, 4.7rem); }
.hero h1 em { font-style: italic; color: var(--thermal); }
.hero p.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; margin: 28px 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-figure { position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .tag { position: absolute; left: 20px; bottom: 20px; background: rgba(242,237,227,0.92); padding: 10px 16px; border-radius: 2px; font-size: 0.78rem; letter-spacing: 0.04em; }
.hero-figure .tag b { display:block; font-family: Georgia, serif; font-size: 1rem; letter-spacing: 0; }
.water-line { position:absolute; left:0; right:0; bottom:0; height: 1px; background: var(--line); }

/* topographic svg accent */
.topo { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; z-index: 0; }

/* ---------- Section ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 62ch; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section-head p { color: var(--ink-soft); margin-top: 18px; font-size: 1.05rem; }
.section--dark { background: var(--ink); color: var(--stone); }
.section--dark .eyebrow { color: #7FB5B0; }
.section--dark .section-head p { color: rgba(242,237,227,0.72); }
.section--stone { background: var(--stone-deep); }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; border-top: 1px solid rgba(242,237,227,0.2); padding-top: 44px; }
.stat b { font-family: Georgia, serif; font-size: 2.8rem; display: block; }
.stat span { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,237,227,0.6); }

/* ---------- Spa cards ---------- */
.spa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.spa-card { background: #fff; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.spa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spa-card .ph { aspect-ratio: 3/2; overflow: hidden; }
.spa-card .ph img { width:100%; height:100%; object-fit: cover; transition: transform .5s; }
.spa-card:hover .ph img { transform: scale(1.05); }
.spa-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.spa-card .loc { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--thermal); margin-bottom: 8px; }
.spa-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.spa-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.spa-card .meta { display:flex; align-items:center; justify-content: space-between; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.spa-card .price { font-family: Georgia, serif; font-size: 1.05rem; }
.spa-card .price small { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-soft); }
.btn-sm { padding: 9px 16px; font-size: 0.72rem; }

/* department filter */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filters button { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.03em; padding: 9px 18px; border-radius: 40px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.filters button.active, .filters button:hover { background: var(--ink); color: var(--stone); border-color: var(--ink); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { border-radius: 3px; aspect-ratio: 5/4; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.split h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 20px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.ledger { list-style: none; margin-top: 28px; }
.ledger li { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.ledger li b { font-family: Georgia, serif; font-size: 1.05rem; min-width: 34px; color: var(--thermal); }
.ledger li span { font-size: 0.95rem; }
.ledger li span em { display:block; font-style: normal; color: var(--ink-soft); font-size: 0.85rem; margin-top: 3px; }

/* ---------- Spa detail ---------- */
.detail-hero { padding: 40px 0 0; }
.crumb { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 28px; }
.crumb a:hover { color: var(--thermal); }
.detail-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 56px; }
.detail-top .main-img { aspect-ratio: 16/10; border-radius: 3px; object-fit: cover; width: 100%; }
.detail-top .stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.detail-top .stack img { aspect-ratio: 16/9; border-radius: 3px; object-fit: cover; width: 100%; height: 100%; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.detail-body h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.detail-body .loc { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--thermal); margin-bottom: 22px; }
.detail-body > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 20px; }
.amenities { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 28px; margin: 32px 0 8px; }
.amenities div { display:flex; gap: 12px; align-items: baseline; font-size: 0.94rem; padding: 12px 0; border-top: 1px solid var(--line); }
.amenities div i { color: var(--thermal); font-style: normal; }
.booking-card { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 28px; box-shadow: var(--shadow); }
.booking-card .price { font-family: Georgia, serif; font-size: 2.1rem; }
.booking-card .price small { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft); }
.booking-card .field { margin-top: 18px; }
.booking-card label { display:block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.booking-card input, .booking-card select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 2px; font-family: var(--sans); font-size: 0.92rem; background: var(--stone); color: var(--ink); }
.booking-card .btn { width: 100%; justify-content: center; margin-top: 22px; }
.booking-card .note { font-size: 0.76rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ---------- Blog ---------- */
.blog-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; }
.blog-feature img { aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; width: 100%; box-shadow: var(--shadow); }
.blog-feature .cat { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 16px; display:block; }
.blog-feature h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.blog-feature p { color: var(--ink-soft); margin-bottom: 22px; }
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.post { display:flex; flex-direction: column; }
.post .ph { aspect-ratio: 3/2; overflow: hidden; border-radius: 3px; margin-bottom: 18px; }
.post .ph img { width:100%; height:100%; object-fit: cover; transition: transform .5s; }
.post:hover .ph img { transform: scale(1.04); }
.post .cat { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 10px; }
.post h3 { font-size: 1.28rem; margin-bottom: 10px; line-height: 1.2; }
.post p { font-size: 0.9rem; color: var(--ink-soft); }
.post .date { font-size: 0.76rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Article ---------- */
.article { max-width: 720px; margin: 0 auto; }
.article-head { text-align: center; padding: 24px 0 44px; }
.article-head .cat { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); }
.article-head h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 20px 0; }
.article-head .byline { font-size: 0.85rem; color: var(--ink-soft); }
.article-hero { aspect-ratio: 16/8; object-fit: cover; width: 100%; border-radius: 3px; margin-bottom: 56px; box-shadow: var(--shadow); }
.article p { font-size: 1.1rem; line-height: 1.75; margin-bottom: 26px; color: #2b3840; }
.article h2 { font-size: 1.7rem; margin: 44px 0 20px; }
.article blockquote { border-left: 2px solid var(--thermal); padding: 6px 0 6px 28px; margin: 36px 0; font-family: Georgia, serif; font-size: 1.35rem; font-style: italic; color: var(--ink); }
.article figure img { border-radius: 3px; margin: 20px 0 10px; }
.article figcaption { font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--thermal-deep); color: var(--stone); text-align: center; padding: 88px 0; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-band p { color: rgba(242,237,227,0.8); max-width: 50ch; margin: 0 auto 32px; }
.cta-band .btn { background: var(--stone); color: var(--ink); border-color: var(--stone); }
.cta-band .btn:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: rgba(242,237,227,0.7); padding: 72px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-grid h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242,237,227,0.5); margin-bottom: 18px; font-weight: 600; }
.foot-grid a { display: block; font-size: 0.9rem; padding: 5px 0; transition: color .2s; }
.foot-grid a:hover { color: var(--stone); }
.foot-brand { font-family: Georgia, serif; font-size: 1.5rem; color: var(--stone); margin-bottom: 14px; }
.foot-brand .dot { color: var(--thermal); }
.foot-grid p { font-size: 0.9rem; max-width: 34ch; }
.foot-bottom { border-top: 1px solid rgba(242,237,227,0.14); padding-top: 28px; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .detail-layout, .detail-top, .blog-feature { grid-template-columns: 1fr; gap: 40px; }
  .spa-grid, .post-grid, .stats, .amenities { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .booking-card { position: static; }
  .detail-top .stack { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .spa-grid, .post-grid, .stats, .amenities, .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
