/* ============================================================
   VISTA PALENCIA — pages.css
   Shared styles for all inner pages (every page except index.html).
   Depends on: main.css (design tokens, resets, reveal utility)
               nav.css  (navbar, overlay)

   Contents:
   1.  Inner Page Body
   2.  Page Hero
   3.  Page Breadcrumb
   4.  Buttons (btn-primary, btn-outline, btn-explore)
   5.  CTA Strip
   6.  Full-Width Footer
   7.  WhatsApp Float Button
   8.  Inner Page Section Utilities
   9.  Responsive Breakpoints
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   1. INNER PAGE BODY
──────────────────────────────────────────────────────────── */

/* All inner pages use the charcoal body set in main.css.
   This ensures the page starts dark behind the hero. */
.inner-page {
  background: var(--charcoal);
  color: var(--cream);
}

/* Main content wrapper — pushes content below the fixed nav */
main {
  position: relative;
  z-index: 1;
}

/* Standard inner-page section padding */
.page-section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.page-section--dark {
  background: var(--charcoal);
  max-width: none;
  padding: var(--section-pad) 0;
}

.page-section--dark .page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-section--mid {
  background: var(--deep-green);
  max-width: none;
  padding: var(--section-pad) 0;
}

.page-section--mid .page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-section--light {
  background: var(--warm-white);
  color: var(--charcoal);
  max-width: none;
  padding: var(--section-pad) 0;
}

.page-section--light .page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-section--ink {
  background: #111;
  max-width: none;
  padding: var(--section-pad) 0;
}

.page-section--ink .page-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ────────────────────────────────────────────────────────────
   2. PAGE HERO
──────────────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-green);
}

/* Background image container */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg picture,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark gradient overlay — readable text over any image */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(13, 51, 37, 0.55)  0%,
      rgba(13, 51, 37, 0.35) 40%,
      rgba(0, 0, 0, 0.60)    100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.30) 0%,
      transparent 60%
    );
  z-index: 1;
}

/* Subtle noise texture on hero */
.page-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Content block — centred */
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 900px;
  width: 100%;
  /* Push content up slightly so breadcrumb sits below */
  margin-bottom: 60px;
}

/* Small label above the h1 */
.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 300;
  margin-bottom: 24px;
  display: block;
}

/* Page h1 */
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--warm-white);
  margin-bottom: 20px;
}

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

/* Short descriptor line */
.page-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Gold divider line in hero */
.page-hero-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}


/* ────────────────────────────────────────────────────────────
   3. PAGE BREADCRUMB
──────────────────────────────────────────────────────────── */

.page-breadcrumb {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
}

.page-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-breadcrumb li {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-breadcrumb li::after {
  content: '/';
  color: rgba(201, 169, 110, 0.35);
  font-size: 10px;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li a {
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.page-breadcrumb li a:hover {
  color: var(--gold);
}

.page-breadcrumb li[aria-current="page"] {
  color: rgba(201, 169, 110, 0.7);
}


/* ────────────────────────────────────────────────────────────
   4. BUTTONS
──────────────────────────────────────────────────────────── */

/* ── Primary — gold fill ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--deep-green);
  border: 1px solid var(--gold);
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--deep-green);
}

/* ── Outline / Ghost ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.45);
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.btn-outline:hover svg {
  transform: translateX(3px);
}

/* ── Explore link — lighter, text-based ── */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
  cursor: none;
}

.btn-explore:hover {
  gap: 18px;
  color: var(--gold-light);
}

.btn-explore svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.btn-explore:hover svg {
  transform: translateX(4px);
}

/* ── On light backgrounds — override colours ── */
/* WhatsApp button */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgb(37,211,102); color: #fff;
  border: none;
  padding: 18px 44px;
  font-family: var(--font-sans); font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.btn-wa:hover { background: rgb(25,180,85); transform: translateY(-2px); }
.btn-wa svg { width:16px; height:16px; flex-shrink:0; }

.btn-outline--dark {
  color: var(--deep-green);
  border-color: rgba(13, 51, 37, 0.35);
}

.btn-outline--dark:hover {
  border-color: var(--deep-green);
  background: rgba(13, 51, 37, 0.06);
  color: var(--deep-green);
}


/* ────────────────────────────────────────────────────────────
   5. CTA STRIP
   Bottom-of-page contact strip used on most inner pages.
──────────────────────────────────────────────────────────── */

#cta-strip {
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}

/* Radial glow background */
#cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(45, 122, 85, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.cta-strip-content .section-tag {
  margin-bottom: 20px;
}

.cta-strip-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-strip-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-strip-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  max-width: 480px;
}

.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────
   6. FULL-WIDTH FOOTER
   Rich multi-column footer for all inner pages (and index.html
   once the full footer HTML from Section 10 is applied).
──────────────────────────────────────────────────────────── */

footer {
  background: var(--ink-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

/* ── footer-inner 3-col grid (mirrors main.css — defensive duplicate so it survives CDN caching) ── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px, 8vh, 96px) var(--gutter) clamp(36px, 5vh, 52px);
}
.footer-logo-img { height: 64px; width: auto; display: block; margin-bottom: 22px; opacity: .9; }
.footer-col-heading {
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); opacity: .7; margin-bottom: 20px; display: block;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a {
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: .06em; color: rgba(245,240,232,.4);
  text-decoration: none; transition: color .3s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--warm-white); }
.footer-contact p { font-family: var(--font-sans); font-size: 12px; letter-spacing: .05em; color: rgba(245,240,232,.4); line-height: 1.9; }
.footer-rera { font-size: 10px; color: rgba(245,240,232,.18); line-height: 1.8; margin-top: 20px; }
.footer-social { display: flex; gap: 18px; margin-top: 20px; }
.footer-social a { color: rgba(245,240,232,.35); transition: color .3s; }
.footer-social a:hover { color: var(--gold); }
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Top: brand + link columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter) 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-vista {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.55em;
  font-weight: 300;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-palencia {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.14em;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(201, 169, 110, 0.5);
  font-weight: 300;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.25);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* Link columns wrapper */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
  display: block;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

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

/* ── Bottom: RERA disclaimer + copyright ── */
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-rera {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.18);
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
}

.footer-rera strong {
  color: rgba(201, 169, 110, 0.35);
  font-weight: 400;
}

.footer-copy {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.18);
  font-weight: 300;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────
   7. WHATSAPP FLOAT BUTTON
   Injected by main.js — styles kept here for reference.
   main.js creates: <a class="whatsapp-float" ...>
──────────────────────────────────────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* Pulse ring behind button */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { opacity: 0.6; transform: scale(1);   }
  50%       { opacity: 0;   transform: scale(1.25); }
}


/* ────────────────────────────────────────────────────────────
   8. INNER PAGE SECTION UTILITIES
──────────────────────────────────────────────────────────── */

/* Content container — max-width centred */
.content-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Two-column layout used on many inner page sections */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--wide-left  { grid-template-columns: 3fr 2fr; }
.two-col--wide-right { grid-template-columns: 2fr 3fr; }

/* Alternating image-text layouts */
.two-col--image-right .col-image { order: 2; }
.two-col--image-right .col-text  { order: 1; }

/* Full-bleed image column */
.col-image {
  position: relative;
  overflow: hidden;
}

.col-image picture,
.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.col-image:hover img {
  transform: scale(1.03);
}

/* Text column */
.col-text {
  padding: 20px 0;
}

.col-text .section-tag {
  margin-bottom: 20px;
}

.col-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 24px;
}

.col-text h2 em {
  font-style: italic;
  color: var(--gold);
}

/* On light backgrounds */
.page-section--light .col-text h2 {
  color: var(--deep-green);
}

.col-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
  margin-bottom: 20px;
}

.page-section--light .col-text p {
  color: var(--text-muted);
}

/* Feature grid — 3-column icon cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 40px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.feature-card:hover {
  background: rgba(201, 169, 110, 0.04);
  border-color: rgba(201, 169, 110, 0.2);
}

.feature-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.feature-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-card-body {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  line-height: 1.7;
}

/* Stats row — reusable on any section */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.stats-row .stat-item {
  border-right: 1px solid rgba(201, 169, 110, 0.08);
  padding: 48px 32px;
  text-align: center;
}

.stats-row .stat-item:last-child {
  border-right: none;
}

/* Number callout block */
.number-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.number-block .num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.number-block .num-suffix {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
}

.number-block .num-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 10px;
  font-family: var(--font-sans);
}

/* Distance / specification list */
.detail-list {
  display: flex;
  flex-direction: column;
}

.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row .detail-label {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
}

.detail-row .detail-value {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
}

.detail-row .detail-unit {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.1em;
  margin-left: 4px;
}

/* Info badge / RERA badge */
.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 10px 20px;
  background: rgba(201, 169, 110, 0.04);
}

.rera-badge-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.rera-badge-value {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* Tag pill — small category chips on cards */
.tag-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 5px 14px;
  font-weight: 400;
}

/* Prose body text — long-form copy blocks */
.prose {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
  max-width: 680px;
}

.prose p + p {
  margin-top: 20px;
}

.prose em {
  font-style: italic;
  color: var(--gold);
}

.prose strong {
  color: rgba(245, 240, 232, 0.8);
  font-weight: 400;
}

/* Divider line — horizontal separator */
.page-divider {
  border: none;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  margin: 0;
}

/* Contact form on inner pages (contact.html, enquire.html) */
.page-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-contact-form .form-group.full {
  grid-column: 1 / -1;
}

.page-contact-form label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
}

.page-contact-form input,
.page-contact-form select,
.page-contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.18);
  color: var(--warm-white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.page-contact-form select option {
  background: var(--deep-green);
}

.page-contact-form input:focus,
.page-contact-form select:focus,
.page-contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.04);
}

.page-contact-form input::placeholder,
.page-contact-form textarea::placeholder {
  color: rgba(245, 240, 232, 0.22);
}

.page-contact-form .form-submit {
  grid-column: 1 / -1;
  background: var(--gold);
  color: var(--deep-green);
  border: none;
  padding: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: background 0.3s;
  margin-top: 8px;
}

.page-contact-form .form-submit:hover {
  background: var(--gold-light);
}

/* Form success / brochure download state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  animation: fadeUp 0.6s ease forwards;
}

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

.form-success-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 12px;
}

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

.form-success-body {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ────────────────────────────────────────────────────────────
   9. RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────────────── */

/* ── Large tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .page-hero {
    height: 65vh;
    min-height: 480px;
  }

  .page-hero-content {
    padding: 0 32px;
  }

  .cta-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px var(--gutter);
  }

  .cta-strip-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .two-col--image-right .col-image { order: 0; }
  .two-col--image-right .col-text  { order: 0; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row .stat-item:nth-child(2) {
    border-right: none;
  }

  .page-contact-form {
    grid-template-columns: 1fr;
  }

  .page-contact-form .form-group.full {
    grid-column: 1;
  }

  .page-contact-form .form-submit {
    grid-column: 1;
  }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  .page-hero {
    height: 60vh;
    min-height: 420px;
  }

  .page-hero-content {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .page-hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .page-breadcrumb {
    bottom: 20px;
  }

  .page-breadcrumb li {
    font-size: 9px;
  }

  .btn-primary,
  .btn-outline {
    padding: 16px 28px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .cta-strip-inner {
    padding: 60px 24px;
  }

  .cta-strip-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    padding: 60px 24px 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    padding: 24px 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .two-col--wide-left,
  .two-col--wide-right {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Very small (≤ 380px) ── */
@media (max-width: 380px) {
  .page-hero-title {
    font-size: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  }
}

/* Download Brochure CTA — outline variant of btn-primary */
.btn-brochure { background: transparent; color: var(--gold); }
.btn-brochure:hover { background: var(--gold); color: var(--deep-green); }
