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

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

:root {
  --blue:       #0057b8;
  --blue-dark:  #003d85;
  --blue-light: #e8f4ff;
  --orange:     #f5901e;
  --orange-dk:  #c96d00;
  --yellow:     #ffe066;
  --yellow-dk:  #7a4800;
  --sand:       #fffbf0;
  --sand-dk:    #f0e8d0;
  --navy:       #0a1a2e;
  --text:       #1a2a3a;
  --muted:      #556677;
  --radius:     10px;
  --gap:        4px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 60px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,87,184,0.1);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 12px; color: var(--text); letter-spacing: 0.07em;
  text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--blue); }
.nav-cta {
  font-size: 12px; padding: 8px 18px;
  background: var(--orange); color: #fff; border-radius: 5px;
  font-weight: 500; letter-spacing: 0.05em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dk); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* ── HERO GRID ── */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 440px 220px;
  gap: var(--gap);
  background: var(--blue);
}
.hero-cell {
  position: relative; overflow: hidden; cursor: pointer;
}
.hero-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-cell:hover img { transform: scale(1.04); }
.hero-cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,20,60,0.7) 0%, rgba(0,20,60,0.15) 50%, transparent 100%);
}
.hero-cell.main { grid-column: 1 / 2; grid-row: 1 / 3; }
.hero-cell.main .hero-cell-overlay {
  background: linear-gradient(135deg, rgba(0,20,60,0.75) 0%, rgba(0,60,140,0.3) 60%, transparent 100%);
}
.hero-main-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 44px;
  background: linear-gradient(to top, rgba(0,15,50,0.85) 0%, transparent 100%);
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: #fff; line-height: 1.08;
  margin-bottom: 14px;
}
.hero-h1 em { font-style: italic; color: var(--yellow); }
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.65;
  max-width: 360px; margin-bottom: 24px;
}
.hero-btn {
  display: inline-block; padding: 12px 26px;
  background: var(--orange); color: #fff; border-radius: 5px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s;
}
.hero-btn:hover { background: var(--orange-dk); }
.cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,20,60,0.7), transparent);
}
.cell-label-name { font-size: 13px; font-weight: 500; color: #fff; }
.cell-label-sub { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex; background: var(--sand);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(0,87,184,0.08);
}
.stat { flex: 1; padding: 20px 24px; border-right: 1px solid rgba(0,87,184,0.1); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; color: var(--blue); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── GENERIC SECTIONS ── */
.section { padding: 60px 60px; }
.section.bg-light { background: #f8fcff; }
.section.bg-sand  { background: var(--sand); }
.section.bg-blue  { background: var(--blue); }
.section.bg-navy  { background: var(--navy); }

.eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.eyebrow.on-dark { color: var(--yellow); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 400; line-height: 1.15; margin-bottom: 12px;
}
.section-title.on-dark { color: #fff; }
.section-body { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 640px; }
.section-body.on-dark { color: rgba(255,255,255,0.75); }
.section-body p + p { margin-top: 1em; }

/* ── CARD GRIDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,87,184,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,87,184,0.12); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 18px 20px; }
.card-title { font-size: 16px; font-weight: 500; color: var(--blue); margin-bottom: 6px; }
.card-text { font-size: 13px; color: var(--muted); line-height: 1.65; }
.card-tag {
  display: inline-block; margin-top: 10px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); border-bottom: 1px solid var(--orange); padding-bottom: 1px;
}

/* ── SPLIT SECTIONS ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { position: relative; overflow: hidden; min-height: 320px; }
.split-img img { position: absolute; inset: 0; }
.split-content { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.split-content .section-title { font-size: 34px; }

/* ── SEASON GRID ── */
.season-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 28px; }
.season { border-radius: var(--radius); padding: 22px 18px; text-align: center; }
.season-icon { font-size: 28px; margin-bottom: 8px; }
.season-name { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.season-temp { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; line-height: 1; }
.season-sea  { font-size: 12px; margin-top: 6px; opacity: 0.75; }
.season-desc { font-size: 12px; margin-top: 8px; line-height: 1.5; opacity: 0.8; }

/* ── FACT BOXES ── */
.fact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.fact-box { background: var(--blue-light); border-radius: var(--radius); padding: 22px; }
.fact-label { font-size: 11px; color: var(--blue); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.fact-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--blue); font-weight: 600; }
.fact-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── VILLA CTA STRIP ── */
.villa-strip {
  background: var(--sand);
  border-top: 1px solid rgba(245,144,30,0.2);
  border-bottom: 1px solid rgba(245,144,30,0.2);
  padding: 44px 60px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
}
.villa-strip-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 8px; }
.villa-strip-sub { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 520px; }
.villa-btn {
  display: block; padding: 16px 32px;
  background: var(--blue); color: #fff; border-radius: 6px;
  font-size: 14px; font-weight: 500; text-align: center;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.villa-btn:hover { background: var(--blue-dark); }
.villa-btn small { display: block; font-size: 11px; opacity: 0.7; margin-top: 3px; }

/* ── INLINE HERO (inner pages) ── */
.page-hero { position: relative; height: 400px; overflow: hidden; }
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,15,50,0.75) 0%, rgba(0,15,50,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px 60px;
}
.page-hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
.page-hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: #fff; line-height: 1.08; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,0.8); margin-top: 10px; max-width: 520px; line-height: 1.6; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px 60px; background: var(--blue-light); font-size: 12px; color: var(--muted); }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* ── FAQ ── */
.faq-list { margin-top: 28px; max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(0,87,184,0.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-size: 15px; font-weight: 500;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.5);
  padding: 48px 60px 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 13px; line-height: 1.6; }
.footer-col-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; padding: 16px 20px; border-bottom: 1px solid rgba(0,87,184,0.1); gap: 14px; }
  .nav-burger { display: block; }
  .hero-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 180px 180px; }
  .hero-cell.main { grid-column: 1/3; grid-row: 1/2; }
  .hero-h1 { font-size: 34px; }
  .stats-bar { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(0,87,184,0.1); }
  .section { padding: 40px 20px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .villa-strip { grid-template-columns: 1fr; gap: 20px; padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { height: 280px; }
  .page-hero-h1 { font-size: 34px; }
  .page-hero-overlay { padding: 28px 20px; }
  .breadcrumb { padding: 12px 20px; }
  .split-content { padding: 36px 24px; }
}
@media (max-width: 600px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: 320px 160px 160px 160px 160px; }
  .hero-cell:nth-child(n+4) { display: none; }
  .hero-cell.main { grid-column: 1; grid-row: 1; }
  .card-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
