/* ============================================
   JAX FOR REAL - Main Stylesheet
   ============================================ */

:root {
  --navy: #071B3B;
  --gold: #B88A2D;
  --gold-hover: #9a7425;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --warm-beige: #EDE8DF;
  --dark-text: #121826;
  --muted: #667085;
  --border: #E5E7EB;
  --pale-blue: #D6E4F0;
  --shadow-sm: 0 1px 3px rgba(7, 27, 59, 0.06);
  --shadow-md: 0 4px 20px rgba(7, 27, 59, 0.08);
  --shadow-lg: 0 8px 40px rgba(7, 27, 59, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --transition: 0.25s ease;
  --header-height: 88px;
  --max-width: 1320px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--off-white {
  background: var(--off-white);
}

.section--beige {
  background: var(--warm-beige);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section--navy .section-header h2 {
  color: var(--white);
}

.section--navy .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--muted);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: #0a2550;
  border-color: #0a2550;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

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

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-height);
}

.site-header .container {
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(32px, env(safe-area-inset-right, 0px));
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
  padding: 10px 0;
}

.site-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-brand .site-logo img {
  height: 48px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark-text);
  border-radius: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 4px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a:not(.btn) {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:not(.btn).active {
  color: var(--gold);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  color: var(--white);
}

/* Sticky WhatsApp (mobile icon) */
.wa-sticky {
  display: none;
  position: fixed;
  z-index: 1001;
  width: 48px;
  height: 48px;
  padding: 0;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  top: auto;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(7, 27, 59, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.wa-sticky:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(7, 27, 59, 0.26);
  color: var(--white);
}

.wa-sticky span {
  display: none;
}

.wa-sticky svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 48px 0 32px;
  background: var(--white);
  overflow: hidden;
}

.hero__main {
  display: grid;
  grid-template-columns: 1fr 340px 280px;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero__tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.hero__tagline .text-gold {
  color: var(--gold);
}

.hero__support {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
  max-width: 360px;
  line-height: 1.6;
}

.hero__text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 340px;
  line-height: 1.65;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero__portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__portrait--illustration {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.hero__portrait--illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__portrait--real {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  background: var(--pale-blue);
}

.hero__portrait--real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.hero__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero__stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0 12px;
  border-top: 1px solid var(--border);
}

.hero__stats {
  display: contents;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}

.stat-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.stat-item__icon svg {
  width: 24px;
  height: 24px;
}

.stat-item__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.stat-item__label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}

.hero__card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark-text);
  border-bottom: 1px solid var(--border);
}

.hero__card-list li:last-child {
  border-bottom: none;
}

.hero__card-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 80px 0 60px;
  background: var(--off-white);
  text-align: center;
}

.page-hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto 20px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--with-image {
  text-align: left;
}

.page-hero--with-image .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.page-hero__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
}

.content-block--story p {
  margin-bottom: 1.25rem;
}

.content-block__closing {
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.45;
  flex-grow: 1;
}

.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card__link:hover {
  color: var(--gold-hover);
}

/* ============================================
   VIDEO CARDS
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/11;
  background: var(--navy);
  border: 1px solid var(--border);
}

.video-card__agent {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--white);
  overflow: hidden;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.video-card__agent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  transform: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.video-card:hover img {
  opacity: 0.7;
  transform: scale(1.03);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(transparent 35%, rgba(7, 27, 59, 0.75));
}

.video-card__title {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  margin-left: 3px;
}

/* ============================================
   FORMS
   ============================================ */
.forms-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.form-card__header {
  background: var(--navy);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-card__header svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-card__header h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.section--forms {
  background: var(--warm-beige);
}

.form-card__body {
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.form-card .btn {
  width: 100%;
  margin-top: 8px;
}

/* ============================================
   SPOT & WIN
   ============================================ */
.spot-win {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.spot-win__content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.spot-win__chicken {
  flex-shrink: 0;
  width: 120px;
  height: auto;
}

.spot-win h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.spot-win h3 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.spot-win p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.spot-win__polaroids {
  position: relative;
  height: 280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: end;
}

.polaroid {
  background: var(--white);
  padding: 8px 8px 28px;
  box-shadow: var(--shadow-md);
  border-radius: 2px;
  transform: rotate(var(--rot, 0deg));
}

.polaroid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.polaroid:nth-child(1) { --rot: -5deg; margin-bottom: 20px; }
.polaroid:nth-child(2) { --rot: 3deg; margin-bottom: 0; }
.polaroid:nth-child(3) { --rot: -2deg; margin-bottom: 12px; }
.polaroid:nth-child(4) { --rot: 4deg; margin-bottom: 24px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.btn--instagram {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 0.78rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  border-radius: var(--radius-pill);
}

.btn--instagram:hover {
  background: var(--white);
  color: var(--navy);
}

.icon-wa {
  width: 16px;
  height: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 59, 0.7);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

.modal__content--video {
  max-width: 900px;
  padding: 0;
  overflow: hidden;
}

.modal__content--article {
  padding: 40px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 1.25rem;
  color: var(--navy);
  transition: background var(--transition);
}

.modal__close:hover {
  background: var(--white);
}

.modal__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--navy);
}

.modal__video-wrapper iframe,
.modal__video-wrapper .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  background: var(--navy);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LISTINGS
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: var(--white);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.listing-card:hover {
  box-shadow: var(--shadow-md);
}

.listing-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.listing-card__badge--launch {
  background: var(--gold);
}

.listing-card__body {
  padding: 20px;
}

.listing-card__body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.listing-card__location {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.listing-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.listing-card__details {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.listing-card.hidden {
  display: none;
}

/* ============================================
   ARTICLES
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.article-card:hover {
  box-shadow: var(--shadow-md);
}

.article-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.article-card:hover .article-card__image img {
  transform: scale(1.03);
}

.article-card__body {
  padding: 20px;
}

.article-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.article-card__body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step-item {
  text-align: center;
  padding: 24px 16px;
}

.step-item__number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 16px;
}

.step-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-item {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.pillar-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.pillar-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Content sections */
.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.info-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

.disclaimer {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin-top: 40px;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 720px;
}

/* Contact page */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-method {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow var(--transition);
}

.contact-method:hover {
  box-shadow: var(--shadow-sm);
}

.contact-method svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin: 0 auto 12px;
}

.contact-method h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-method p,
.contact-method a {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-method a:hover {
  color: var(--gold);
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: 120px 24px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
}

.thank-you__icon svg {
  width: 40px;
  height: 40px;
}

.thank-you h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.thank-you p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 400px;
}

.thank-you__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 64px 24px;
  background: var(--navy);
  color: var(--white);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

.mt-48 {
  margin-top: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* Convert / Not Sure section */
.section--convert {
  background: var(--off-white);
  padding: 64px 0;
}

.convert-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.convert-block__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.convert-block__text p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.convert-block__text .btn {
  margin-top: 16px;
}

.convert-block__photo {
  flex-shrink: 0;
}

.convert-block__photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.testimonial-card__quote {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 16px;
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.testimonial-card__type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Ask Jax form */
.ask-jax-block {
  max-width: 560px;
  margin: 0 auto;
}

.ask-jax-block__intro {
  text-align: center;
  margin-bottom: 28px;
}

.ask-jax-block__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.ask-jax-block__intro p {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-card--compact {
  box-shadow: var(--shadow-sm);
}

.form-card--compact .form-card__body {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.video-placeholder.is-visible {
  display: flex;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

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

  .hero__card {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero__center::before {
    display: none;
  }

  .hero__portrait--illustration {
    width: 260px;
  }

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

  .convert-block {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .spot-win {
    grid-template-columns: 1fr;
  }

  .spot-win__polaroids {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

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

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

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

  .page-hero--with-image .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .site-nav,
  .header-actions .btn--navy {
    display: none;
  }

  .wa-sticky {
    display: inline-flex;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .section {
    padding: 48px 0;
  }

  .hero__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
  }

  .hero__left {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .hero__center {
    order: 2;
  }

  .hero__card {
    order: 3;
    width: 100%;
    max-width: 400px;
  }

  .hero__headline,
  .hero__tagline,
  .hero__support {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__support {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
    width: 100%;
  }

  .hero__portrait--illustration {
    width: 220px;
  }

  .hero__portrait--real {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 20px;
  }

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

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

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

  .listings-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

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

  .pillars-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__portrait {
    width: 220px;
  }

  .spot-win__polaroids {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats-bar {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    width: 100%;
    min-width: 0;
  }
}
