/* =============================================
   Gillian Ragan Real Estate — Warm & Personal Design System
   Complete rewrite 2026-04-05
   ============================================= */

/* =============================================
   Google Fonts
   ============================================= */
/* Fonts loaded via <link> in HTML — do not duplicate here */

/* =============================================
   Design Tokens
   ============================================= */
:root {
  --bg-cream: #FAF7F2;
  --bg-warm: #F0EBE3;
  --bg-warm-dark: #E8DFD3;
  --teal: #007A84;
  --teal-light: #1AB5BF;
  --teal-dark: #007A84;
  --copper: #C49A6C;
  --copper-light: #D4B08C;
  --copper-dark: #7D5A38;
  --text: #2A2A2A;
  --text-muted: #706A5E;
  --text-light: #9B9488;
  --white: #FFFFFF;
  --dark: #1A1A18;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --section-pad: 120px;
  --container: 1200px;
  --header-h: 80px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================
   Reset & Base
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  width: 100%;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 999;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =============================================
   Layout
   ============================================= */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  margin: 0 auto;
}

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

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8B6840;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 156, 168, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 247, 242, 0.95);
  border: 1px solid rgba(250, 247, 242, 0.45);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: rgba(196, 154, 108, 0.6);
  color: var(--copper-light);
  transform: translateY(-1px);
}

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

.btn-copper:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 154, 108, 0.35);
}

/* =============================================
   Scroll Reveal Animations
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(7) { transition-delay: 0.35s; }
.reveal-group .reveal:nth-child(8) { transition-delay: 0.4s; }
.reveal-group .reveal:nth-child(9) { transition-delay: 0.45s; }
.reveal-group .reveal:nth-child(10) { transition-delay: 0.5s; }

/* =============================================
   Header
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 108, 0.15);
  box-shadow: 0 2px 20px rgba(0, 156, 168, 0.06);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo .logo-light {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.4s var(--ease);
}

.header-logo .logo-dark {
  height: 40px;
  width: auto;
  display: none;
  transition: opacity 0.4s var(--ease);
}

.header.scrolled .logo-light {
  display: none;
}

.header.scrolled .logo-dark {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(250, 247, 242, 0.88);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-light);
  transition: width 0.3s var(--ease);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--copper-light);
}

.header.scrolled .nav-list a {
  color: var(--text-muted);
}

.header.scrolled .nav-list a:hover,
.header.scrolled .nav-list a.active {
  color: var(--copper-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--copper-light);
  letter-spacing: 0.3px;
  transition: color 0.3s var(--ease);
}

.header.scrolled .header-cta {
  color: var(--copper-dark);
}

.header-cta:hover {
  color: var(--copper);
}

.header-fees-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.header-fees-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.header.scrolled .header-fees-btn {
  background: var(--teal);
}

.header.scrolled .header-fees-btn:hover {
  background: var(--teal-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(250, 247, 242, 0.9);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.header.scrolled .hamburger span {
  background: var(--teal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-slideshow img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.05) 35%,
      rgba(0, 0, 0, 0.20) 100%
    ),
    linear-gradient(
      135deg,
      rgba(0, 80, 88, 0.30) 0%,
      rgba(0, 90, 98, 0.18) 50%,
      rgba(8, 10, 10, 0.38) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
  animation: heroFadeUp 1.2s var(--ease) both;
}

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

.hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(212, 176, 140, 0.35);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  animation: heroFadeUp 1.2s 0.1s var(--ease) both;
}

/* hero-label line removed for centering */

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.7),
    0 4px 40px rgba(0, 0, 0, 0.5);
  animation: heroFadeUp 1.2s 0.2s var(--ease) both;
}

.hero-rotating {
  color: var(--copper-light);
  font-style: italic;
  display: block;
  white-space: nowrap;
}

.hero-rotating.animating {
  animation: textFadeIn 0.6s var(--ease) both;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p {
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 32px rgba(0, 0, 0, 0.35);
  max-width: 520px;
  margin: 0 auto 40px;
  animation: heroFadeUp 1.2s 0.3s var(--ease) both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  min-width: 180px;
  text-align: center;
  justify-content: center;
  animation: heroFadeUp 1.2s 0.4s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  animation: heroFadeUp 1.2s 0.8s var(--ease) both;
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196, 154, 108, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* =============================================
   About
   ============================================= */
.about {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--copper);
  border-radius: 12px;
  opacity: 0.2;
  z-index: -1;
}

.about-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  padding: 8px;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 1px solid rgba(196, 154, 108, 0.25);
  pointer-events: none;
  z-index: 1;
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.6s var(--ease);
}

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

.about-photo-mobile {
  display: none;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 16px;
}

.about-text p.about-lead {
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-awards {
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.about-awards::before {
  content: 'Awards & Recognition';
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.awards-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.awards-badges img {
  height: 160px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}

.awards-badges img:hover {
  transform: scale(1.03);
}

/* =============================================
   REIWA Million Dollar Club Timeline
   ============================================= */
.reiwa-timeline {
  margin-top: 56px;
  padding: 40px 32px 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.reiwa-timeline-header {
  text-align: center;
  margin-bottom: 36px;
}

.reiwa-timeline-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-top: 8px;
}

.reiwa-timeline-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  position: relative;
  padding-top: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.reiwa-timeline-track::-webkit-scrollbar {
  display: none;
}

.reiwa-timeline-line {
  position: absolute;
  top: 56px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-light), var(--copper), var(--teal));
  z-index: 0;
}

.reiwa-badge-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  scroll-snap-align: center;
  min-width: 100px;
}

/* Override reveal for REIWA badges — scale up + fade */
.reiwa-timeline-track .reiwa-badge-item.reveal {
  transform: translateY(16px) scale(0.85);
}

.reiwa-timeline-track .reiwa-badge-item.reveal.visible {
  transform: translateY(0) scale(1);
}

.reiwa-badge-item img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: var(--white);
}

.reiwa-badge-item:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(196, 154, 108, 0.25);
}

.reiwa-year {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
}

.reiwa-tier {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.3px;
}

/* REIWA mobile animation keyframes */
@keyframes reiwaBadgeIn {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.8);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes reiwaImgGlow {
  0%   { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); }
  50%  { box-shadow: 0 0 20px 6px rgba(196, 154, 108, 0.45); }
  100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); }
}

@keyframes reiwaLineDraw {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes reiwaPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(0, 122, 132, 0.15); }
  50%      { box-shadow: 0 0 18px 4px rgba(0, 122, 132, 0.35); }
}

/* =============================================
   Why Choose Gillian
   ============================================= */
.why {
  background: var(--bg-warm);
  padding: var(--section-pad) 0;
}

/* Editorial bento grid */
.why-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2.5fr;
  grid-template-rows: 210px 210px;
  gap: 8px;
}

.why-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.15;
}

.bx-pip {
  width: 24px;
  height: 2px;
  margin-bottom: 14px;
}

/* Noise texture */
.bx-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.035;
  pointer-events: none;
}

/* Diamond pattern */
.bx-diamond::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 0l24 24-24 24L0 24z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}

/* Experienced — dark, large serif title */
.why-card--experienced {
  grid-column: 1 / 3;
  grid-row: 1;
  background: var(--dark);
  padding: 36px 40px;
}

.why-card--experienced .bx-pip { background: var(--copper); position: relative; z-index: 2; }
.why-card--experienced h3 { font-size: 2rem; font-weight: 400; color: #fff; margin-bottom: 14px; position: relative; z-index: 2; }
.why-card--experienced p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.5); line-height: 1.65; max-width: 480px; position: relative; z-index: 2; }

/* Organised — tall teal, full right column */
.why-card--organised {
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--teal);
  padding: 28px 24px;
}

.why-card--organised .bx-pip { background: rgba(255, 255, 255, 0.35); }
.why-card--organised h3 { font-size: 1.8rem; font-weight: 400; color: #fff; margin-bottom: 12px; }
.why-card--organised p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

/* Local — warm with teal accent */
.why-card--local {
  grid-column: 2;
  grid-row: 2;
  background: var(--warm);
  border: 1px solid var(--bg-warm-dark);
}

.why-card--local .bx-pip { background: var(--teal); }
.why-card--local h3 { font-size: 1.35rem; color: var(--teal); }
.why-card--local p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* Reliable — copper */
.why-card--reliable {
  grid-column: 1;
  grid-row: 2;
  background: var(--copper);
}

.why-card--reliable .bx-pip { background: rgba(255, 255, 255, 0.35); }
.why-card--reliable h3 { font-size: 1.35rem; font-weight: 600; color: #fff; }
.why-card--reliable p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); line-height: 1.55; }

/* =============================================
   Stats
   ============================================= */
.stats {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 154, 108, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196, 154, 108, 0.3), transparent);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--copper);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   Commission
   ============================================= */
.commission {
  background: var(--teal);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.commission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30 30 60 0 30z' fill='none' stroke='rgba(196,154,108,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.commission::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,154,108,0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Two-column layout */
.commission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left column — value prop */
.commission-value .section-label {
  color: var(--copper-light);
}

.commission-value .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 20px;
}

.commission-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.92);
  margin-bottom: 36px;
}

.commission-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.commission-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.commission-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 154, 108, 0.15);
  border: 1px solid rgba(196, 154, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.commission-features li:hover .commission-feature-icon {
  background: rgba(196, 154, 108, 0.25);
  transform: scale(1.05);
}

.commission-features li div strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.commission-features li div span {
  font-size: 13.5px;
  color: rgba(250, 247, 242, 0.9);
  line-height: 1.5;
}

/* Right column — form card */
.commission-form-wrap {
  display: flex;
  justify-content: center;
}

.commission-form {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 44px 36px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.commission-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.commission-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.commission-form-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196,154,108,0.2), rgba(196,154,108,0.08));
  border: 1px solid rgba(196,154,108,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  margin-bottom: 16px;
}

.commission-form h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.commission-form-header p {
  font-size: 13.5px;
  color: rgba(250, 247, 242, 0.88);
}

.commission-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commission-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.commission-input-lock {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  flex-shrink: 0;
}

.commission-form input[type="email"] {
  width: 100%;
  padding: 16px 18px 16px 44px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: none;
  min-width: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.commission-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.commission-form input[type="email"]:focus {
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.15);
}

.commission-form input[type="email"]:focus ~ .commission-input-lock,
.commission-input-wrap:focus-within .commission-input-lock {
  color: var(--copper-light);
}

.commission-form .btn-copper {
  width: 100%;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.3px;
  transition: background 0.3s var(--ease), transform 0.15s var(--ease), box-shadow 0.3s var(--ease);
}

.commission-form .btn-copper:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 154, 108, 0.3);
}

.commission-form .btn-copper:active {
  transform: translateY(0);
}


.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* =============================================
   Marketing
   ============================================= */
.marketing {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
}

/* Icon Forward bento grid */
.marketing-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
}

.mk-card {
  border-radius: 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  align-items: stretch;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.mk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.mk-vis {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.mk-txt {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mk-txt h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  line-height: 1.2;
  font-variant-numeric: lining-nums;
}

.mk-txt p {
  font-size: 0.78rem;
  line-height: 1.55;
}

/* 9 Websites — tall teal hero */
.mk-card--websites {
  grid-column: 1;
  grid-row: 1 / 3;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  background: var(--teal);
}

.mk-card--websites .mk-vis { padding: 20px; align-items: center; justify-content: center; }
.mk-card--websites .mk-txt { padding: 20px 28px 28px; }
.mk-card--websites .mk-txt h3 { font-size: 1.4rem; color: #fff; }
.mk-card--websites .mk-txt p { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

/* Browser mockup */
.mock-browsers { position: relative; width: 100%; max-width: 180px; margin: 0 auto; }
.mock-b { background: #fff; border-radius: 8px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); overflow: hidden; }
.mock-b-bar { height: 22px; background: #f0f0f0; display: flex; align-items: center; padding: 0 8px; gap: 4px; border-bottom: 1px solid #e0e0e0; }
.mock-b-dot { width: 6px; height: 6px; border-radius: 50%; }
.mock-b-dot:nth-child(1) { background: #ff6058; }
.mock-b-dot:nth-child(2) { background: #ffbd2e; }
.mock-b-dot:nth-child(3) { background: #28ca41; }
.mock-b-url { flex: 1; height: 12px; background: #e8e8e8; border-radius: 6px; margin-left: 8px; }
.mock-b-body { padding: 10px; display: flex; flex-direction: column; gap: 4px; }
.mock-b-line { height: 4px; background: #e4e4e4; border-radius: 2px; }
.mock-b-line:nth-child(1) { width: 60%; }
.mock-b-line:nth-child(2) { width: 90%; }
.mock-b-line:nth-child(3) { width: 40%; }
.mock-b-img { height: 28px; background: linear-gradient(135deg, rgba(0, 122, 132, 0.15), rgba(196, 154, 108, 0.15)); border-radius: 4px; margin-bottom: 4px; }
.mock-b-count { position: absolute; top: -10px; right: -10px; z-index: 10; width: 36px; height: 36px; border-radius: 50%; background: var(--copper); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; box-shadow: 0 3px 10px rgba(196, 154, 108, 0.4); }

/* Signage */
.mk-card--signage { grid-column: 2; grid-row: 1; background: var(--white); border: 1px solid rgba(0, 0, 0, 0.05); }
.mk-card--signage .mk-txt h3 { color: var(--text); }
.mk-card--signage .mk-txt p { color: var(--text-muted); }

.mock-sign { position: relative; display: flex; flex-direction: column; align-items: center; }
.mock-sign-board { width: 80px; background: var(--copper); border-radius: 6px; padding: 8px 6px; text-align: center; box-shadow: 0 4px 12px rgba(196, 154, 108, 0.25); position: relative; z-index: 2; }
.mock-sign-board span { display: block; font-family: var(--font-serif); font-weight: 700; color: #fff; line-height: 1.2; }
.mock-sign-board .sign-for { font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.mock-sign-board .sign-sale { font-size: 1.1rem; }
.mock-sign-board .sign-agent { font-size: 0.4rem; letter-spacing: 0.06em; opacity: 0.6; margin-top: 3px; text-transform: uppercase; }
.mock-sign-post { width: 3px; height: 32px; background: var(--copper-dark); margin: 0 auto; border-radius: 0 0 2px 2px; }
.mock-brochure { position: absolute; bottom: -8px; right: -16px; width: 48px; height: 60px; background: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.06); transform: rotate(6deg); z-index: 1; display: flex; flex-direction: column; padding: 6px; gap: 3px; }
.mock-brochure::before { content: ''; height: 14px; background: linear-gradient(135deg, rgba(196, 154, 108, 0.2), rgba(0, 122, 132, 0.15)); border-radius: 2px; }
.mock-brochure::after { content: ''; flex: 1; background: repeating-linear-gradient(to bottom, #eee 0, #eee 2px, transparent 2px, transparent 5px); border-radius: 1px; }

/* Facebook */
.mk-card--facebook { grid-column: 3; grid-row: 1; background: var(--dark); }
.mk-card--facebook .mk-txt h3 { color: #fff; }
.mk-card--facebook .mk-txt p { color: rgba(255, 255, 255, 0.5); }

.mock-phone { width: 56px; height: 96px; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 10px; position: relative; display: flex; flex-direction: column; padding: 8px 4px 6px; gap: 4px; background: rgba(255, 255, 255, 0.03); }
.mock-phone-notch { width: 16px; height: 3px; background: rgba(255, 255, 255, 0.15); border-radius: 2px; margin: 0 auto 4px; flex-shrink: 0; }
.mock-phone-post { background: rgba(255, 255, 255, 0.06); border-radius: 4px; padding: 4px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mock-phone-post .pp-img { height: 16px; background: linear-gradient(135deg, rgba(0, 122, 132, 0.3), rgba(196, 154, 108, 0.2)); border-radius: 2px; }
.mock-phone-post .pp-line { height: 2px; background: rgba(255, 255, 255, 0.08); border-radius: 1px; }
.mock-phone-post .pp-line:nth-child(2) { width: 80%; }
.mock-notif { position: absolute; border-radius: 10px; padding: 3px 7px; font-size: 0.45rem; font-weight: 700; white-space: nowrap; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
.mock-notif-1 { background: #1877f2; color: #fff; top: -6px; right: -20px; animation: notif-float 3s ease-in-out infinite; }
.mock-notif-2 { background: var(--copper); color: #fff; bottom: 14px; right: -24px; animation: notif-float 3s ease-in-out 1s infinite; }
.mock-notif-3 { background: var(--teal); color: #fff; top: 20px; left: -18px; animation: notif-float 3s ease-in-out 0.5s infinite; }
@keyframes notif-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* VR Tours */
.mk-card--vr { grid-column: 2 / 4; grid-row: 2; background: linear-gradient(135deg, var(--copper-dark), var(--dark)); }
.mk-card--vr .mk-txt h3 { color: #fff; font-size: 1.2rem; }
.mk-card--vr .mk-txt p { color: rgba(255, 255, 255, 0.5); }
.mock-house-svg { animation: house-float 4s ease-in-out infinite; }
@keyframes house-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* =============================================
   Testimonials
   ============================================= */
.testimonials {
  background: var(--bg-warm);
  padding: var(--section-pad) 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 1px solid rgba(196, 154, 108, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--copper-light);
  opacity: 0.5;
  pointer-events: none;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 40px;
  border: none;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.client-stars {
  color: var(--copper);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.client-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-name strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.client-name span {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* =============================================
   Sold Photos Marquee
   ============================================= */
.sold-marquee {
  padding: 48px 0;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}

.sold-marquee::before,
.sold-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.sold-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-warm), transparent);
}

.sold-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-warm), transparent);
}

.sold-marquee-header {
  text-align: center;
  margin-bottom: 24px;
}

.sold-marquee-track {
  width: 100%;
  overflow: hidden;
}

.sold-marquee-track + .sold-marquee-track {
  margin-top: 16px;
}

.sold-marquee-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: sold-scroll-left 50s linear infinite;
}

.sold-marquee-inner[data-direction="right"] {
  animation: sold-scroll-right 55s linear infinite;
}

.sold-marquee-inner:hover {
  animation-play-state: paused;
}

.sold-marquee-inner img {
  height: 200px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}

/* Subtle alternating tilt — pinboard feel */
.sold-marquee-inner img:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.sold-marquee-inner img:nth-child(even) {
  transform: rotate(1deg);
}

.sold-marquee-inner img:hover {
  transform: rotate(0deg) scale(1.05) translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  z-index: 2;
  position: relative;
}

@keyframes sold-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes sold-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =============================================
   Reviews / Social Proof Section
   ============================================= */
.reviews {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(196, 154, 108, 0.1);
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 156, 168, 0.1);
  border-color: var(--copper);
}

.review-card-platform {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-card-platform span {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.review-card-platform svg {
  flex-shrink: 0;
}

.review-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card-rating {
  margin-bottom: 20px;
}

.review-stars {
  color: var(--copper);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.review-score {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--text);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.review-count {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}

.review-meta {
  font-size: 13px;
  color: var(--copper-dark);
  font-weight: 500;
  margin-top: 4px;
}

.review-card-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bg-warm);
  transition: color 0.3s;
}

.review-card:hover .review-card-cta {
  color: var(--copper-dark);
}

/* =============================================
   Video Section
   ============================================= */
.video-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--dark);
  background-image: url('../images/video-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 51, 43, 0.62) 0%,
    rgba(26, 26, 24, 0.55) 100%
  );
  z-index: 0;
}

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

.video-section .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.video-section .section-label {
  color: var(--copper-light);
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.video-thumbnail:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  opacity: 0.9;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

/* =============================================
   Contact
   ============================================= */
.contact {
  background: var(--bg-warm);
  padding: var(--section-pad) 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper-light), transparent);
  opacity: 0.4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

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

.contact-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 3px solid var(--copper-light);
  box-shadow: 0 8px 32px rgba(0, 156, 168, 0.1);
}

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

.contact-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-quote-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--copper-dark);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 156, 168, 0.25);
}

.contact-phone:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 156, 168, 0.3);
}

.contact-phone svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.contact-phone strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-phone small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.contact-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.contact-whatsapp strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.contact-whatsapp small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

.contact-email-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-warm-dark);
  transition: all 0.3s var(--ease);
}

.contact-email-link:hover {
  border-color: var(--copper);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.contact-email-link svg {
  flex-shrink: 0;
  color: var(--copper);
}

.contact-email-link strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.contact-email-link small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact-availability {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
}

.contact-availability svg {
  flex-shrink: 0;
  color: var(--copper);
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
  background: var(--bg-cream);
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 154, 108, 0.15);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--copper);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--teal);
}

.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq-item a {
  color: var(--copper-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item a:hover {
  color: var(--teal);
}

/* =============================================
   Mobile Sticky CTA
   ============================================= */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(26, 26, 24, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(196, 154, 108, 0.2);
  }

  .sticky-btn {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 50px;
    padding: 12px 10px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s var(--ease);
  }

  .sticky-btn svg {
    flex-shrink: 0;
    opacity: 1;
  }

  .sticky-btn-call {
    background: transparent;
    color: var(--copper-light);
    border: 1px solid rgba(196, 154, 108, 0.32);
  }

  .sticky-btn-call:hover,
  .sticky-btn-call:active,
  .sticky-btn-call:focus-visible {
    background: rgba(196, 154, 108, 0.1);
    color: var(--white);
    border-color: rgba(212, 176, 140, 0.5);
  }

  .sticky-btn-whatsapp {
    background: rgba(37, 211, 102, 0.14);
    color: #c7f7d7;
    border: 1px solid rgba(37, 211, 102, 0.32);
    box-shadow: none;
  }

  .sticky-btn-whatsapp:hover,
  .sticky-btn-whatsapp:active,
  .sticky-btn-whatsapp:focus-visible {
    background: rgba(37, 211, 102, 0.22);
    color: #eafff0;
    border-color: rgba(37, 211, 102, 0.45);
  }

  .sticky-btn-fees {
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(196, 154, 108, 0.28);
  }

  .sticky-btn-fees:hover,
  .sticky-btn-fees:active,
  .sticky-btn-fees:focus-visible {
    background: var(--copper-dark);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(125, 90, 56, 0.3);
  }

  /* Offset footer so sticky bar doesn't cover content */
  .footer {
    padding-bottom: 88px;
  }
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--teal-dark);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 154, 108, 0.3), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(196, 154, 108, 0.2);
  color: rgba(250, 247, 242, 0.9);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

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

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.95);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--copper-light);
}

.footer-contact address { font-style: normal; }
.footer-contact p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.95);
  line-height: 1.75;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--copper-light);
  transition: color 0.25s var(--ease);
}

.footer-contact a:hover {
  color: var(--copper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.07);
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.6);
}

.footer-copyright a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: underline;
  transition: color 0.25s var(--ease);
}

.footer-copyright a:hover {
  color: var(--copper-light);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  transition: color 0.25s var(--ease);
  cursor: pointer;
}

.back-to-top:hover {
  color: var(--copper-light);
}

/* =============================================
   Desktop Scroll Slide-in CTA
   ============================================= */
.slidein-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9998;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(196, 154, 108, 0.15);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  pointer-events: none;
}

.slidein-cta.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slidein-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s var(--ease);
}

.slidein-close:hover {
  background: var(--bg-warm);
  color: var(--text);
}

.slidein-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.slidein-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.slidein-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.slidein-btn:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

/* =============================================
   Responsive — Tablet (max-width: 992px)
   ============================================= */
@media (max-width: 992px) {
  :root {
    --section-pad: 80px;
  }

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

  .about-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .why-card--experienced { grid-column: 1 / -1; }
  .why-card--organised { grid-column: 1 / -1; grid-row: auto; }

  .marketing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mk-card { grid-column: auto !important; grid-row: auto !important; }
  .mk-card--websites { grid-template-rows: auto auto; }

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

  .stat-item:nth-child(odd)::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section-title {
    font-size: 36px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .header {
    padding: 0 24px;
  }

  /* Commission → single column on tablet */
  .commission-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* =============================================
   Responsive — Mobile (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
    --header-h: 64px;
  }

  /* Header mobile */
  .header {
    padding: 0 20px;
  }

  .header .container {
    min-height: var(--header-h);
  }

  .header-logo .logo-light,
  .header-logo .logo-dark {
    height: 30px;
  }

  .header-actions {
    gap: 12px;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    border-bottom: 1px solid rgba(196, 154, 108, 0.15);
  }

  .nav-list.active {
    max-height: 400px;
  }

  .nav-list a {
    display: block;
    padding: 16px 24px;
    color: var(--text);
    border-bottom: 1px solid rgba(196, 154, 108, 0.1);
    font-size: 15px;
  }

  .nav-list a::after {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .header-fees-btn {
    display: none;
  }

  .header-cta {
    font-size: 13px;
    color: var(--copper-light);
  }

  .header.scrolled .header-cta {
    color: var(--copper-dark);
  }

  .hamburger {
    display: flex;
  }

  /* Hero mobile — rotating text must fit longest phrase (Southern River) on one line */
  .hero-content h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-rotating {
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    padding: 6px 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* About — hide framed photo, show inline circular headshot */
  .about-image-wrap {
    display: none;
  }

  .about-photo-mobile {
    display: block;
    float: left;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 4px 16px 8px 0;
    border: 3px solid var(--copper-light);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
  }

  /* Why / Marketing — single column */
  .why-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why-card--experienced,
  .why-card--organised,
  .why-card--local,
  .why-card--reliable {
    grid-column: auto;
    grid-row: auto;
  }

  .marketing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mk-card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 180px;
  }

  /* Stats — 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .stat-number {
    font-size: 40px;
  }

  /* Section title smaller */
  .section-title {
    font-size: 32px;
  }

  /* Commission two-col → single-col */
  .commission-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .commission-value .section-title {
    text-align: center;
  }

  .commission-features {
    align-items: stretch;
    max-width: 340px;
    margin: 0 auto;
  }

  .commission-features li {
    text-align: left;
  }

  .commission-form {
    max-width: 100%;
  }

  /* Contact section stack */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-photo {
    width: 120px;
    height: 120px;
  }

  .contact-quote {
    font-size: 18px;
  }

  /* FAQ mobile */
  .faq-item summary {
    font-size: 15px;
    padding: 20px 0;
  }

  /* Footer stack — extra bottom padding for sticky CTA */
  .footer {
    padding: 48px 0 100px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Video */
  .video-section {
    padding: 60px 0;
  }

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

  /* Container padding */
  .container {
    padding: 0 16px;
  }
}

/* =============================================
   Accessibility
   ============================================= */

/* Focus visible states */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  background: var(--teal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slideshow img {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =============================================
   Hero Social Proof
   ============================================= */
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  animation: heroFadeUp 1.2s 0.6s var(--ease) both;
}

.hero-proof span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.88);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-proof span + span::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(196, 154, 108, 0.4);
}

/* =============================================
   Testimonial Initial Avatars
   ============================================= */
.testimonial-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   Area Badges
   ============================================= */
.contact-areas-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px;
}

.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid rgba(196, 154, 108, 0.2);
  border-radius: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  transition: all 0.3s var(--ease);
}

.area-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

/* =============================================
   Image Break / Parallax Strip
   ============================================= */
.image-break {
  position: relative;
  height: 400px;
  background-image: url('../images/heroes/hero-harrisdale-5.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 60, 66, 0.45), rgba(0, 70, 76, 0.35));
}

.image-break-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 24px;
}

.image-break-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.image-break-attr {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--copper-light);
  letter-spacing: 1px;
}

/* =============================================
   FAQ Animation
   ============================================= */
.faq-item[open] p {
  animation: faqReveal 0.3s var(--ease);
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   Commission Form States
   ============================================= */
.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--copper-light);
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.form-error {
  font-size: 13px;
  color: #e67e7e;
  text-align: center;
  margin-top: 12px;
}

/* =============================================
   Responsive additions
   ============================================= */
@media (max-width: 768px) {
  .hero-proof {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 32px;
  }

  .hero-proof span + span::before {
    display: none;
  }

  .image-break {
    height: 300px;
    background-attachment: scroll;
  }

  .contact-areas-visual {
    justify-content: center;
    padding: 0;
  }

  /* REIWA Timeline mobile – compact vertical */
  .reiwa-timeline {
    padding: 24px 16px 20px;
    margin-top: 40px;
  }

  .reiwa-timeline-header {
    margin-bottom: 20px;
  }

  .reiwa-timeline-title {
    font-size: 22px;
  }

  .reiwa-timeline-track {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .reiwa-badge-item {
    display: grid;
    grid-template-columns: 72px 48px 72px;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    min-width: unset;
    scroll-snap-align: unset;
    padding: 6px 0;
  }

  .reiwa-badge-item img {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    justify-self: center;
  }

  .reiwa-year {
    grid-column: 1;
    grid-row: 1;
    order: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 48px;
    align-self: center;
    text-align: right;
    font-size: 14px;
    line-height: 1;
  }

  .reiwa-tier {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    align-self: center;
    text-align: left;
    font-size: 12px;
    line-height: 1;
  }

  /* Vertical timeline line – draws downward, centered */
  .reiwa-timeline-line {
    display: block;
    width: 2px;
    height: calc(100% - 16px);
    top: 8px;
    left: 50%;
    right: auto;
    margin-left: -1px;
    background: linear-gradient(180deg, var(--copper-light), var(--copper), var(--teal));
    transform-origin: top center;
    transform: scaleY(0);
  }

  .reiwa-timeline-line {
    transform: scaleY(1);
  }

  /* Mobile: keep timeline content visible instead of depending on delayed reveal state */
  .reiwa-timeline-track .reiwa-badge-item.reveal,
  .reiwa-timeline-track .reiwa-badge-item.reveal.visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }

  .reiwa-timeline-header.reveal,
  .reiwa-timeline-header.reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Golden glow pulse on badge image */
  .reiwa-timeline-track .reiwa-badge-item.reveal.visible img,
  .reiwa-timeline-track .reiwa-badge-item.reveal img {
    animation: none;
  }

  /* Persistent teal shimmer on last badge */
  .reiwa-timeline-track .reiwa-badge-item:last-child.reveal.visible img,
  .reiwa-timeline-track .reiwa-badge-item:last-child.reveal img {
    animation: none;
  }

  /* Sold marquee mobile */
  .sold-marquee {
    padding: 32px 0;
  }

  .sold-marquee-inner img {
    height: 160px;
    border-radius: 8px;
  }

  .sold-marquee::before,
  .sold-marquee::after {
    width: 40px;
  }
}

/* =============================================
   Photo Lightbox
   ============================================= */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.photo-lightbox img {
  max-width: 85vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease);
}

.photo-lightbox.active img {
  transform: scale(1);
}

/* Cursor pointer for interactive elements */
a,
.nav-list a,
.header-cta,
.back-to-top,
.footer-social a,
.contact-phone,
.contact-whatsapp,
.contact-email-link {
  cursor: pointer;
}
