/* ============================================================
   RAFIKI THATCHING — GLOBAL STYLESHEET
   StratStudios Design System v1.0
   Brand: Earthy · Natural · Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Palette */
  --clr-primary:        #5C3D1E;
  --clr-primary-light:  #7A5230;
  --clr-primary-dark:   #3A2410;
  --clr-secondary:      #C9922A;
  --clr-secondary-lt:   #E0AF4F;
  --clr-accent:         #4A7C1F;
  --clr-accent-light:   #6AAD2C;

  /* Neutrals */
  --clr-cream:          #F5EDD6;
  --clr-light:          #FAF7F0;
  --clr-dark:           #1C1208;
  --clr-text:           #2C2010;
  --clr-muted:          #7B6B55;
  --clr-border:         #E0D4BC;
  --clr-white:          #FFFFFF;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', 'Segoe UI', sans-serif;

  /* Sizing */
  --header-h:           88px;
  --header-h-sm:        62px;
  --container-max:      1180px;
  --section-py:         5.5rem;

  /* Radius */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(44,32,16,.07);
  --shadow-sm:  0 2px 12px rgba(44,32,16,.10);
  --shadow-md:  0 6px 24px rgba(44,32,16,.14);
  --shadow-lg:  0 12px 48px rgba(44,32,16,.18);

  /* Transitions */
  --t-fast:   .18s ease;
  --t-base:   .30s ease;
  --t-slow:   .55s ease;
}

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

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

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  color: var(--clr-dark);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--clr-secondary);
  margin-bottom: .6rem;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
}
.section-header h2  { margin-bottom: .85rem; }
.section-header p   { color: var(--clr-muted); font-size: 1.02rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn svg, .btn i { width: 17px; height: 17px; flex-shrink: 0; display: block; }

.btn-primary {
  background: var(--clr-secondary);
  color: var(--clr-white);
  border-color: var(--clr-secondary);
}
.btn-primary:hover {
  background: var(--clr-secondary-lt);
  border-color: var(--clr-secondary-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn-outline-dark:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--clr-white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DB954;
  border-color: #1DB954;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}

.btn-call {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn-call:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1rem 2.4rem; font-size: .98rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: height var(--t-base), background var(--t-base), box-shadow var(--t-base), border-color var(--t-base), backdrop-filter var(--t-base);
}
.site-header.scrolled {
  height: var(--header-h-sm);
  background: rgba(28,18,8,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.07);
  box-shadow: var(--shadow-md);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  height: 46px;
  width: auto;
  transition: height var(--t-base);
}
.site-header.scrolled .header-logo img { height: 36px; }

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-cream);
  line-height: 1.1;
}
.logo-tagline {
  font-size: .65rem;
  color: var(--clr-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(245,237,214,.78);
  position: relative;
  transition: color var(--t-fast);
  letter-spacing: .2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-secondary);
  transition: width var(--t-base);
}
.nav-links a:hover,
.nav-links a.active { color: var(--clr-cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: .56rem 1.35rem; font-size: .84rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .45rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 23px; height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0;
  width: 100%;
  background: rgba(28,18,8,.98);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all var(--t-base);
  border-bottom: 1px solid rgba(255,255,255,.07);
  visibility: hidden;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}
.mobile-nav a {
  padding: .8rem 1rem;
  font-size: .98rem;
  font-weight: 500;
  color: rgba(245,237,214,.8);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.mobile-nav a:hover { background: rgba(201,146,42,.12); color: var(--clr-secondary-lt); }
.mobile-nav .btn { margin-top: .5rem; justify-content: center; width: 100%; }

/* ============================================================
   HERO — FULL PAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(155deg, var(--clr-primary-dark) 0%, var(--clr-primary) 55%, #4A3520 100%);
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(28,18,8,.78), rgba(92,61,30,.52), rgba(74,124,31,.2));
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9922A' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  background: rgba(201,146,42,.18);
  border: 1px solid rgba(201,146,42,.38);
  border-radius: var(--radius-pill);
  color: var(--clr-secondary-lt);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-badge i, .hero-badge svg { width: 14px; height: 14px; display: block; }

.hero h1 {
  color: var(--clr-cream);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero h1 em {
  color: var(--clr-secondary-lt);
  font-style: normal;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(245,237,214,.82);
  margin-bottom: 2.2rem;
  max-width: 550px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-number {
  font-family: var(--ff-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--clr-secondary-lt);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  color: rgba(245,237,214,.62);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-img {
  background-image: url('images/about-bg.jpg');
  opacity: .15;
}
.page-hero .hero-pattern { opacity: .5; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1  { color: var(--clr-cream); margin-bottom: .9rem; }
.page-hero-content p   { color: rgba(245,237,214,.75); font-size: 1.03rem; max-width: 540px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(245,237,214,.5);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--clr-secondary); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--clr-secondary-lt); }
.breadcrumb i, .breadcrumb svg { width: 13px; height: 13px; display: block; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--clr-primary);
  padding: 1.3rem 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--clr-cream);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item i, .trust-item svg { width: 18px; height: 18px; color: var(--clr-secondary); flex-shrink: 0; display: block; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,146,42,.28);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(201,146,42,.14), rgba(201,146,42,.04));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--clr-secondary);
  transition: all var(--t-base);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-lt));
  color: var(--clr-white);
  transform: scale(1.06) rotate(-2deg);
}
.service-icon i, .service-icon svg { width: 25px; height: 25px; display: block; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p  { font-size: .88rem; color: var(--clr-muted); line-height: 1.75; margin: 0; }

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features-section { background: var(--clr-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.25rem;
}
.feature-item { display: flex; flex-direction: column; gap: .9rem; }
.feature-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-cream);
  flex-shrink: 0;
}
.feature-icon-wrap i, .feature-icon-wrap svg { width: 26px; height: 26px; display: block; }
.feature-item h3  { font-size: 1.08rem; margin: 0; }
.feature-item p   { font-size: .88rem; color: var(--clr-muted); margin: 0; }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.split-img-wrap:hover img { transform: scale(1.05); }
.split-img-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--clr-secondary);
  color: var(--clr-white);
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.split-img-badge i, .split-img-badge svg { width: 15px; height: 15px; display: block; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .93rem;
  font-weight: 500;
}
.checklist-item i, .checklist-item svg { width: 19px; height: 19px; color: var(--clr-accent); flex-shrink: 0; display: block; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--clr-cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  position: relative;
  transition: all var(--t-base);
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-lt));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
}
.process-step h3 { font-size: 1rem; margin-bottom: .5rem; }
.process-step p  { font-size: .86rem; color: var(--clr-muted); margin: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  position: relative;
  overflow: hidden;
}
.cta-section .hero-pattern { opacity: .4; }
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-inner h2  { color: var(--clr-cream); margin-bottom: .9rem; }
.cta-inner p   { color: rgba(245,237,214,.78); font-size: 1.02rem; margin-bottom: 2rem; }
.cta-buttons   { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--clr-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--clr-border);
  transition: all var(--t-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { display: flex; gap: .2rem; margin-bottom: .9rem; color: var(--clr-secondary); }
.t-stars i, .t-stars svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.t-text { font-size: .9rem; color: var(--clr-muted); font-style: italic; margin-bottom: 1.4rem; line-height: 1.85; }
.t-author  { display: flex; align-items: center; gap: .7rem; }
.t-avatar  {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--ff-heading);
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .88rem; }
.t-loc  { font-size: .78rem; color: var(--clr-muted); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: all var(--t-fast);
}
.area-tag i, .area-tag svg { width: 14px; height: 14px; color: var(--clr-secondary); display: block; }
.area-tag:hover { border-color: var(--clr-secondary); color: var(--clr-secondary); background: rgba(201,146,42,.06); }
a.area-tag { text-decoration: none; cursor: pointer; }

/* ============================================================
   GOOGLE REVIEW CTA
   ============================================================ */
.review-cta-section { background: var(--clr-cream); text-align: center; }
.review-cta { max-width: 640px; margin: 0 auto; }
.review-cta .review-stars {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.review-cta .review-stars i {
  width: 30px; height: 30px;
  color: #f8b500;
  fill: #f8b500;
  stroke: #f8b500;
}
.review-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .75rem; }
.review-cta p { color: var(--clr-muted); margin-bottom: 1.8rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: .9rem; }
.contact-info > p { color: var(--clr-muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: .9rem; }
.c-icon {
  width: 42px; height: 42px;
  background: rgba(201,146,42,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-secondary);
  flex-shrink: 0;
}
.c-icon i, .c-icon svg { width: 19px; height: 19px; display: block; }
.c-text strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; color: var(--clr-muted); margin-bottom: .2rem; }
.c-text a, .c-text span { font-size: .93rem; font-weight: 600; color: var(--clr-dark); text-decoration: none; }
.c-text a:hover { color: var(--clr-secondary); }

.contact-action-btns { display: flex; flex-direction: column; gap: .7rem; }
.contact-action-btns .btn { justify-content: center; }

.contact-form-wrap {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title { font-family: var(--ff-heading); font-size: 1.4rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--clr-text);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .93rem;
  color: var(--clr-text);
  background: var(--clr-light);
  transition: all var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-secondary);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(201,146,42,.12);
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-submit-wrap { margin-top: 1.5rem; }
.form-submit-wrap .btn { width: 100%; justify-content: center; }
.form-note { font-size: .78rem; color: var(--clr-muted); margin-top: .75rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-dark);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.footer-brand-logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1) opacity(.8);
}
.footer-brand p {
  font-size: .86rem;
  color: rgba(245,237,214,.48);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.footer-socials { display: flex; gap: .65rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,214,.5);
  transition: all var(--t-fast);
}
.footer-socials a:hover { border-color: var(--clr-secondary); color: var(--clr-secondary); background: rgba(201,146,42,.1); }
.footer-socials i,
.footer-socials svg { width: 15px; height: 15px; display: block; }

.footer-col h4 {
  color: var(--clr-cream);
  font-size: .82rem;
  font-family: var(--ff-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .86rem;
  color: rgba(245,237,214,.48);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--clr-secondary); }

.footer-contact-list { display: flex; flex-direction: column; gap: .8rem; }
.fci {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .84rem;
  color: rgba(245,237,214,.48);
}
.fci i, .fci svg { width: 15px; height: 15px; color: var(--clr-secondary); flex-shrink: 0; margin-top: 2px; display: block; }
.fci a { color: inherit; transition: color var(--t-fast); }
.fci a:hover { color: var(--clr-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: rgba(245,237,214,.3); }
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a { font-size: .78rem; color: rgba(245,237,214,.4); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--clr-secondary); }

/* ============================================================
   STRATSTUDIOS FOOTER CREDIT — MANDATORY · NON-NEGOTIABLE
   ============================================================ */
.stratstudios-credit { display: grid; place-items: center; }

.stratstudios-credit-btn {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .45rem;
  padding: .42rem .88rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  color: rgba(245,237,214,.38);
  font-size: .73rem;
  font-family: var(--ff-body);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t-base);
  white-space: nowrap;
  letter-spacing: .3px;
}
.stratstudios-credit-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,146,42,.28);
  color: rgba(245,237,214,.65);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}
.stratstudios-credit-btn:focus-visible {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 3px;
}
.credit-dot {
  width: 5px; height: 5px;
  background: var(--clr-secondary);
  border-radius: 50%;
  opacity: .65;
  flex-shrink: 0;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-light), var(--clr-cream));
  padding: 2rem 1.5rem;
}
.thankyou-card {
  background: var(--clr-white);
  border-radius: 22px;
  padding: 3.5rem;
  max-width: 510px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
.ty-icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, rgba(74,124,31,.12), rgba(74,124,31,.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
  color: var(--clr-accent);
}
.ty-icon i, .ty-icon svg { width: 38px; height: 38px; display: block; }
.thankyou-card h1 { font-size: 1.75rem; margin-bottom: .7rem; }
.thankyou-card p  { color: var(--clr-muted); margin-bottom: 2rem; line-height: 1.85; }
.ty-actions { display: flex; flex-direction: column; gap: .7rem; }
.ty-actions .btn { justify-content: center; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding-top: var(--header-h); }
.legal-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.legal-content-wrap h1 { font-size: clamp(1.75rem, 3vw, 2.3rem); margin-bottom: .4rem; }
.legal-date {
  font-size: .84rem;
  color: var(--clr-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}
.legal-content-wrap h2 { font-size: 1.25rem; margin: 2.5rem 0 .65rem; color: var(--clr-primary); }
.legal-content-wrap h3 { font-size: 1.02rem; margin: 1.5rem 0 .45rem; }
.legal-content-wrap p,
.legal-content-wrap li { font-size: .93rem; color: var(--clr-muted); line-height: 1.95; }
.legal-content-wrap ul,
.legal-content-wrap ol { margin: .65rem 0 1rem 1.4rem; }
.legal-content-wrap ul { list-style: disc; }
.legal-content-wrap ol { list-style: decimal; }
.legal-content-wrap li { margin-bottom: .35rem; }
.legal-content-wrap a { color: var(--clr-secondary); text-decoration: underline; }
.legal-highlight {
  background: var(--clr-light);
  border-left: 3px solid var(--clr-secondary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft  { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(28px);  } to { opacity: 1; transform: none; } }

.hero-content > * {
  animation: fadeInUp .85s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .22s; }
.hero-content > *:nth-child(3) { animation-delay: .38s; }
.hero-content > *:nth-child(4) { animation-delay: .52s; }
.hero-content > *:nth-child(5) { animation-delay: .66s; }

.reveal       { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left  { opacity: 0; transform: translateX(-26px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(26px);  transition: opacity .7s ease, transform .7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

.d-1 { transition-delay: .08s; }
.d-2 { transition-delay: .16s; }
.d-3 { transition-delay: .24s; }
.d-4 { transition-delay: .32s; }
.d-5 { transition-delay: .40s; }
.d-6 { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

/* ≤ 480px */
@media (max-width: 480px) {
  :root { --section-py: 3.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.4rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .thankyou-card { padding: 2rem 1.5rem; }
  .trust-strip-inner { gap: 1.2rem; }
  .trust-divider { display: none; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .split-section { grid-template-columns: 1fr; gap: 2.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-left { flex-direction: column; gap: .5rem; }
  .stratstudios-credit-btn { width: 100%; justify-content: center; border-radius: var(--radius); }
  .form-row { grid-template-columns: 1fr; }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.bg-light  { background: var(--clr-light); }
.bg-cream  { background: var(--clr-cream); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
