/* ══════════════════════════════════════════════════════════════
   AS PROMISED DIGITAL AGENCY — style.css
   Main Site Stylesheet — v1.0
   Palette: #0a5f52 (green) · #bd7c1e (gold) · #963750 (wine)
   ══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS — loaded in head.php ─────────────────────── */
/* Playfair Display (display/headings) + DM Sans (body) + Cormorant (accent) */

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Brand colours */
  --green:        #0a5f52;
  --green-light:  #0d7a69;
  --green-dark:   #073d35;
  --green-pale:   #e8f4f2;
  --green-glass:  rgba(10, 95, 82, 0.08);

  --gold:         #bd7c1e;
  --gold-light:   #d4921f;
  --gold-dark:    #8a5a12;
  --gold-pale:    #fdf3e3;
  --gold-glass:   rgba(189, 124, 30, 0.10);

  --wine:         #963750;
  --wine-light:   #b0455f;
  --wine-dark:    #6b2438;
  --wine-pale:    #fdf0f3;
  --wine-glass:   rgba(150, 55, 80, 0.08);

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --cream:        #f7f4ef;
  --ink:          #0d1f1c;
  --ink-soft:     #1a2e2b;
  --muted:        #6b7f7c;
  --border:       #e2e8e5;
  --border-light: #eef1ef;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-pad:  88px;
  --section-pad-sm: 52px;
  --container:    1200px;
  --container-sm: 900px;
  --gap:          24px;

  /* Shape */
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    32px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(10, 95, 82, 0.06);
  --shadow-sm:    0 2px 12px rgba(10, 95, 82, 0.08);
  --shadow-md:    0 8px 32px rgba(10, 95, 82, 0.12);
  --shadow-lg:    0 20px 60px rgba(10, 95, 82, 0.16);
  --shadow-xl:    0 40px 100px rgba(10, 95, 82, 0.20);

  /* Nav */
  --nav-h:        80px;
  --nav-h-scroll: 64px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:     0.25s;
  --duration-lg:  0.45s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

ul, ol { list-style: none; }

::selection {
  background: var(--green);
  color: var(--white);
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: var(--radius-pill);
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--sm {
  max-width: var(--container-sm);
}

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

p { line-height: 1.75; color: var(--muted); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
}

.eyebrow--green { color: var(--green); }
.eyebrow--wine  { color: var(--wine);  }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

/* Primary — green */
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(10, 95, 82, 0.30);
}

.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  box-shadow: 0 8px 32px rgba(10, 95, 82, 0.40);
  transform: translateY(-1px);
}

/* Secondary — outlined green */
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

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

/* Gold accent */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(189, 124, 30, 0.28);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(189, 124, 30, 0.40);
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Sizes */
.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* Icon button */
.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

/* ── SECTION LAYOUT ─────────────────────────────────────────── */
section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.05rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* ── DIVIDER ────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wine));
  border-radius: var(--radius-pill);
  margin: 20px auto 28px;
}

.divider--left { margin-left: 0; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--duration-lg) var(--ease);
  position: relative;
}

.card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon--gold { background: var(--gold-pale); }
.card-icon--gold svg { stroke: var(--gold); }

.card-icon--wine { background: var(--wine-pale); }
.card-icon--wine svg { stroke: var(--wine); }

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── BADGE / PILL ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-green  { background: var(--green-pale);  color: var(--green); }
.badge-gold   { background: var(--gold-pale);   color: var(--gold-dark); }
.badge-wine   { background: var(--wine-pale);   color: var(--wine); }
.badge-dark   { background: var(--green);       color: var(--white); }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: all var(--duration) var(--ease);
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 95, 82, 0.12);
}

.form-control::placeholder { color: var(--muted); opacity: 0.7; }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 95, 82, 0.92) 0%,
    rgba(13, 31, 28, 0.85) 50%,
    rgba(150, 55, 80, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero .lead {
  color: rgba(255,255,255,0.80);
  margin-bottom: 44px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Decorative elements */
.hero-deco {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(189, 124, 30, 0.15);
  z-index: 1;
}

.hero-deco::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(10, 95, 82, 0.2);
}

.hero-deco::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--ink) 100%);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,124,30,0.08) 0%, transparent 70%);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
}

.page-hero .eyebrow { color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

/* ── STATS ROW ──────────────────────────────────────────────── */
.stats-strip {
  background: var(--green);
  padding: 60px 0;
}

.stats-strip .stat-item {
  text-align: center;
}

.stats-strip .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip .stat-number span {
  color: var(--gold);
}

.stats-strip .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--duration-lg) var(--ease);
  cursor: default;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-lg) var(--ease);
}

.service-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--duration) var(--ease);
}

.service-card:hover .service-number { color: var(--gold-pale); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration) var(--ease);
}

.service-card:hover .service-link { gap: 10px; }

/* ── PROCESS / TIMELINE ─────────────────────────────────────── */
.process-steps {
  position: relative;
  counter-reset: step;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--gold), var(--wine));
  opacity: 0.2;
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 95, 82, 0.25);
  position: relative;
  z-index: 1;
}

.step-number--gold { background: var(--gold); }
.step-number--wine { background: var(--wine); }

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--green);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-pale);
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Stars */
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── PRICING CARDS ──────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: all var(--duration-lg) var(--ease);
  position: relative;
}

.pricing-card.featured {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.pricing-card:hover:not(.featured) {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: var(--radius-pill);
}

.pricing-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.65); }

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }

.pricing-features {
  margin-bottom: 36px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.pricing-card.featured .pricing-feature {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.12);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-feature svg { stroke: var(--gold); }

/* ── PORTFOLIO GRID ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}

.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 95, 82, 0.92) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--duration-lg) var(--ease);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.portfolio-overlay span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── ACCORDION / FAQ ────────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
  background: none;
  border: none;
}

.accordion-trigger:hover { color: var(--green); }

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
  color: var(--muted);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-body {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  display: none;
}

.accordion-body.open { display: block; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--ink) 60%, var(--wine-dark) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,124,30,0.07) 0%, transparent 70%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 44px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── TRUST / LOGO STRIP ─────────────────────────────────────── */
.trust-strip {
  padding: 52px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--off-white);
}

.trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0.65;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.45;
  transition: all var(--duration) var(--ease);
}

.trust-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ── ABOUT / TEAM ───────────────────────────────────────────── */
.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--green-pale);
  display: block;
}

.team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.social-link:hover {
  background: var(--green);
  color: var(--white);
}

.social-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  box-shadow: var(--shadow-md);
}

/* ── INDUSTRY / NICHE TAGS ──────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--duration) var(--ease);
}

.industry-item:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateX(4px);
}

.industry-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.industry-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ── BLOG / RESOURCES ───────────────────────────────────────── */
.article-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-lg) var(--ease);
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.article-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.article-card:hover .article-thumb img { transform: scale(1.05); }

.article-body {
  padding: 28px;
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.article-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.article-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.article-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color var(--duration) var(--ease);
}

.article-card:hover .article-title { color: var(--green); }

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-green   { color: var(--green); }
.text-gold    { color: var(--gold); }
.text-wine    { color: var(--wine); }
.text-muted   { color: var(--muted); }
.text-white   { color: var(--white); }

.bg-green     { background: var(--green); }
.bg-dark      { background: var(--ink); }
.bg-off-white { background: var(--off-white); }
.bg-cream     { background: var(--cream); }

.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 48px; }
.mb-sm  { margin-bottom: 12px; }
.mb-md  { margin-bottom: 24px; }
.mb-lg  { margin-bottom: 48px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm       { gap: 12px; }
.gap-md       { gap: 24px; }
.gap-lg       { gap: 40px; }

.hidden       { display: none; }
.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;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.anim-fade-up   { animation: fadeUp   0.6s var(--ease-out) both; }
.anim-fade-in   { animation: fadeIn   0.5s var(--ease-out) both; }
.anim-scale-in  { animation: scaleIn  0.5s var(--ease-spring) both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ── LOADING / SKELETON ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--border-light) 25%,
    var(--border) 50%,
    var(--border-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

  .container { padding: 0 24px; }

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

  .pricing-card.featured {
    transform: scale(1.02);
  }
}

/* ── MOBILE LARGE (≤ 768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-h: 68px;
  }

  .container { padding: 0 20px; }

  h1 { font-size: clamp(2rem, 7vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .process-steps::before { display: none; }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .trust-logos {
    gap: 28px;
  }

  .industry-item:hover { transform: none; }
}

/* ── MOBILE SMALL (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-pad: 52px;
  }

  .container { padding: 0 16px; }

  .btn { padding: 12px 24px; }
  .btn-lg { padding: 14px 32px; font-size: 0.95rem; }

  .card { padding: 24px; }
  .service-card { padding: 28px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .pricing-card { padding: 32px 24px; }

  .section-header { margin-bottom: 36px; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stats-strip .stat-number { font-size: 1.8rem; }

  .trust-logos img { height: 24px; }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  nav, footer, .cta-section { display: none; }
  body { font-size: 12pt; }
  a::after { content: ' (' attr(href) ')'; }
}

/* ── SUBMIT BUTTON FULL-WIDTH (forms) ──────────────────────── */
.btn-submit-full {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.92rem;
  height: 52px;          /* fixed height — prevents SVG stretching it */
  min-height: unset;
}

/* SVGs inside buttons must never stretch the button */
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero CTA buttons can have slightly larger icons */
.btn-lg svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .btn-submit-full {
    height: 48px;
    padding: 12px 20px;
    font-size: 0.88rem;
  }
  /* Prevent pill buttons from becoming giant blobs on mobile */
  .btn-lg {
    padding: 13px 28px;
    font-size: 0.92rem;
  }
}
