/* =============================================
   Gillian Ragan Real Estate — Warm & Personal Design System
   Complete rewrite 2026-04-05
   ============================================= */

/* =============================================
   Google Fonts
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* =============================================
   Design Tokens
   ============================================= */
:root {
  --bg-cream: #FAF7F2;
  --bg-warm: #F0EBE3;
  --bg-warm-dark: #E8DFD3;
  --green: #2C4A3E;
  --green-light: #3D6B5A;
  --green-dark: #1E332B;
  --copper: #C49A6C;
  --copper-light: #D4B08C;
  --copper-dark: #A67D52;
  --text: #2A2A2A;
  --text-muted: #7A7468;
  --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;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* 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: 10000;
}

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: var(--copper);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--green);
  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(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44, 74, 62, 0.3);
}

.btn-outline {
  background: transparent;
  color: rgba(250, 247, 242, 0.9);
  border: 1px solid rgba(250, 247, 242, 0.35);
}

.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; }

/* =============================================
   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(44, 74, 62, 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(--copper);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.header-fees-btn:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

.header.scrolled .header-fees-btn {
  background: var(--green);
}

.header.scrolled .header-fees-btn:hover {
  background: var(--green-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(--green);
}

.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(
    135deg,
    rgba(20, 35, 28, 0.92) 0%,
    rgba(30, 50, 40, 0.82) 50%,
    rgba(15, 15, 12, 0.90) 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: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 24px;
  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(48px, 7vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px 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: inline-block;
}

.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: 17px;
  color: rgba(250, 247, 242, 0.85);
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  margin: 0 auto 36px;
  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-text {}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 16px;
}

.about-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  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);
}

/* =============================================
   Why Choose Gillian
   ============================================= */
.why {
  background: var(--bg-warm);
  padding: var(--section-pad) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 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), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 154, 108, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 154, 108, 0.2);
}

.why-card:hover::before {
  opacity: 1;
}

.why-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   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;
  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(--green);
  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;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,154,108,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.commission .section-title {
  color: var(--white);
}

.commission .section-label {
  color: var(--copper-light);
}

.commission .section-subtitle {
  color: rgba(250, 247, 242, 0.72);
  margin: 0 auto;
}

.commission-form {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.commission-form h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--copper-light);
  margin-bottom: 20px;
  text-align: center;
}

.commission-form .form-group {
  display: flex;
  gap: 8px;
}

.commission-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  min-width: 0;
  transition: border-color 0.3s;
}

.commission-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.commission-form input:focus {
  border-color: var(--copper);
}

.commission-form .btn-copper {
  border-radius: 10px;
  padding: 14px 28px;
}

.commission-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.commission-trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.commission-trust .check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(196, 154, 108, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--copper-light);
}

.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;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.marketing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--ease);
}

.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 74, 62, 0.1);
}

.marketing-card-top {
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--copper));
}

.marketing-card-body {
  padding: 32px 24px;
}

.marketing-card .why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-cream));
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--copper);
  margin-bottom: 16px;
  border: 1px solid rgba(196, 154, 108, 0.2);
}

.marketing-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.marketing-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   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;
}

/* =============================================
   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(44, 74, 62, 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.82) 0%,
    rgba(26, 26, 24, 0.75) 100%
  );
  z-index: 0;
}

.video-section .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.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;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.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(44, 74, 62, 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(--green);
  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(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(44, 74, 62, 0.25);
}

.contact-phone:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 74, 62, 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-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(--green);
}

.contact-availability svg {
  flex-shrink: 0;
  color: var(--copper);
}

.contact-areas {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 24px;
}

/* =============================================
   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(--green);
}

.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(--green);
}

/* =============================================
   Mobile Sticky CTA
   ============================================= */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
    background: rgba(26, 26, 24, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(196, 154, 108, 0.2);
  }

  .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.25s var(--ease);
  }

  .sticky-btn-call {
    background: transparent;
    color: var(--copper-light);
    border: 1px solid rgba(196, 154, 108, 0.3);
  }

  .sticky-btn-call:hover,
  .sticky-btn-call:active {
    background: rgba(196, 154, 108, 0.1);
  }

  .sticky-btn-call svg {
    flex-shrink: 0;
  }

  .sticky-btn-fees {
    background: var(--copper);
    color: var(--white);
  }

  .sticky-btn-fees:hover,
  .sticky-btn-fees:active {
    background: var(--copper-dark);
  }

  /* Offset footer so sticky bar doesn't cover content */
  .footer {
    padding-bottom: 100px;
  }
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--green-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.55);
  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.7);
  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.55);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--copper-light);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.55);
  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.3);
}

.footer-copyright a {
  color: rgba(250, 247, 242, 0.4);
  text-decoration: none;
  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);
}

/* =============================================
   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: 480px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::before {
    display: none;
  }

  .stat-item:nth-child(3)::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;
  }
}

/* =============================================
   Responsive — Mobile (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }

  /* Header mobile */
  .header {
    padding: 0 20px;
  }

  .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: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero mobile */
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Why / Marketing — single column */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .marketing-grid {
    grid-template-columns: 1fr;
  }

  /* 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 form stack */
  .commission-form .form-group {
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: none;
    gap: 12px;
  }

  .commission-form input[type="email"] {
    border-radius: var(--radius);
    border: 1px solid rgba(250, 247, 242, 0.25);
  }

  .commission-form .btn-copper {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
  }

  /* 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;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  background: var(--green);
  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;
  }
}

/* Cursor pointer for interactive elements */
a,
.nav-list a,
.header-cta,
.back-to-top,
.footer-social a,
.contact-phone,
.contact-email-link {
  cursor: pointer;
}
