/*
Theme Name: Kincade KIDS
Theme URI: https://www.kidsrealty.com.au
Author: Kincade International Realty
Author URI: https://www.kincadeintrealty.com.au
Description: WordPress theme for Kincade International Direct Sales (KIDS) — Commission-free property listing service. Includes full subscription/payment integration with Square and PayPal.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: kincade-kids
Tags: real-estate, property, luxury, one-page, subscription
*/

/* ═══════════════════════════════════════════════════
   KINCADE INTERNATIONAL DIRECT SALES — KIDS
   Fonts  : Playfair Display (headings) + Poppins (body/nav)
   Palette: White base, matching kincadeintrealty.com.au
═══════════════════════════════════════════════════ */

:root {
  --white:      #ffffff;
  --off-white:  #f8f8f8;
  --light-grey: #f2f2f2;
  --dark:       #1c1c1c;
  --mid:        #555555;
  --muted:      #999999;
  --border:     #e2e2e2;
  --gold:       #9a7f4f;
  --gold-lt:    #b89a65;
  --black:      #111111;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  background: var(--white);
  color: var(--dark);
}

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

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.5); transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; gap: 2rem; align-items: center; }
.top-bar-divider { opacity: 0.2; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.nav-menu { height: 82px; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
}
.nav-logo img { height: 58px; width: auto; display: block; }
.kids-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 2px 8px;
  display: inline-block;
}

.nav-menu {
  display: flex;
  list-style: none;
  height: 82px;
  align-items: stretch;
}
.nav-menu > li { position: relative; display: flex; align-items: center; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-caret { margin-left: 3px; font-size: 7px; opacity: 0.4; }

.nav-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  z-index: 600;
  list-style: none;
  padding: 6px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.nav-menu > li:hover .nav-drop { display: block; }
.nav-drop li a {
  display: block;
  padding: 7px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s, background .2s;
}
.nav-drop li a:hover { color: var(--gold); background: var(--off-white); }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone { font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 500; color: var(--dark); letter-spacing: 0.04em; }
.btn-nav {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  transition: background .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all .3s;
}

/* ─── HERO ─── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/*
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}*/

.hero-eyebrow::before {
  
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 1.3rem;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/*
.hero-tagline::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}*/

.hero-tagline::before {
  
}

.hero-desc { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.9; max-width: 480px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-stats { display: flex; flex-direction: column; gap: 1rem; }
.h-stat {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.h-stat .hsn { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.h-stat .hsl { font-size: 8.5px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  transition: background .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white-inv {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: all .2s;
  margin-top: 2.5rem;
}
.btn-white-inv:hover { background: var(--white); color: var(--black); }
.btn-outline-dark {
  border: 1px solid var(--dark);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  transition: all .2s;
  display: inline-block;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ─── STAT STRIP ─── */
.stat-strip {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  display: flex;
}
.ss-item { flex: 1; padding: 1.6rem 2rem; text-align: center; border-right: 1px solid var(--border); }
.ss-item:last-child { border-right: none; }
.ss-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.ss-lbl { font-size: 8px; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ─── SHARED SECTION STYLES ─── */
section { padding: 5.5rem 3rem; }
.inner { max-width: 1240px; margin: 0 auto; }
.inner.narrow { max-width: 880px; }

.s-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
h2.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--black);
  margin-bottom: 1rem;
}
h2.s-title em { font-style: italic; font-weight: 400; }
.s-intro {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

/* ─── MISSION ─── */
.mission { background: var(--off-white); border-top: 3px solid var(--gold); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 600; line-height: 1.3; color: var(--black); margin-bottom: 1.4rem; }
.mission-text p { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.95; margin-bottom: 1.1rem; }
.pkg-stats { display: flex; flex-direction: column; gap: 1.2rem; }
.ps-card { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 1.5rem 1.8rem; }
.ps-card .psn { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 600; color: var(--gold); line-height: 1; }
.ps-card .psl { font-size: 8.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* ─── WHY ─── */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.why-card { background: var(--white); padding: 2.4rem 2rem; border-bottom: 2px solid transparent; transition: border-color .3s, background .3s; }
.why-card:hover { border-color: var(--gold); background: var(--off-white); }
.why-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--black); margin-bottom: 0.6rem; }
.why-card p { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.85; }

/* ─── GLOBAL ─── */
.global { background: var(--black); }
.global .s-eyebrow { color: var(--gold-lt); }
.global h2.s-title { color: var(--white); }
.global .s-intro { color: rgba(255,255,255,0.48); }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.g-card { background: var(--black); padding: 3rem 2.5rem; transition: background .3s; }
.g-card:hover { background: #141006; }
.g-flag { font-size: 2rem; margin-bottom: 1.1rem; }
.g-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; }
.g-card p { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85; }
.ptags { margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.ptag { font-size: 8px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 3px 9px; border: 1px solid rgba(154,127,79,0.4); color: var(--gold-lt); }

/* ─── PACKAGES ─── */
.packages { background: var(--light-grey); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pkg { background: var(--white); padding: 2.5rem; border: 1px solid var(--border); display: flex; flex-direction: column; position: relative; transition: box-shadow .3s, transform .3s; }
.pkg:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.pkg.feat { border-top: 3px solid var(--gold); transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.pkg-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 7px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; padding: 3px 14px; white-space: nowrap; }
.pkg-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--black); margin-bottom: 0.3rem; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.2rem; }
.pkg-price sup { font-size: 1.3rem; vertical-align: super; }
.pkg-gst { font-size: 9px; font-weight: 400; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 1.3rem; }
.pkg-desc { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 1.6rem; }
.pkg-feats { list-style: none; flex: 1; margin-bottom: 2rem; }
.pkg-feats li { padding: 0.5rem 0; border-bottom: 1px solid #f0f0f0; font-size: 12px; font-weight: 300; color: var(--mid); display: flex; align-items: flex-start; gap: 0.65rem; }
.pkg-feats li .ck { color: var(--gold); flex-shrink: 0; font-size: 10px; margin-top: 4px; }
.pkg-feats li.na { opacity: 0.35; }
.pkg-feats li.na .ck { color: var(--muted); }
.pkg-btn { display: block; text-align: center; padding: 0.82rem; font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; transition: all .25s; }
.pkg:not(.feat) .pkg-btn { border: 1px solid var(--dark); color: var(--dark); }
.pkg:not(.feat) .pkg-btn:hover { background: var(--dark); color: var(--white); }
.pkg.feat .pkg-btn { background: var(--black); color: var(--white); }
.pkg.feat .pkg-btn:hover { background: var(--gold); }

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem; position: relative; margin-top: 3.5rem; }
.steps::before { content: ''; position: absolute; top: 27px; left: 17%; right: 17%; height: 1px; background: var(--border); }
.step { text-align: center; }
.step-circle { width: 54px; height: 54px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin: 0 auto 1.5rem; background: var(--white); position: relative; z-index: 1; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--black); margin-bottom: 0.6rem; }
.step p { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.85; }

/* ─── QUOTE BAND ─── */
.quote-band { background: var(--off-white); padding: 4rem 3rem; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-band blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.5vw, 1.85rem); font-weight: 600; font-style: italic; color: var(--black); max-width: 820px; margin: 0 auto; line-height: 1.55; }
.quote-band cite { display: block; margin-top: 1.2rem; font-size: 8.5px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ─── COMPARE ─── */
.compare { background: var(--off-white); }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { padding: 1rem 1.4rem; border: 1px solid var(--border); text-align: left; font-family: 'Poppins', sans-serif; font-size: 12.5px; }
.cmp-table thead th { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; background: var(--white); color: var(--black); }
.cmp-table thead th.hl { color: var(--gold); background: #fdfaf4; }
.cmp-table td { font-weight: 300; color: var(--mid); background: var(--white); }
.cmp-table td.hl { background: #fdfaf4; color: var(--dark); font-weight: 400; }
.cmp-table strong { font-weight: 500; color: var(--dark); }

/* ─── FAQ ─── */
.faq { background: var(--white); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 0; cursor: pointer; gap: 1rem; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--black); }
.faq-ico { flex-shrink: 0; width: 22px; height: 22px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 300; color: var(--muted); transition: all .25s; }
.faq-item.open .faq-ico { background: var(--gold); border-color: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.9; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.3rem; }

/* ─── STATES ─── */
.states { background: var(--light-grey); }
.state-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.state-card { background: var(--white); padding: 1.7rem; border: 1px solid var(--border); border-top: 2px solid var(--border); transition: border-top-color .3s; }
.state-card:hover { border-top-color: var(--gold); }
.s-abbr { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.s-name { font-size: 8.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.9rem; }
.s-rule { font-size: 11.5px; font-weight: 400; color: var(--mid); margin-bottom: 0.35rem; }
.s-rule strong { font-weight: 600; color: var(--dark); }
.s-note { font-size: 10.5px; font-weight: 300; color: var(--muted); font-style: italic; margin-top: 0.7rem; }

/* ─── CONVEYANCERS ─── */
.conveyancers { background: var(--white); }
.conv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.conv-card { background: var(--off-white); padding: 2rem; border: 1px solid var(--border); }
.conv-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 0.3rem; }
.conv-tag { font-size: 8px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.conv-card p { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.85; }
.conv-tip { background: var(--off-white); border-left: 3px solid var(--gold); padding: 1.5rem 2rem; font-size: 12.5px; color: var(--mid); line-height: 1.9; }
.conv-tip h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--black); margin-bottom: 0.6rem; }
.conv-tip em { font-style: italic; color: var(--dark); }

/* ─── GUARANTEE ─── */
.guarantee { background: var(--black); text-align: center; }
.guarantee .s-eyebrow { color: var(--gold-lt); }
.guarantee h2.s-title { color: var(--white); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; text-align: left; }
.pillar { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.pillar-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.8rem; }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.pillar p { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85; }

/* ─── PRESS ─── */
.press { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 3rem; }
.press-inner { max-width: 1240px; margin: 0 auto; }
.press h3 { font-size: 8.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; align-items: center; }
.press-logo { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--border); font-style: italic; }

/* ─── CTA SECTION ─── */
.cta-section { padding: 5.5rem 3rem; background: var(--off-white); border-top: 1px solid var(--border); text-align: center; }
.cta-lead { font-size: 14px; font-weight: 300; color: var(--mid); max-width: 560px; margin: 0 auto 2rem; line-height: 1.9; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-contact { font-size: 11px; color: var(--muted); font-weight: 300; }
.cta-contact a { color: var(--gold); }

/* ─── FOOTER ─── */
footer { background: var(--black); padding: 5rem 3rem 2.5rem; }
.foot-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.foot-logo img { height: 50px; width: auto; margin-bottom: 0.8rem; }
.fkids { font-size: 8px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 1rem; }
.foot-brand p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.9; margin-bottom: 1.3rem; }
.foot-addr { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); line-height: 1.9; margin-bottom: 1.1rem; }
.foot-phone { font-size: 12px; font-weight: 400; color: var(--gold-lt); }
.foot-col h4 { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 0.55rem; }
.foot-col ul li a { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.3); transition: color .2s; }
.foot-col ul li a:hover { color: var(--gold-lt); }
.foot-bottom { max-width: 1240px; margin: 2rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 10px; color: rgba(255,255,255,0.2); font-weight: 300; }
.foot-bottom a { color: rgba(255,255,255,0.3); transition: color .2s; }
.foot-bottom a:hover { color: var(--gold-lt); }

/* ─── NEWSLETTER / SUBSCRIPTION SECTION ─── */
.newsletter-section {
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 4rem 3rem;
  text-align: center;
}
.newsletter-section .s-eyebrow { color: var(--gold-lt); margin-bottom: 0.5rem; }
.newsletter-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; color: var(--white); margin-bottom: 0.7rem; }
.newsletter-section h2 em { font-style: italic; color: var(--gold-lt); }
.newsletter-section p { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; max-width: 480px; margin: 0 auto 2rem; line-height: 1.85; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 0.85rem 1.6rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-lt); }
.newsletter-msg { margin-top: 0.8rem; font-size: 11px; }
.newsletter-msg.success { color: #6dbf7e; }
.newsletter-msg.error { color: #e07070; }
.newsletter-privacy { font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 0.7rem; }

/* ─── LEGAL NOTICE ─── */
.legal {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 1.4rem 3rem;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 100%;
}

/* ─── SKIP LINK ─── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--black); color: var(--white); padding: 0.6rem 1.2rem; font-size: 12px; font-weight: 500; z-index: 9999; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ─── ADMIN BAR OFFSET ─── */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav { padding: 0 1.8rem; }
  .hero { padding: 4rem 1.8rem; }
  section { padding: 4rem 1.8rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .h-stat { flex: 1 1 45%; }
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .g-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg.feat { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .conv-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .top-bar { padding: 0.4rem 1rem; font-size: 9px; }
  .hero { padding: 3rem 1rem; }
  section { padding: 3rem 1rem; }
  .stat-strip { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .state-grid { grid-template-columns: 1fr; }
  .press-logos { gap: 1.5rem; }
  .foot-bottom { flex-direction: column; gap: 0.4rem; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* Mobile nav open state */
nav.nav-open .nav-menu,
nav.nav-open .nav-right { display: flex; }
nav.nav-open .nav-menu {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  flex-direction: column;
  height: auto;
  align-items: stretch;
  padding: 1rem 0;
  overflow-y: auto;
  z-index: 499;
  border-top: 1px solid var(--border);
}
nav.nav-open .nav-menu > li { height: auto; }
nav.nav-open .nav-menu > li > a { height: auto; padding: 1rem 2rem; border-bottom: 1px solid var(--light-grey); font-size: 12px; }
nav.nav-open .nav-drop { display: none !important; }
nav.nav-open .nav-right { position: fixed; bottom: 0; left: 0; right: 0; padding: 1rem; background: var(--white); border-top: 1px solid var(--border); justify-content: center; z-index: 500; }
