/* ── Brand tokens ──────────────────────────────── */
:root {
  --summer:       #8ac589;
  --spring:       #729cac;
  --autumn:       #b66c4c;
  --winter:       #e1d8cf;
  --summer-mid:   #aed6ac;
  --summer-pale:  #d6edd5;
  --spring-mid:   #9dbccc;
  --spring-pale:  #ccdde6;
  --dark:         #1c2b28;
  --mid:          #4a5e5a;
  --light:        #f7f5f1;
  --white:        #ffffff;
  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Jost', sans-serif;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--dark); background: var(--light); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────── */
h1 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(3rem, 8vw, 7rem); line-height: 1.0; letter-spacing: -0.02em; }
h2 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; }
h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; }
h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; }
p  { font-family: var(--ff-body); font-weight: 300; font-size: 1rem; line-height: 1.8; color: var(--mid); }

.overline {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spring);
  display: block;
}

/* ── Nav ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(247, 245, 241, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
nav.solid {
  background: rgba(247, 245, 241, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo .logo-dark { display: none; }
nav.scrolled .logo-light,
nav.solid .logo-light { display: none; }
nav.scrolled .logo-dark,
nav.solid .logo-dark  { display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
nav.scrolled .nav-links a,
nav.solid .nav-links a { color: var(--mid); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--summer);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--dark) !important; }

.nav-cta {
  background: var(--dark) !important;
  color: rgba(255,255,255,0.92) !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
}
nav.solid .nav-cta,
nav.scrolled .nav-cta {
  background: var(--dark) !important;
  color: rgba(255,255,255,0.92) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--mid) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28,43,40,0.25) !important;
}

.lang-switcher { display: flex; gap: 0.3rem; }
.lang-btn {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
nav.scrolled .lang-btn,
nav.solid .lang-btn { color: var(--mid); }
.lang-btn.active, .lang-btn:hover { background: var(--summer); color: var(--dark) !important; }

/* ── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--summer);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.08);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  background: #7dbc7c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,197,137,0.35), 0 2px 4px rgba(0,0,0,0.1);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--spring);
  color: var(--spring);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--spring); color: white; }

/* ── Page hero (inner pages) ───────────────────── */
.page-hero {
  background: var(--spring);
  padding: 9rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
/* Single low-opacity wave drawn across the bottom of the hero — replaces the
   earlier paint-spot SVG pattern with a more atmospheric, on-brand mark. */
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70%;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 240' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M0 180 C 240 130, 360 230, 600 180 S 960 130, 1200 180 L1200 240 L0 240 Z' fill='white' fill-opacity='0.07'/%3E%3Cpath d='M0 200 C 240 160, 360 240, 600 210 S 960 160, 1200 200' stroke='white' stroke-opacity='0.15' stroke-width='1' fill='none'/%3E%3Cpath d='M0 220 C 240 195, 360 245, 600 230 S 960 200, 1200 220' stroke='white' stroke-opacity='0.10' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  pointer-events: none;
}
.page-hero.summer { background: var(--summer); }
.page-hero.autumn { background: var(--autumn); }
.page-hero.dark   { background: var(--dark); }
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .overline { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.page-hero h1 { color: white; font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 1.2rem; font-size: 1.05rem; max-width: 560px; }

/* ── Section layout ────────────────────────────── */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 6rem 3rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header .overline { margin-bottom: 0.75rem; }
.section-header p { max-width: 520px; margin-top: 1rem; }

/* ── Split layout ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ── Wave decoration ───────────────────────────── */
.wave-dots { display: flex; align-items: center; gap: 0.5rem; margin: 1.5rem 0; }
.wave-dots::before, .wave-dots::after { content: '~'; font-size: 1.4rem; color: var(--spring); opacity: 0.6; }
.wave-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--spring); opacity: 0.5; }

.section-wave { width: 100%; overflow: hidden; line-height: 0; }
.section-wave svg { display: block; }

/* ── Check list ────────────────────────────────── */
.check-list { list-style: none; margin-top: 2rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.6rem 0; border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem; font-weight: 300; color: var(--mid);
}
.check-list li::before { content: '✓'; flex-shrink: 0; color: var(--summer); font-weight: 600; font-size: 0.9rem; margin-top: 0.1rem; }

/* ── Highlights bar ────────────────────────────── */
.highlights { background: var(--dark); display: grid; grid-template-columns: repeat(5, 1fr); }
.highlight-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.highlight-item:last-child { border-right: none; }
.highlight-icon { display: flex; justify-content: center; align-items: center; height: 32px; margin-bottom: 0.6rem; color: var(--spring); }
.highlight-icon .nc-icon { display: block; }
.highlight-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.highlight-value { font-family: var(--ff-display); font-size: 1.1rem; color: var(--summer-pale); margin-top: 0.2rem; }

/* ── Cards ─────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.img-card { position: relative; overflow: hidden; cursor: pointer; }
.img-card img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.6s ease; }
.img-card:hover img { transform: scale(1.04); }
.img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,40,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.img-card-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--summer); color: var(--dark);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 2px;
}
.img-card h3 { color: white; font-size: 1.5rem; margin-bottom: 0.4rem; }
.img-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; }
.img-card .card-size { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--summer-pale); margin-bottom: 0.4rem; }

.feature-card {
  background: var(--light); padding: 2rem 1.5rem; border-radius: 2px;
  border-top: 3px solid var(--spring);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.feature-card-icon { display: flex; align-items: center; height: 40px; margin-bottom: 1.1rem; color: var(--summer); }
.feature-card[style*="--spring"] .feature-card-icon,
.feature-card[style*="spring"] .feature-card-icon { color: var(--spring); }
.feature-card[style*="--autumn"] .feature-card-icon,
.feature-card[style*="autumn"] .feature-card-icon { color: var(--autumn); }
.feature-card-icon .nc-icon { display: block; }
.feature-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--dark); }
.feature-card p { font-size: 0.85rem; line-height: 1.7; }

/* ── Info card ─────────────────────────────────── */
.info-card {
  background: var(--white); padding: 2rem; border-radius: 2px;
  border-left: 3px solid var(--summer);
}
.info-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.info-card p { font-size: 0.88rem; color: var(--mid); }

/* ── Apt features grid ─────────────────────────── */
.apt-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(0,0,0,0.08); }
.apt-feature { text-align: center; }
.apt-feature-icon { display: flex; justify-content: center; align-items: center; height: 36px; margin-bottom: 0.7rem; color: var(--spring); }
.apt-feature-icon .nc-icon { display: block; }
.apt-feature-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.apt-feature-detail { font-family: var(--ff-display); font-size: 1rem; color: var(--dark); margin-top: 0.2rem; }

/* ── Fishing types ─────────────────────────────── */
.fishing-type {
  padding: 1.8rem 2rem; border: 1px solid rgba(0,0,0,0.08); border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.fishing-type:hover { border-color: var(--summer); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.fishing-type-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--spring); margin-bottom: 0.5rem; display: block; }
.fishing-type h4 { font-size: 1.3rem; font-weight: 400; margin-bottom: 0.5rem; }
.fishing-type p { font-size: 0.9rem; }

/* ── Species tags ──────────────────────────────── */
.species-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.species-tag {
  background: var(--spring-pale); color: var(--spring); border: 1px solid var(--spring-mid);
  font-size: 0.75rem; font-weight: 500; padding: 0.35rem 0.9rem; border-radius: 20px;
}

/* ── Boat callout ──────────────────────────────── */
.boat-callout {
  background: var(--summer); color: var(--dark); padding: 2rem 2.5rem; border-radius: 2px;
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.boat-callout-icon { font-size: 2.2rem; flex-shrink: 0; }
.boat-callout h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.boat-callout p { font-size: 0.88rem; color: rgba(28,43,40,0.75); line-height: 1.6; }

/* ── Stats ─────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; padding: 1.5rem; background: var(--white); border-radius: 2px; }
.stat-num { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 300; color: var(--spring); line-height: 1; }
.stat-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 0.4rem; }

/* ── Form ──────────────────────────────────────── */
.form-wrap { background: var(--white); padding: 3rem; border-radius: 2px; box-shadow: 0 2px 32px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 2px;
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--dark);
  background: var(--light); outline: none; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--spring); }
textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--summer); color: var(--dark);
  border: none; border-radius: 2px; font-family: var(--ff-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  margin-top: 0.8rem; transition: background 0.3s;
}
.btn-submit:hover { background: var(--summer-mid); }

/* ── Calendar ──────────────────────────────────── */
.calendar { background: var(--dark); border-radius: 2px; padding: 1.5rem; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-month { font-family: var(--ff-display); font-size: 1.1rem; color: white; }
.cal-nav { display: flex; gap: 0.5rem; }
.cal-nav button { width: 28px; height: 28px; background: rgba(255,255,255,0.1); border: none; border-radius: 2px; color: white; cursor: pointer; font-size: 0.8rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-label { text-align: center; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); padding: 0.4rem 0; }
.cal-day { text-align: center; padding: 0.5rem 0; font-size: 0.82rem; border-radius: 2px; cursor: pointer; transition: background 0.2s; color: rgba(255,255,255,0.75); }
.cal-day.available { color: rgba(255,255,255,0.8); }
.cal-day.available:hover { background: rgba(138,197,137,0.3); }
.cal-day.booked { background: rgba(114,156,172,0.15); color: rgba(255,255,255,0.25); cursor: not-allowed; text-decoration: line-through; }
.cal-day.selected { background: var(--summer); color: var(--dark); font-weight: 600; }
.cal-legend { display: flex; gap: 1.5rem; margin-top: 1rem; }
.cal-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; color: rgba(255,255,255,0.5); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ── Image with badge ──────────────────────────── */
.img-with-badge { position: relative; }
.img-with-badge img { width: 100%; height: 500px; object-fit: cover; border-radius: 2px; }
.img-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--summer); color: var(--dark); padding: 1.2rem 1.5rem; border-radius: 2px;
}
.img-badge .num { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.img-badge .label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-top: 0.2rem; }

/* ── CTA banner ────────────────────────────────── */
.cta-banner { background: var(--dark); padding: 5rem 3rem; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; }

/* ── Page nav links (bottom of page) ───────────── */
.page-nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(0,0,0,0.08); }
.page-nav-item {
  padding: 2.5rem 3rem; display: flex; flex-direction: column; gap: 0.4rem;
  border-right: 1px solid rgba(0,0,0,0.08); transition: background 0.3s;
}
.page-nav-item:last-child { border-right: none; text-align: right; }
.page-nav-item:hover { background: var(--white); }
.page-nav-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--spring); }
.page-nav-title { font-family: var(--ff-display); font-size: 1.3rem; color: var(--dark); }
.page-nav-arrow { font-size: 1.2rem; color: var(--spring); }

/* ── Default page content (privacy, cookie, etc.) */
.site-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 9rem 3rem 5rem;
}
.site-main .entry-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 2rem;
}
.site-main .entry-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid);
}
.site-main .entry-content h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 400;
  margin: 2.5rem 0 0.8rem;
}
.site-main .entry-content h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 400;
  margin: 2rem 0 0.6rem;
}
.site-main .entry-content p {
  margin-bottom: 1.2rem;
}
.site-main .entry-content a {
  color: var(--spring);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.site-main .entry-content a:hover {
  color: var(--summer);
}
.site-main .entry-content ul,
.site-main .entry-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.site-main .entry-content li {
  margin-bottom: 0.4rem;
}
.site-main .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}
.site-main .entry-content th,
.site-main .entry-content td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}
.site-main .entry-content th {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Footer ────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 3rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-top: 1rem; color: rgba(255,255,255,0.75); }
.footer-col h5 { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--summer-pale); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.78rem; }
.footer-bottom a { color: var(--summer-pale); }
.footer-legal-links { display: flex; gap: 1.5rem; }

/* ── Scroll reveal ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hamburger button ─────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.scrolled .hamburger span,
nav.solid .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hamburger.active span { background: rgba(255,255,255,0.85) !important; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .highlights { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .apt-features { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .hamburger { display: flex; }
  .lang-switcher { margin-right: 0.5rem; z-index: 200; position: relative; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--dark);
    padding: 6rem 2.5rem 3rem;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a {
    display: block;
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 1.1rem 0 !important;
    letter-spacing: 0.15em !important;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--summer) !important; }
  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    background: var(--summer) !important;
    color: var(--dark) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 2px;
    width: 100%;
  }
  .nav-cta:hover { background: var(--summer-mid) !important; }

  .section-inner { padding: 4rem 1.5rem; }
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .split.reverse > * { direction: ltr; }
  .card-grid, .card-grid.four { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .apt-features { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .page-nav { grid-template-columns: 1fr; }
  .page-nav-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  input, select, textarea { font-size: 1rem; }
}

/* ── Booking form feedback ─────────────────────── */
.ncb-feedback {
  padding: 0.8rem 1rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.ncb-feedback--success {
  background: var(--summer-pale);
  color: #1a4d1a;
  border-left: 3px solid var(--summer);
}
.ncb-feedback--error {
  background: #fde8e8;
  color: #7a1f1f;
  border-left: 3px solid #dc3545;
}

/* ── Accommodation hub & cards ─────────────────── */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem 1.6rem;
  margin-top: 3rem;
}
/* Default span: 4 columns (3-up) */
.accommodation-card { grid-column: span 4; }
/* First card in group spans wider for hero/flagship treatment when there are
   four or more siblings — visually telegraphs which unit anchors the family. */
.accommodation-grid:has(.accommodation-card:nth-child(4)) .accommodation-card:first-child {
  grid-column: span 8;
}
.accommodation-grid:has(.accommodation-card:nth-child(4)) .accommodation-card:first-child .accommodation-card-media {
  aspect-ratio: 5 / 4;
}
.accommodation-grid:has(.accommodation-card:nth-child(4)) .accommodation-card:first-child .accommodation-card-body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.accommodation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.accommodation-card:hover { transform: translateY(-3px); }

.accommodation-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--dark);
}
.accommodation-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
  filter: saturate(0.9);
}
.accommodation-card:hover .accommodation-card-media img {
  transform: scale(1.06);
  filter: saturate(1);
}
.accommodation-card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(28,43,40,0.45), rgba(28,43,40,0));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.accommodation-card:hover .accommodation-card-media::after { opacity: 1; }

/* Type as italic Cormorant overline on the photo — replaces solid pill badge */
.accommodation-card-type {
  position: absolute;
  top: 1rem; left: 1.1rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(28,43,40,0.45);
  background: none;
  padding: 0;
  text-transform: none;
  border-radius: 0;
}

.accommodation-card-body {
  padding: 1.4rem 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.accommodation-card-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.accommodation-card:hover .accommodation-card-body h3 { color: var(--spring); }

.accommodation-card-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 1.1rem;
  flex-grow: 1;
  line-height: 1.5;
}
.accommodation-card-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  padding: 0;
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: var(--mid);
  border-top: 1px solid rgba(28,43,40,0.08);
  padding-top: 0.9rem;
}
.accommodation-card-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.accommodation-card-meta .nc-icon {
  width: 16px; height: 16px;
  color: var(--spring);
  opacity: 0.7;
}
.accommodation-card-link {
  display: none; /* Whole card is clickable; redundant link removed */
}

/* ── Accommodation single ──────────────────────── */
.accommodation-hero {
  position: relative;
  min-height: 60vh;
  padding: 8rem 3rem 5rem;
  display: flex;
  align-items: flex-end;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
}
.accommodation-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.accommodation-hero .overline {
  color: var(--summer-pale);
  margin-bottom: 1rem;
}
.accommodation-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.accommodation-hero-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1.2rem;
  max-width: 560px;
}
.accommodation-features-section {
  background: var(--white);
}
.accommodation-features-section .apt-features {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.accommodation-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}
.accommodation-content p {
  margin-bottom: 1.2rem;
}

.accommodation-gallery-section {
  background: var(--light);
}
.accommodation-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 3rem;
}
.accommodation-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.accommodation-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.accommodation-gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .accommodation-grid { grid-template-columns: 1fr 1fr; }
  .accommodation-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .accommodation-grid { grid-template-columns: 1fr; }
  .accommodation-hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
}

/* ── Lightbox (editorial) ─────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  z-index: 9999;
  padding: 2.5rem 2rem 2rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(74,94,90,0.65), transparent 55%),
    radial-gradient(circle at 82% 88%, rgba(28,43,40,0.85), transparent 60%),
    linear-gradient(135deg, #1c2b28 0%, #243a36 100%);
  /* Subtle film grain overlay for texture */
}
.lightbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.6;
}
.lightbox[aria-hidden="false"] { display: flex; animation: lb-fade 0.35s ease both; }

@keyframes lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Top meta bar — Cormorant italic 01—53 with overline */
.lightbox-meta {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  color: rgba(255,255,255,0.85);
}
.lightbox-meta--top {
  top: 1.6rem;
  left: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.lightbox-overline {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.lightbox-counter {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
}

/* Figure centered with caption beneath */
.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(1200px, 92vw);
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  background: transparent;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: lb-img-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes lb-img-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lightbox-caption {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-top: 1.2rem;
  max-width: 680px;
  line-height: 1.55;
  padding: 0 1rem;
  letter-spacing: 0.01em;
}

/* Close: thin × top-right, no fill */
.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.lightbox-close:hover { color: white; transform: rotate(90deg); }

/* Bottom controls bar — text-driven prev/next */
.lightbox-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}
.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.4rem;
  transition: color 0.2s, gap 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.lightbox-prev:hover,
.lightbox-next:hover { color: white; gap: 1rem; }
.lightbox-arrow {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.lightbox-prev[disabled],
.lightbox-next[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox { padding: 1.5rem 1rem 1rem; }
  .lightbox-meta--top { top: 1rem; left: 1rem; }
  .lightbox-counter { font-size: 1.2rem; }
  .lightbox-close { top: 0.8rem; right: 1rem; font-size: 1.8rem; }
  .lightbox-img { max-height: calc(100vh - 180px); }
  .lightbox-caption { font-size: 0.9rem; margin-top: 0.8rem; }
  .lightbox-prev,
  .lightbox-next { font-size: 0.65rem; padding: 0.5rem 0; }
  .lightbox-prev .lightbox-ctrl-label,
  .lightbox-next .lightbox-ctrl-label { display: none; }
  .lightbox-arrow { font-size: 1.6rem; }
}
