/*
Theme Name: WePackYou Manus
Theme URI: https://wepackyou.com
Author: WePackYou
Description: Professional packing services theme matching the Manus design — Navy/Gold luxury aesthetic.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: wepackyou-manus
*/

/* ============================================================
   DESIGN SYSTEM — Navy #0D1B2A, Gold #C9A84C, Cream #FAFAF8
   Fonts: Playfair Display (serif headings), Inter (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-dark:  #080F18;
  --navy-mid:   #1A2E45;
  --gold:       #C9A84C;
  --gold-light: #DFC27A;
  --gold-dark:  #A07C2E;
  --cream:      #FAFAF8;
  --warm-gray:  #F5F4F0;
  --charcoal:   #2C2C2C;
  --text-muted: #6B7280;
  --border:     #E5E3DC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 1400px) {
  .container { padding: 0 3rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--navy);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider-gold {
  height: 2px;
  width: 3rem;
  background: var(--gold);
  margin: 1rem 0;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-gold:active { transform: scale(0.97); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
}
.btn-navy:hover { background: var(--navy-mid); }
.btn-navy:active { transform: scale(0.97); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border-radius: 2px;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }
.btn-outline-gold:active { transform: scale(0.97); }

/* ── NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled,
#site-header.page-header {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
#site-header.transparent { background: transparent; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-badge {
  width: 2.25rem; height: 2.25rem;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--navy-dark);
}
.nav-logo-text { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; line-height: 1; }
.nav-logo-sub { color: var(--gold); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a, .nav-links button {
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  min-width: 220px;
  padding: 0.5rem 0;
  display: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.nav-phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-phone:hover { color: var(--gold); }

.nav-cta { margin-left: 0.5rem; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-menu {
  display: none;
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a, .nav-mobile-menu button {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: none;
  border-left: none; border-right: none; border-top: none;
  width: 100%; text-align: left; cursor: pointer;
}
.nav-mobile-menu a:hover, .nav-mobile-menu button:hover { color: var(--gold); }
.nav-mobile-submenu { padding-left: 1rem; }
.nav-mobile-submenu a { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,15,24,0.65) 30%, rgba(8,15,24,0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1280px) {
  .hero-grid { gap: 5rem; }
}
.hero-geo-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-geo-line { height: 1px; width: 2.5rem; background: var(--gold); }
.hero-geo-text {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-divider { height: 2px; width: 3rem; background: var(--gold); margin: 1.25rem 0; }
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.hero-desc-small {
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
}
.hero-trust-item svg { color: var(--gold); }

/* Hero Quote Form */
.hero-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.hero-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 0.875rem; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.form-input {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-dark); color: #fff; }
.form-or {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.form-or a { color: var(--gold); font-weight: 600; }
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success-icon {
  width: 3rem; height: 3rem;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-success p { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { margin-top: 2rem; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── ABOUT / WHY SECTION ── */
.section-white { background: #fff; padding: 6rem 0; }
.section-cream { background: var(--cream); padding: 6rem 0; }
.section-navy { background: var(--navy); padding: 6rem 0; }
.section-navy-dark { background: var(--navy-dark); padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-header.light h2 { color: #fff; }
.section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-divider {
  height: 2px; width: 3rem;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { box-shadow: 0 8px 30px rgba(13,27,42,0.12); transform: translateY(-2px); }
.service-icon {
  width: 2.75rem; height: 2.75rem;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.6rem; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 1.75rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { font-family: 'Inter', sans-serif; font-size: 0.8rem; }
.testimonial-name { color: var(--gold); font-weight: 600; }
.testimonial-loc { color: rgba(255,255,255,0.5); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── SERVICE AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.area-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: var(--warm-gray);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.process-step-num {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--warm-gray);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; font-size: 1rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-brand-badge {
  width: 2.5rem; height: 2.5rem;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 0.8rem;
  color: var(--navy-dark);
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-trust { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Inter', sans-serif; font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}
.footer-trust-item::before { content: '✓'; color: var(--gold); font-size: 0.7rem; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact { font-family: 'Inter', sans-serif; }
.footer-contact a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.23,1,0.32,1), transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--navy-dark);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(8,15,24,0.6); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p { font-family: 'Inter', sans-serif; font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

/* ── BOOKING PAGE ── */
.booking-section { padding: 6rem 0; background: var(--cream); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.booking-form-card { background: #fff; border-radius: 4px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.booking-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.booking-info p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.booking-features { list-style: none; }
.booking-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.booking-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

/* ── CONTACT PAGE ── */
.contact-section { padding: 6rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-item-icon { color: var(--gold); margin-top: 0.1rem; }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--text-muted); }
.contact-item a:hover { color: var(--gold); }
.contact-form-card { background: #fff; border-radius: 4px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── ABOUT PAGE ── */
.about-section { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: 4px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-content .section-label { display: block; margin-bottom: 0.75rem; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); margin-bottom: 1rem; }
.about-content p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── WORDPRESS DEFAULTS RESET ── */
.wp-block-image { margin: 0; }
p:empty { display: none; }
