/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #0E4D4D;
  --teal-light: #1A7A7A;
  --sand: #D4956A;
  --sand-light: #E8B88A;
  --ivory: #F9F6F0;
  --ivory-dark: #EDE9E0;
  --charcoal: #1C1C1C;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
  --border: #E0D9CE;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; }

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
  letter-spacing: -0.3px;
}

.navbar-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 64px 72px;
  background: var(--ivory);
  min-height: 620px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.hero-bg-shape-1 {
  width: 700px; height: 700px;
  background: var(--teal);
  top: -200px; right: -100px;
}

.hero-bg-shape-2 {
  width: 400px; height: 400px;
  background: var(--sand);
  bottom: -100px; right: 150px;
}

.hero-bg-shape-3 {
  width: 300px; height: 300px;
  background: var(--teal-light);
  top: 100px; right: 50%;
  opacity: 0.04;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  background: rgba(14, 77, 77, 0.08);
  border: 1px solid rgba(14, 77, 77, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Hero Visual */
.hero-visual {
  background: linear-gradient(145deg, #0E4D4D 0%, #0A3D3D 40%, #083030 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-visual-inner { position: relative; }

.ocean-lines {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  overflow: hidden;
}

.ocean-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.ocean-line-1 { top: 20%; width: 60%; }
.ocean-line-2 { top: 35%; width: 80%; }
.ocean-line-3 { top: 50%; width: 50%; }
.ocean-line-4 { top: 65%; width: 70%; }

.hero-visual-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual-icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.9;
}

.hero-visual-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* ===== STATS ===== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.stat {
  flex: 1;
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sand);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 16px;
}

/* ===== THE MODEL ===== */
.themodel {
  padding: 100px 64px;
  background: white;
}

.themodel-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.specialty-item {
  background: var(--ivory);
  padding: 36px 28px;
  transition: background 0.2s;
}

.specialty-item:hover { background: var(--ivory-dark); }

.specialty-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal);
  margin-bottom: 20px;
  opacity: 0.85;
}

.specialty-icon-aesthetic { background: #7B6B8A; }
.specialty-icon-body { background: #5A7A5A; }
.specialty-icon-pedia { background: #8A7A4A; }

.specialty-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.specialty-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 64px;
  background: var(--teal);
}

.outcomes .section-label { color: rgba(255,255,255,0.5); }
.outcomes .section-heading { color: white; }

.outcomes-inner { max-width: 1200px; margin: 0 auto; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-card {
  background: rgba(255,255,255,0.05);
  padding: 36px 32px;
  transition: background 0.2s;
}

.outcome-card:hover { background: rgba(255,255,255,0.1); }

.outcome-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.outcome-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== ATMOSPHERE ===== */
.atmosphere {
  position: relative;
  padding: 100px 64px;
  background: var(--ivory);
  overflow: hidden;
}

.atmosphere-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atmosphere-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,149,106,0.06) 0%, transparent 60%);
}

.atmosphere-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.coast-scene {
  position: relative;
  background: linear-gradient(to bottom, #D4956A 0%, #B8754E 30%, #0E4D4D 30%, #0A3D3D 60%, #E8D5B0 60%, #C4A882 100%);
  border-radius: 20px;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.coast-sky { position: absolute; top: 0; left: 0; right: 0; height: 30%; }
.coast-water { position: absolute; top: 30%; left: 0; right: 0; height: 30%; }
.coast-sand { position: absolute; top: 60%; left: 0; right: 0; bottom: 0; }

.basilica-icon {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.basilica-tower {
  width: 8px;
  height: 30px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px 2px 0 0;
}

.basilica-body {
  width: 28px;
  height: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

.coast-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
}

.coast-stat {}

.coast-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.coast-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.location-facts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 32px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.lf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: white;
}

.lf-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

.lf-key {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== INSURANCE ===== */
.location {
  padding: 80px 64px;
  background: white;
  border-top: 1px solid var(--border);
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.insurance-grid {
  display: flex;
  gap: 12px;
  margin: 40px 0 24px;
  flex-wrap: wrap;
}

.insurance-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.insurance-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}

.insurance-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.insurance-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 64px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(14,77,77,0.4) 0%, transparent 60%);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 48px;
}

.closing-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sig-line {
  width: 40px;
  height: 1px;
  background: var(--sand);
}

.sig-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  padding: 40px 64px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.footer-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .atmosphere-inner { grid-template-columns: 1fr; }
  .atmosphere-visual { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .stat-divider { display: none; }
  .navbar { padding: 20px 24px; }
  .hero { padding: 48px 24px; }
  .themodel { padding: 64px 24px; }
  .outcomes { padding: 64px 24px; }
  .atmosphere { padding: 64px 24px; }
  .location { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 600px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 40px; }
  .section-heading { font-size: 32px; }
  .closing-headline { font-size: 36px; }
}