/* ==================================================
   ATALAYA PROPERTY ADVISORS
   Stylesheet — Navy & Gold editorial
   ================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2744;
  --navy-dark: #12192e;
  --navy-light: #253460;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dark: #a88a32;
  --cream: #faf8f4;
  --cream-dark: #f2efe6;
  --white: #ffffff;
  --text: #1a2744;
  --text-muted: #5a6480;
  --text-soft: #8a92a8;
  --border: rgba(26, 39, 68, 0.12);
  --border-strong: rgba(26, 39, 68, 0.24);
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 39, 68, 0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==========  NAVIGATION  ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 5%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.nav-logo { height: 48px; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--gold-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--navy-light);
  color: var(--cream) !important;
}

.nav-cta.active::after { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  padding: 2rem 5%;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
}

.mobile-menu a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.mobile-menu.open { display: flex; }

/* ==========  SHARED SECTION STYLES  ========== */
section { padding: 7rem 8%; position: relative; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.section-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 640px;
}

.section-text + .section-text { margin-top: 1rem; }

/* ==========  BUTTONS  ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-light);
  color: var(--cream);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ==========  HERO  ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding-top: 76px;
  overflow: hidden;
}

.hero-left {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8% 6% 8% 8%;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 50%;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.hero-location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 3rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
}

.hero-actions .btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.hero-actions .btn-primary:hover {
  background: var(--gold-light);
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero-actions .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.hero-trust-item {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-trust-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0;
  text-transform: none;
}

.hero-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
  position: relative;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 420px;
}

.hero-logo {
  width: 100%;
  max-width: 380px;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ==========  TWO COL  ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ==========  CARDS / SERVICES  ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.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-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(26, 39, 68, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ==========  STAT BOX  ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-number.gold { color: var(--gold-dark); }

.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========  PAGE HEADER  ========== */
.page-header {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px 8% 80px;
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.page-header.cantal::before { background-image: url('../assets/cantal-1.jpg'); }
.page-header.macenas::before { background-image: url('../assets/macenas-1.jpg'); }
.page-header.palmeral::before { background-image: url('../assets/palmeral-1.webp'); }
.page-header.marinagolf::before { background-image: url('../assets/marinagolf-1.jpg'); }
.page-header.mojacar::before { background-image: url('../assets/cantal-1.jpg'); }
.page-header.about::before { background-image: url('../assets/macenas-2.jpg'); }
.page-header.services::before { background-image: url('../assets/palmeral-2.jpg'); }
.page-header.contact::before { background-image: url('../assets/marinagolf-1.jpg'); }

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.88), rgba(26, 39, 68, 0.55));
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-header .section-label { color: var(--gold-light); }

.page-header .section-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-header .section-subtitle { color: rgba(255, 255, 255, 0.8); }

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb-sep { opacity: 0.4; }

/* ==========  IMAGE GRID  ========== */
.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 4rem 0;
}

.img-grid.two { grid-template-columns: 1fr 1fr; }

.img-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s;
}

.img-grid.featured {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 580px;
}

.img-grid.featured img:first-child {
  grid-row: span 2;
  height: 100%;
}

.img-grid.featured img {
  height: 100%;
}

.img-wrap {
  overflow: hidden;
  border-radius: 2px;
}

.img-wrap img {
  transition: transform 0.7s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrap:hover img { transform: scale(1.04); }

/* ==========  FEATURES LIST  ========== */
.features-list { margin: 3rem 0; }

.feature-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ==========  ZONE META  ========== */
.zone-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  margin: 4rem 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.zone-meta-item { text-align: center; }

.zone-meta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}

.zone-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 400;
}

/* ==========  ZONE CARDS  ========== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.zone-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: block;
}

.zone-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.zone-card:hover img { transform: scale(1.08); }

.zone-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.9) 0%, rgba(26, 39, 68, 0.25) 55%, transparent 100%);
}

.zone-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
  color: var(--white);
}

.zone-card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.zone-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.zone-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.zone-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap 0.2s;
}

.zone-card:hover .zone-card-arrow { gap: 14px; }

/* ==========  WHY  ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-item {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.why-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ==========  API BAND  ========== */
.credential-band {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.credential-band .section-title { color: var(--white); }
.credential-band .section-text { color: rgba(255, 255, 255, 0.75); }
.credential-band .section-label { color: var(--gold-light); }

.api-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-top: 2rem;
}

.api-badge-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.api-badge-content { display: flex; flex-direction: column; gap: 4px; }

.api-badge-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.api-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
}

/* ==========  ABOUT  ========== */
.about-portrait {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.about-portrait-img {
  width: 100%;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.about-portrait::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 1;
}

.about-portrait-frame {
  background: var(--cream-dark);
  padding: 2rem;
  position: relative;
  z-index: 2;
}

/* ==========  CONTACT  ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { padding-top: 0.5rem; }

.contact-block {
  padding: 1.75rem 0;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-block:first-of-type { padding-top: 0; }

.contact-block-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-block-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 400;
}

.contact-block-value a:hover { color: var(--gold-dark); }

.contact-form {
  background: var(--white);
  padding: 3rem;
  border: 0.5px solid var(--border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input, .form-textarea, .form-select {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 0.5px solid var(--border);
  padding: 14px 16px;
  outline: none;
  transition: all 0.2s;
  resize: none;
  width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--navy);
  background: var(--white);
}

.form-textarea { min-height: 140px; }

.form-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  border: 0.5px solid var(--gold);
  padding: 1.25rem;
  font-size: 14px;
  color: var(--navy);
  margin-top: 1rem;
}

.form-success.show { display: block; }

/* ==========  FOOTER  ========== */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 8% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.footer-brand-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 340px;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-api {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ==========  BACKGROUNDS  ========== */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-text { color: rgba(255, 255, 255, 0.72); }
.bg-navy .section-label { color: var(--gold-light); }

/* ==========  QUOTE  ========== */
.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.bg-navy .quote-text { color: var(--white); }

.quote-author {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bg-navy .quote-author { color: var(--gold-light); }

/* ==========  CTA BAND  ========== */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 8%;
  text-align: center;
}

.cta-band .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-band .section-text { color: rgba(255, 255, 255, 0.72); margin: 0 auto 2.5rem; }

/* ==========  PROSE  ========== */
.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.prose p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 500;
  margin: 3rem 0 1rem;
}

/* ==========  RESPONSIVE  ========== */
@media (max-width: 1024px) {
  section { padding: 5rem 6%; }
  .two-col { gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: 1fr; }
  .img-grid.featured { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .img-grid.featured img:first-child { grid-row: auto; height: 400px; }
  .zone-meta { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 5%; height: 68px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-logo { height: 40px; }

  .hero { grid-template-columns: 1fr; padding-top: 68px; }
  .hero-left { padding: 4rem 7%; min-height: 70vh; }
  .hero-right { padding: 3rem 7%; min-height: 40vh; }
  .hero-trust { gap: 1.5rem; flex-wrap: wrap; }

  section { padding: 4rem 6%; }
  .section-title { font-size: 2rem; }

  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: 1fr; }
  .img-grid img { height: 240px; }
  .zone-meta { grid-template-columns: 1fr; gap: 1rem; }

  .credential-band { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 6%; }

  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .page-header { padding: 100px 6% 60px; min-height: 50vh; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
