/* veloriascene — Soft coastal asymmetric */
:root {
  --sand: #E8E0D4;
  --teal: #0F4C5C;
  --seafoam: #6BA3A7;
  --charcoal: #243035;
  --white: #FAF8F5;
  --teal-dark: #0a3a47;
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --max: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--seafoam); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--teal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(232, 224, 212, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(36, 48, 53, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.brand img { width: 36px; height: 36px; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--seafoam);
  transition: width 0.25s;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero (asymmetric split) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  margin-top: var(--header-h);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem clamp(1.5rem, 5vw, 4rem);
  background: var(--sand);
  position: relative;
  z-index: 2;
}

.hero-content::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 10%;
  bottom: 10%;
  width: 120px;
  background: var(--sand);
  transform: skewX(-4deg);
  z-index: -1;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--charcoal);
  max-width: 28rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--seafoam);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 70vh;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  margin-top: var(--header-h);
  padding: 5rem 0 3rem;
  background: linear-gradient(160deg, var(--sand) 60%, rgba(107, 163, 167, 0.15));
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead {
  font-size: 1.15rem;
  max-width: 36rem;
  opacity: 0.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ── Zigzag sections ── */
.zigzag { padding: 5rem 0; }

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.zigzag-row:last-child { margin-bottom: 0; }

.zigzag-row.reverse .zigzag-text { order: 2; }
.zigzag-row.reverse .zigzag-img { order: 1; }

.zigzag-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.zigzag-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.zigzag-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--seafoam);
  opacity: 0.3;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.zigzag-text h2 { margin-bottom: 1rem; }
.zigzag-text p { opacity: 0.85; }

.zigzag-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--seafoam);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ── Horizontal scroll strip ── */
.amenity-strip {
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.amenity-strip h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.strip-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--seafoam) transparent;
}

.strip-scroll::-webkit-scrollbar { height: 6px; }
.strip-scroll::-webkit-scrollbar-thumb { background: var(--seafoam); border-radius: 3px; }

.strip-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}

.strip-card:hover { transform: translateY(-4px); }

.strip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.strip-card-body {
  padding: 1.25rem;
}

.strip-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.strip-card-body p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

/* ── Feature cards grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  padding: 3rem 0;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--seafoam);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(15, 76, 92, 0.1);
}

.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9rem; opacity: 0.8; }

/* ── Info band ── */
.info-band {
  background: var(--teal);
  color: var(--white);
  padding: 3.5rem 0;
  margin: 2rem 0;
}

.info-band h2 { color: var(--white); margin-bottom: 1rem; }
.info-band p { opacity: 0.9; max-width: 40rem; }

.info-band .btn-outline {
  border-color: var(--white);
  color: var(--white);
  margin-top: 1.5rem;
}

.info-band .btn-outline:hover {
  background: var(--white);
  color: var(--teal);
}

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info address {
  font-style: normal;
  line-height: 1.8;
  opacity: 0.85;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--teal);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 76, 92, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--seafoam);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── Legal pages ── */
.legal-content {
  padding: 2rem 0 5rem;
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content ul, .legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
}

.legal-content li { margin-bottom: 0.4rem; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(232, 224, 212, 0.85);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--seafoam);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(232, 224, 212, 0.75);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-col a:hover { color: var(--sand); }

.footer-bottom {
  border-top: 1px solid rgba(232, 224, 212, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-age {
  background: var(--teal);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--charcoal);
  color: var(--sand);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
  opacity: 0.9;
}

.cookie-banner a { color: var(--seafoam); }

.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-actions button {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.cookie-accept { background: var(--seafoam); color: var(--charcoal); }
.cookie-decline { background: transparent; color: var(--sand); border: 1px solid rgba(232,224,212,0.3) !important; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile nav overlay ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(36, 48, 53, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--sand);
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-panel a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.mobile-nav-panel .nav-cta {
  display: inline-block;
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 1.5rem;
    order: 2;
  }

  .hero-content::after { display: none; }

  .hero-visual { order: 1; min-height: 50vh; }
  .hero-visual img { min-height: 50vh; }

  .zigzag-row,
  .zigzag-row.reverse {
    grid-template-columns: 1fr;
  }

  .zigzag-row.reverse .zigzag-text,
  .zigzag-row.reverse .zigzag-img { order: unset; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom { flex-direction: column; text-align: center; }
}
