/* ===== CUSTOM PROPERTIES ===== */
:root {
  --charcoal: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --charcoal-dark: #1E1E1E;
  --coral: #E86A5B;
  --coral-light: #F08578;
  --coral-dark: #D45547;
  --cream: #FDF6F0;
  --cream-dark: #F7EDE3;
  --sand: #F5E6D8;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --text-inverse: #FDF6F0;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 106, 91, 0.35);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 106, 91, 0.45);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.logo-text { font-family: var(--font-display); }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width var(--transition);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav a:not(.btn):hover { color: var(--coral); }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.72) 0%,
    rgba(44, 44, 44, 0.55) 50%,
    rgba(232, 106, 91, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(253, 246, 240, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  top: -20px;
  right: 40px;
  opacity: 0.6;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ===== STAYS ===== */
.stays { background: var(--cream); }
.stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stay-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.stay-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.stay-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.stay-card:hover .stay-card-img img { transform: scale(1.05); }
.stay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stay-card-body {
  padding: 28px;
}
.stay-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.stay-meta {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 12px;
}
.stay-card-body > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.stay-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.stay-amenities li {
  background: var(--cream);
  color: var(--charcoal-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* ===== DOLPHINS ===== */
.dolphins { background: var(--white); }
.dolphins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dolphins-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.dolphins-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.dolphins-images {
  position: relative;
}
.dolphin-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dolphin-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dolphin-img-float {
  position: absolute;
  bottom: -30px;
  left: -20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.dolphin-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SURROUNDINGS ===== */
.surroundings { background: var(--cream); }
.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.surround-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.surround-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 106, 91, 0.2);
}
.surround-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 106, 91, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.surround-card:hover .surround-card-icon {
  background: var(--coral);
}
.surround-card:hover .surround-card-icon svg { stroke: var(--white); }
.surround-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.surround-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(2) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

/* ===== CTA ===== */
.cta {
  background: var(--charcoal);
  padding: 100px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-content { flex: 1; }
.cta-eyebrow { color: var(--coral-light) !important; }
.cta-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-subtitle {
  color: rgba(253, 246, 240, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item dt {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(232, 106, 91, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item dd {
  margin: 0;
}
.contact-item a {
  color: var(--charcoal);
  font-weight: 500;
  transition: color var(--transition);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 106, 91, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal-dark);
  color: var(--text-inverse);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: rgba(253, 246, 240, 0.6);
  margin-top: 16px;
  line-height: 1.7;
  font-size: 0.9rem;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(253, 246, 240, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  color: rgba(253, 246, 240, 0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-contact a {
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(253, 246, 240, 0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(253, 246, 240, 0.4);
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .dolphins-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images { order: -1; max-width: 500px; }
  .dolphins-images { order: -1; max-width: 480px; }
  .stays-grid { grid-template-columns: repeat(2, 1fr); }
  .surroundings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-subtitle { margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav a:not(.btn) { font-size: 1.1rem; }
  .main-nav .btn { width: 100%; justify-content: center; }
  .stays-grid { grid-template-columns: 1fr; }
  .surroundings-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) { grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .about-img-secondary { right: -10px; bottom: -20px; }
  .dolphin-img-float { left: -10px; bottom: -20px; }
  .dolphins-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: row; width: 100%; }
  .cta-actions .btn { flex: 1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero-title { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .about-img-secondary { display: none; }
  .dolphin-img-float { display: none; }
}
