/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --sand: #F5EBD8;
  --sand-light: #FAF5ED;
  --ocean: #1A3A4A;
  --ocean-mid: #2C5F75;
  --terracotta: #C4622D;
  --terracotta-light: #D97B49;
  --white: #FFFFFF;
  --text: #2E2E2E;
  --text-light: #5A5A5A;
  --border: #E0D0BA;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --nav-h: 72px;
  --max-w: 1140px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(26,58,74,0.12);
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::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(--text);
  background: var(--white);
  line-height: 1.7;
}

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

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-light); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--ocean);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26, 58, 74, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  background: rgba(245, 235, 216, 0.12);
  border-radius: 6px;
  padding: 4px 10px;
  transition: background var(--transition);
}

.nav-logo:hover {
  background: rgba(245, 235, 216, 0.22);
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--terracotta-light);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--terracotta-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,58,74,0.15) 0%,
    rgba(26,58,74,0.55) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 780px;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,98,45,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--sand-light);
}

.section-ocean {
  background: var(--ocean);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== WELCOME SECTION ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-text h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.welcome-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.welcome-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.welcome-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.welcome-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.welcome-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(26,58,74,0.2);
  z-index: 1;
  position: relative;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--ocean);
  padding: 3rem 0;
  border-top: 3px solid var(--terracotta);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item {
  color: var(--white);
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}

.feature-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,98,45,0.2);
  border: 1.5px solid rgba(196,98,45,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--terracotta-light);
  transition: background var(--transition), border-color var(--transition);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-item:hover .feature-icon {
  background: rgba(196,98,45,0.35);
  border-color: var(--terracotta-light);
}

.feature-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--sand);
  display: block;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ===== GALLERY SLIDER ===== */
.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ocean);
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery-slide {
  min-width: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.gallery-btn {
  pointer-events: all;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.gallery-btn:hover { background: rgba(255,255,255,0.35); }

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.gallery-dot.active { background: var(--white); }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.amenity-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,58,74,0.15);
}

.amenity-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenity-box ul {
  list-style: none;
}

.amenity-box li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.amenity-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* ===== PRICES ===== */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--terracotta);
  max-width: 480px;
  margin: 0 auto;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-big {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--terracotta);
  margin: 1rem 0;
  font-weight: 700;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== LOCATION MAP IMAGE ===== */
.location-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-box h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--ocean);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box p, .info-box li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.info-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--ocean);
}

.contact-detail-text strong {
  display: block;
  color: var(--ocean);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-detail-text span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--sand-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ocean-mid);
  box-shadow: 0 0 0 3px rgba(44,95,117,0.12);
  background: var(--white);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,98,45,0.3);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  padding: 6rem 1.5rem 4rem;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

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

.legal-content p, .legal-content li {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-content ul { padding-left: 1.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ocean);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

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

.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--ocean);
  padding: 6rem 0 3.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196,98,45,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(44,95,117,0.5) 0%, rgba(26,58,74,0) 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: 0.6;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }

/* ===== SCROLL FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  .hero-slide { transition: none; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ocean);
  color: rgba(255,255,255,0.9);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.cb-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.cb-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

.cb-text a {
  color: var(--terracotta-light);
}

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

#cb-reject {
  padding: 0.55rem 1.25rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
#cb-reject:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

#cb-accept {
  padding: 0.55rem 1.25rem;
  background: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
#cb-accept:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
}

@media (max-width: 640px) {
  .cb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cb-actions { width: 100%; }
  #cb-reject, #cb-accept { flex: 1; text-align: center; }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(196,98,45,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--terracotta-light); color: var(--white); transform: translateY(-3px); }

/* ===== DIVIDER ===== */
.divider {
  width: 64px;
  height: 3px;
  background: var(--terracotta);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.divider-left {
  margin: 0 0 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .amenities-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ocean);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    border-bottom: none;
  }
  .nav-cta { margin: 0.5rem 2rem; display: block; text-align: center; }

  .hero { min-height: 80vw; height: 70vh; }
  .hero-arrow { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .feature-item { padding: 1rem 0.5rem; }

  .welcome-images { grid-template-columns: 1fr; }
  .welcome-images img:first-child { grid-column: 1; }
  .welcome-images img { height: 200px; }

  .gallery-slide img { height: 280px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .section { padding: 3.5rem 0; }
}

/* ===== DESIGN ENHANCEMENTS ===== */

/* Smooth image loading */
img { transition: opacity 0.3s ease; }

/* Nav CTA pill style */
.nav-cta {
  border-radius: 2rem !important;
}

/* Divider animation on section entry */
.section-header .divider {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease 0.3s;
}
.section-header.visible .divider,
.section-header .divider {
  transform: scaleX(1);
}

/* Price card hover */
.price-card {
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,58,74,0.15);
}

/* Info boxes hover accent */
.info-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.info-box:hover {
  border-left-color: var(--terracotta);
  background: var(--sand-light);
}

/* Gallery counter badge */
.gallery-slider {
  box-shadow: 0 8px 40px rgba(26,58,74,0.18);
}

/* Form card subtle left accent */
.form-card {
  border-left: 4px solid var(--terracotta);
}

/* Back-to-top SVG arrow */
.back-top {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

/* Footer separator line */
.footer {
  border-top: 3px solid var(--terracotta);
}

/* Section ocean subtle pattern */
.section-ocean {
  background: linear-gradient(135deg, var(--ocean) 0%, #1e4560 100%);
}

/* Hero overlay — slightly richer at bottom */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26,58,74,0.1) 0%,
    rgba(26,58,74,0.3) 50%,
    rgba(26,58,74,0.65) 100%
  );
}

/* Subtle hover on nav logo */
.nav-logo img {
  transition: transform 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.04);
}

/* Welcome section image container overflow */
.welcome-images {
  border-radius: var(--radius);
  overflow: hidden;
}
