/* ── PAGE HERO ────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 61, 79, 0.8) 0%,
    rgba(15, 61, 79, 0.5) 50%,
    rgba(15, 61, 79, 0.25) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
}

.page-hero-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.page-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

/* ── PAGE BODY ────────────────────────────────── */
.page-body {
  padding: 120px 48px;
}

.page-body-inner {
  max-width: 600px;
  margin: 0 auto;
}

.page-section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 36px;
}

.page-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ── FEATURE GRID ─────────────────────────────── */
.page-feature {
  padding: 100px 48px;
  background: var(--sand);
}

.page-feature-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-feature-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
}

.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.page-feature-item {
  text-align: center;
}

.page-feature-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--ocean-deep);
}

.page-feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.8;
}

/* ── QUOTE ────────────────────────────────────── */
.page-quote {
  padding: 100px 48px;
  text-align: center;
}

.page-quote-inner {
  max-width: 580px;
  margin: 0 auto;
}

.page-blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ocean-deep);
}

/* ── PAGE CTA ─────────────────────────────────── */
.page-cta-section {
  padding: 120px 48px;
  text-align: center;
  background: var(--ocean-deep);
}

.page-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.page-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-cta-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.page-cta-btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.page-cta-btn:hover {
  background: #E8B020;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 860px) {
  .page-hero { min-height: 50svh; }
  .page-hero-content { padding: 0 24px; }

  .page-body { padding: 80px 24px; }

  .page-feature { padding: 72px 24px; }
  .page-feature-grid { grid-template-columns: 1fr; gap: 32px; }

  .page-quote { padding: 72px 24px; }

  .page-cta-section { padding: 80px 24px; }
}
