/*
Theme Name: Proposal Events Thailand
Theme URI: https://proposal.events
Author: proposal.events
Author URI: https://proposal.events
Description: Premium marriage proposal services theme for Thailand islands. Designed for proposal.events — Phuket, Koh Samui, Krabi, Koh Phangan, Koh Tao, Koh Lanta.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: proposal-events
Tags: wedding, proposal, thailand, luxury, travel, romance
*/

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --teal:         #0A5C46;
  --teal-mid:     #14866A;
  --teal-light:   #D8F0E8;
  --teal-xlight:  #F0FAF6;
  --gold:         #B8892A;
  --gold-light:   #FAF3E0;
  --dark:         #0E1410;
  --mid:          #3D4E47;
  --muted:        #7A8C85;
  --cream:        #F8F6F1;
  --cream2:       #F2EFE8;
  --white:        #FFFFFF;
  --border:       rgba(0,0,0,0.09);
  --border-dark:  rgba(255,255,255,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 4px;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }
input, textarea, select { font-family: var(--sans); }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }
p { font-weight: 300; line-height: 1.8; color: var(--mid); }

/* ═══════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }

/* ═══════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.tag.light { color: var(--teal-mid); }
.tag.gold  { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--teal); }
.section-title.white { color: #fff; }
.section-title.white em { color: rgba(255,255,255,.6); }

.section-sub {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  max-width: 520px; margin: 16px auto 0;
}
.section-sub.left { margin: 16px 0 0; }
.section-sub.light { color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal-mid); color: #fff;
  border-color: var(--teal-mid);
}
.btn-primary:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--mid);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--teal-mid); color: var(--teal); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.25);
}
.btn-outline-white:hover { border-color: #fff; color: #fff; }

.btn-gold {
  background: var(--gold); color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: #9A7020; border-color: #9A7020; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 70px;
  background: rgba(10,18,14,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height .3s, background .3s;
}
#site-header.scrolled {
  height: 60px;
  background: rgba(10,18,14,0.98);
}
#site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 48px;
}
.site-logo {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: #fff; letter-spacing: .3px;
  flex-shrink: 0;
}
.site-logo span { color: var(--teal-mid); }

#primary-nav {
  display: flex; align-items: center; gap: 36px;
}
#primary-nav a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
#primary-nav a:hover,
#primary-nav a.active { color: #fff; }

.nav-cta {
  background: var(--teal-mid) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal) !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; transition: all .3s;
}

/* ═══════════════════════════════════════════════════
   HERO — Homepage
═══════════════════════════════════════════════════ */
.hero-home {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-home .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
.hero-home .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,16,12,.9)  0%,
    rgba(8,16,12,.35) 50%,
    rgba(8,16,12,.12) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 88px;
  max-width: 800px;
  animation: heroFadeUp .9s ease both .2s;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-tag {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal-mid);
  border: 1px solid rgba(20,134,106,.4);
  padding: 5px 14px; border-radius: var(--radius);
  margin-bottom: 24px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 300; line-height: 1.02;
  color: #fff; margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: rgba(255,255,255,.72); }
.hero-desc {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; right: 0; bottom: 88px; z-index: 2;
  display: flex; flex-direction: column;
}
.stat-item {
  padding: 16px 32px;
  border-left: 1px solid rgba(255,255,255,.1);
  background: rgba(8,16,12,.55);
  backdrop-filter: blur(8px);
}
.stat-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-num {
  font-family: var(--serif);
  font-size: 30px; font-weight: 400; color: #fff;
}
.stat-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.42);
}
.hero-scroll {
  position: absolute; bottom: 32px; right: 48px; z-index: 2;
  writing-mode: vertical-rl;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 10px;
  animation: heroFadeUp .9s ease both .8s;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════════
   ISLANDS GRID
═══════════════════════════════════════════════════ */
.islands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.island-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.island-card:nth-child(1) { grid-column: 1 / 3; }

.island-img-wrap { overflow: hidden; height: 380px; }
.island-card:nth-child(1) .island-img-wrap { height: 440px; }
.island-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.island-card:hover .island-img-wrap img { transform: scale(1.05); }

.island-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,12,.85) 0%, rgba(8,14,12,.12) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: background .3s;
}
.island-card:hover .island-overlay {
  background: linear-gradient(to top, rgba(8,14,12,.92) 0%, rgba(10,92,70,.18) 60%, transparent 100%);
}

.island-season {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 8px;
}
.island-name {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400; color: #fff;
  margin-bottom: 6px; line-height: 1.1;
}
.island-card:nth-child(1) .island-name { font-size: 36px; }
.island-card-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.6); line-height: 1.5;
  max-width: 320px;
  opacity: 0; transform: translateY(8px);
  transition: all .3s ease;
}
.island-card:hover .island-card-desc { opacity: 1; transform: none; }
.island-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-mid); margin-top: 12px;
  opacity: 0; transform: translateY(6px);
  transition: all .3s ease .05s;
}
.island-link::after { content: '→'; font-size: 13px; }
.island-card:hover .island-link { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════════════ */
.packages-bg { background: var(--dark); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.pkg-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .3s, border-color .3s, transform .2s;
}
.pkg-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--teal-mid);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.pkg-card:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.featured {
  background: rgba(20,134,106,.1);
  border-color: rgba(20,134,106,.28);
}
.pkg-card.featured::before { transform: scaleX(1); }

.pkg-badge {
  display: inline-block;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-mid); background: rgba(20,134,106,.15);
  padding: 3px 10px; border-radius: 2px;
  margin-bottom: 20px; width: fit-content;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 26px; font-weight: 300; color: #fff;
  margin-bottom: 3px;
}
.pkg-type { font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 18px; letter-spacing: .5px; }
.pkg-price {
  font-family: var(--serif);
  font-size: 36px; font-weight: 300; color: #fff;
}
.pkg-price-sub { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 300; }
.pkg-divider { height: 1px; background: rgba(255,255,255,.08); margin: 20px 0; }
.pkg-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.6); line-height: 1.5;
}
.pkg-feature::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal-mid); flex-shrink: 0; margin-top: 6px;
}
.pkg-cta {
  display: block; margin-top: 28px; text-align: center;
  padding: 12px; border-radius: var(--radius);
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.pkg-cta:hover { border-color: var(--teal-mid); color: var(--teal-mid); }
.pkg-card.featured .pkg-cta {
  background: var(--teal-mid); border-color: var(--teal-mid); color: #fff;
}
.pkg-card.featured .pkg-cta:hover { background: var(--teal); }

/* ═══════════════════════════════════════════════════
   GALLERY MOSAIC
═══════════════════════════════════════════════════ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px 240px;
  gap: 3px;
}
.gp { overflow: hidden; border-radius: 2px; }
.gp img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gp:hover img { transform: scale(1.05); }
.gp:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gp:nth-child(2) { grid-column: 5 / 8; grid-row: 1 / 2; }
.gp:nth-child(3) { grid-column: 8 / 13; grid-row: 1 / 2; }
.gp:nth-child(4) { grid-column: 5 / 9; grid-row: 2 / 3; }
.gp:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }
.gp:nth-child(6) { grid-column: 1 / 4;  grid-row: 3 / 4; }
.gp:nth-child(7) { grid-column: 4 / 8;  grid-row: 3 / 4; }
.gp:nth-child(8) { grid-column: 8 / 13; grid-row: 3 / 4; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-bg { background: var(--cream2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white); padding: 32px;
  border-radius: var(--radius); border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--serif); font-size: 80px; font-weight: 300;
  color: var(--teal-light); line-height: 1;
  position: absolute; top: 12px; left: 24px;
}
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 6px; }
.testi-text {
  font-family: var(--serif);
  font-size: 17px; font-weight: 300; font-style: italic;
  color: var(--mid); line-height: 1.7;
  padding-top: 28px; margin-bottom: 20px;
}
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--teal-light);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--dark); }
.testi-location { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ═══════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.process-step {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .2s, transform .2s;
}
.process-step:hover { border-color: var(--teal-mid); transform: translateY(-2px); }
.step-num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300;
  color: var(--teal-light); line-height: 1;
  margin-bottom: 16px;
}
.step-title { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════════ */
.whyus-bg { background: var(--teal); }
.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.whyus-img-wrap {
  height: 520px; border-radius: var(--radius); overflow: hidden;
  position: relative;
}
.whyus-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.whyus-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(10,18,14,.85); backdrop-filter: blur(8px);
  padding: 16px 20px; border-radius: 3px;
  border-left: 3px solid var(--teal-mid);
}
.whyus-badge p { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.whyus-badge strong { font-family: var(--serif); font-size: 24px; color: #fff; font-weight: 400; }
.whyus-features { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.whyus-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.whyus-feature:last-child { border-bottom: none; }
.feat-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feat-title { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.feat-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   ISLAND PAGE HERO
═══════════════════════════════════════════════════ */
.island-hero {
  position: relative; height: 70vh; min-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.island-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
.island-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,16,12,.88) 0%, rgba(8,16,12,.3) 55%, rgba(8,16,12,.1) 100%);
}
.island-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 72px;
  animation: heroFadeUp .8s ease both .1s;
}
.island-breadcrumb {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.island-breadcrumb a { color: var(--teal-mid); }
.island-breadcrumb a:hover { color: #fff; }
.island-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 300; color: #fff; margin-bottom: 14px;
}
.island-hero h1 em { font-style: italic; }
.island-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.5);
  letter-spacing: .5px;
}
.island-hero-meta span { display: flex; align-items: center; gap: 6px; }
.island-hero-meta span::before {
  content: '';
  display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--teal-mid);
}

/* ═══════════════════════════════════════════════════
   ISLAND DETAIL SPLIT
═══════════════════════════════════════════════════ */
.island-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  padding: 100px 80px;
}
.island-split.reverse { direction: rtl; }
.island-split.reverse > * { direction: ltr; }
.island-split-img {
  height: 540px; border-radius: var(--radius); overflow: hidden;
  position: sticky; top: 90px;
}
.island-split-img img { width: 100%; height: 100%; object-fit: cover; }
.island-split-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 3px;
  height: 540px;
}
.island-split-img-grid > div { overflow: hidden; }
.island-split-img-grid > div:first-child { grid-row: 1 / 3; }
.island-split-img-grid > div img { width: 100%; height: 100%; object-fit: cover; }

.island-detail-content { display: flex; flex-direction: column; gap: 32px; }
.island-season-badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); border: 1px solid var(--teal-light);
  padding: 5px 14px; border-radius: var(--radius); width: fit-content;
}
.island-detail-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.1; color: var(--dark);
}
.island-detail-title em { font-style: italic; color: var(--muted); display: block; }
.island-detail-desc { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; }

.spot-list { display: flex; flex-direction: column; gap: 8px; }
.spot-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--cream); border-radius: 3px;
  border-left: 2px solid var(--teal-mid);
}
.spot-name { font-size: 13px; font-weight: 500; color: var(--dark); }
.spot-type { font-size: 11px; color: var(--muted); letter-spacing: .5px; }

/* ═══════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════ */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.contact-form-side {
  background: var(--dark);
  padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-img-side { position: relative; overflow: hidden; min-height: 500px; }
.contact-img-side img { width: 100%; height: 100%; object-fit: cover; }
.contact-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,20,16,.35), transparent);
}

.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px; font-weight: 300;
  color: #fff; outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal-mid); }
.form-group select { color: rgba(255,255,255,.7); }
.form-group select option { background: #111; }
.form-group textarea { min-height: 90px; resize: vertical; }

.whatsapp-strip {
  position: absolute; bottom: 36px; left: 0;
  background: rgba(37,211,102,.92);
  backdrop-filter: blur(8px);
  padding: 14px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: #fff;
  transition: transform .2s;
}
.whatsapp-strip:hover { transform: translateX(4px); }
.whatsapp-strip svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   INTRO STRIP (dark bar)
═══════════════════════════════════════════════════ */
.intro-strip {
  background: var(--dark); padding: 28px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.intro-strip blockquote {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: rgba(255,255,255,.7); font-style: italic; line-height: 1.5;
  max-width: 560px; border: none; padding: 0; margin: 0;
}
.intro-strip-links { display: flex; gap: 24px; flex-shrink: 0; }
.intro-strip-links a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-mid); transition: color .2s;
}
.intro-strip-links a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 64px 80px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--serif); font-size: 22px;
  color: #fff; margin-bottom: 14px;
}
.footer-logo span { color: var(--teal-mid); }
.footer-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.32); line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.48); transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.22); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-socials a:hover { color: var(--teal-mid); }

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════ */
.page-hero {
  position: relative; padding: 160px 80px 80px;
  background: var(--dark); overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--teal-mid), transparent);
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.5); max-width: 520px; font-size: 16px; }

/* ═══════════════════════════════════════════════════
   UPSELL / ADD-ONS
═══════════════════════════════════════════════════ */
.addons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.addon-card {
  padding: 28px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  transition: border-color .2s, transform .2s;
}
.addon-card:hover { border-color: var(--teal-mid); transform: translateY(-2px); }
.addon-price {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--teal); margin-bottom: 4px;
}
.addon-name { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.addon-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.addon-margin {
  display: inline-block; margin-top: 12px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); background: var(--teal-xlight);
  padding: 3px 10px; border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   BLOG / ARCHIVE
═══════════════════════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 48px;
}
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--dark); line-height: 1.3; margin-bottom: 10px;
}
.blog-card-title a { transition: color .2s; }
.blog-card-title a:hover { color: var(--teal); }
.blog-card-excerpt {
  font-size: 13px; font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-bottom: 16px;
}
.blog-card-meta { font-size: 11px; color: var(--muted); }

/* ═══════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .container, #site-header .header-inner,
  .intro-strip, #site-footer { padding-left: 32px; padding-right: 32px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .island-split { padding: 72px 48px; }
}
@media (max-width: 860px) {
  .islands-grid { grid-template-columns: 1fr; }
  .island-card:nth-child(1) { grid-column: 1; }
  .packages-grid { grid-template-columns: 1fr; gap: 12px; }
  .whyus-inner, .contact-section,
  .island-split { grid-template-columns: 1fr; }
  .island-split.reverse { direction: ltr; }
  .contact-img-side { display: none; }
  .hero-stats { display: none; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr; grid-template-rows: auto;
  }
  .gp { grid-column: auto !important; grid-row: auto !important; height: 200px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  #primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 0 32px 72px; }
  .intro-strip { flex-direction: column; gap: 20px; }
}
@media (max-width: 560px) {
  .process-grid, .testimonials-grid, .addons-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-side { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .island-split { padding: 48px 24px; gap: 40px; }
}
</style>
