/* ===================================
   CALIBRATE DIGITAL — Main Stylesheet
   =================================== */

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

/* ===================================
   CSS Custom Properties
   =================================== */
:root {
  --plum:        #1E3A8A;
  --plum-light:  #2563EB;
  --plum-dark:   #1E3A8A;
  --plum-faint:  #EFF6FF;
  --plum-subtle: #DBEAFE;

  --gold:        #C9A96E;
  --gold-light:  #E0C99A;
  --gold-dark:   #A88040;

  --cream:       #FAF8F5;
  --white:       #FFFFFF;
  --charcoal:    #0F172A;
  --charcoal-mid: #1E293B;

  --text-primary:   #0F172A;
  --text-secondary: #334155;
  --text-muted:     #64748B;

  --border:      #DBEAFE;

  --shadow-sm: 0 2px 8px rgba(30,58,138,0.08);
  --shadow:    0 4px 20px rgba(30,58,138,0.12);
  --shadow-lg: 0 12px 48px rgba(30,58,138,0.18);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:    96px;
  --container-width: 1160px;
  --ease:   cubic-bezier(0.4,0,0.2,1);
  --dur:    0.3s;
}

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

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

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

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

/* ===================================
   Typography
   =================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem,  5vw, 4rem);   font-weight: 600; }
h2 { font-size: clamp(1.9rem,  4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

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

.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.section    { padding: var(--section-pad) 0; }
.section-sm { padding: 64px 0; }

/* ===================================
   Navigation
   =================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--dur) var(--ease),
              box-shadow  var(--dur) var(--ease),
              padding     var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-mark { width: 38px; height: 38px; flex-shrink: 0; }

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.nav__logo-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}

.nav__logo-sub {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav.scrolled .nav__logo-name { color: var(--plum); }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav.scrolled .nav__link { color: var(--text-secondary); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--plum); }

/* CTA button */
.nav__cta {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 4px;
  transition: background var(--dur) var(--ease);
}

.nav__cta:hover { background: var(--gold-light); }

.nav.scrolled .nav__cta {
  background: var(--plum);
  color: var(--white);
}

.nav.scrolled .nav__cta:hover { background: var(--plum-light); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

.nav.scrolled .nav__hamburger span { background: var(--plum); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 120px 40px 48px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--dur) var(--ease);
}

.nav__mobile-link:hover { color: var(--plum); }

.nav__mobile-cta {
  margin-top: 16px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 32px;
  background: var(--plum);
  color: var(--white);
  border-radius: 4px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              color     var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform  0.15s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn--primary:hover {
  background: var(--plum-light);
  border-color: var(--plum-light);
  box-shadow: 0 4px 20px rgba(91,30,79,0.28);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}

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

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

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

/* ===================================
   Home Hero
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, #7A3068 100%);
}

.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.14);
}
.hero__ring--1 { width: 620px; height: 620px; top: -160px; right: -80px; }
.hero__ring--2 { width: 420px; height: 420px; bottom: -80px; right: 180px; border-color: rgba(255,255,255,0.05); }
.hero__ring--3 { width: 240px; height: 240px; top: 38%; right: 22%; border-color: rgba(201,169,110,0.1); }

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subline {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.55), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ===================================
   Page Hero (inner pages)
   =================================== */
.page-hero {
  padding: 164px 0 96px;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 60%, #6F2D63 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.12);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -4%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.page-hero__content { position: relative; z-index: 1; max-width: 720px; }

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
}

.page-hero h1  { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,0.68); max-width: 560px; }

/* ===================================
   Section Headers
   =================================== */
.section-header        { margin-bottom: 64px; }
.section-header--center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
}

.section-title    { margin-bottom: 20px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }

/* ===================================
   Service Cards (Home)
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--gold));
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--plum-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--plum);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.service-card__icon svg { width: 24px; height: 24px; }
.service-card:hover .service-card__icon { background: var(--plum); color: var(--white); }

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

.service-card p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 28px; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum);
  transition: gap var(--dur) var(--ease);
}
.service-card__link:hover { gap: 10px; }

.service-card__arrow { width: 16px; height: 16px; }

/* ===================================
   Value Props (Home)
   =================================== */
.value-props { background: var(--cream); }

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 52px 80px;
}

.value-prop {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-prop__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  user-select: none;
}

.value-prop__body h4 { font-size: 1.075rem; margin-bottom: 8px; }
.value-prop__body p  { font-size: 0.9375rem; line-height: 1.7; }

/* ===================================
   Differentiators Strip (Home)
   =================================== */
.differentiators {
  background: var(--charcoal);
  padding: 72px 0;
}

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

.differentiator {
  padding: 0 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.differentiator:first-child { padding-left: 0; text-align: left; }
.differentiator:last-child  { padding-right: 0; border-right: none; }

.differentiator__word {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.differentiator__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.1);
  pointer-events: none;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

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

/* ===================================
   About Page
   =================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-story__text h2 { margin-bottom: 24px; }
.about-story__text p  { margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.about-story__text p:last-child { margin-bottom: 0; }

.about-story__visual { position: relative; }

.about-vis {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-dark), var(--plum));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about-vis__svg { position: relative; z-index: 1; }

.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 24px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-accent__num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.about-accent__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
}

.approach-step__num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.approach-step h3 { font-size: 1.3rem; color: var(--plum); margin-bottom: 14px; }
.approach-step p  { font-size: 0.9375rem; line-height: 1.75; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.value-item {
  background: var(--white);
  padding: 44px 48px;
  transition: background var(--dur) var(--ease);
}
.value-item:hover { background: var(--plum-faint); }

.value-item__icon {
  width: 44px; height: 44px;
  color: var(--plum);
  margin-bottom: 20px;
}

.value-item h4 { font-size: 1.1rem; color: var(--plum); margin-bottom: 12px; }
.value-item p  { font-size: 0.9375rem; line-height: 1.7; }

/* ===================================
   Services Page
   =================================== */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child { border-bottom: none; }
.service-row--alt { direction: rtl; }
.service-row--alt > * { direction: ltr; }

.service-row__content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
}
.service-row__content > p { font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }

.service-row__list { display: flex; flex-direction: column; gap: 14px; }

.service-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.service-row__list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--plum-faint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%235B1E4F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.service-row__visual {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-dark), var(--plum) 60%, #7A3068);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-row__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.service-row__visual-icon {
  position: relative;
  z-index: 1;
  width: 88px; height: 88px;
  color: rgba(255,255,255,0.75);
}

/* ===================================
   Contact Page
   =================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card > p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 36px; }

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

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-label span { color: var(--gold-dark); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  outline: none;
  appearance: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow  var(--dur) var(--ease),
              background  var(--dur) var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(91,30,79,0.1);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); font-size: 0.9rem; }

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%235C5576' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option { color: var(--text-primary); }

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -10px;
  margin-bottom: 22px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--plum);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-submit:hover {
  background: var(--plum-light);
  box-shadow: 0 4px 20px rgba(91,30,79,0.28);
}

.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-success__icon { margin-bottom: 8px; }
.form-success h3 { font-size: 1.5rem; color: var(--text-primary); }
.form-success p  { font-size: 0.9375rem; max-width: 340px; }

/* Contact info column */
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.contact-info > p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail__icon {
  width: 44px; height: 44px;
  background: var(--plum-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--plum);
}
.contact-detail__icon svg { width: 20px; height: 20px; }

.contact-detail__body h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail__body p,
.contact-detail__body a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.contact-detail__body a:hover { color: var(--plum); }

.contact-promise {
  background: var(--plum-faint);
  border: 1px solid var(--plum-subtle);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 40px;
}
.contact-promise h4 { font-size: 1rem; color: var(--plum); margin-bottom: 10px; }
.contact-promise p  { font-size: 0.875rem; line-height: 1.7; }

/* ===================================
   Footer
   =================================== */
.footer { background: var(--charcoal); }

.footer__main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}

.footer__logo-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 3px;
  margin-bottom: 18px;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer__links { display: flex; flex-direction: column; gap: 13px; }

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--dur) var(--ease);
}
.footer__link:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--dur) var(--ease);
}
.footer__bottom-link:hover { color: rgba(255,255,255,0.55); }

/* ===================================
   Scroll Animations
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; }

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }

/* ===================================
   Utilities
   =================================== */
.text-plum  { color: var(--plum); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.bg-cream   { background: var(--cream); }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .services-grid         { grid-template-columns: repeat(2,1fr); }
  .about-story           { grid-template-columns: 1fr; gap: 56px; }
  .service-row           { grid-template-columns: 1fr; gap: 48px; }
  .service-row--alt      { direction: ltr; }
  .service-row__visual   { order: -1; }
  .contact-wrap          { grid-template-columns: 1fr; gap: 56px; }
  .footer__main          { grid-template-columns: 1fr 1fr; gap: 40px; }
  .differentiators-grid  { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .differentiator        { text-align: left; padding-left: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 32px; }
  .differentiator:last-child,
  .differentiator:nth-last-child(2) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger        { display: flex; }

  .services-grid   { grid-template-columns: 1fr; }
  .approach-grid   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .value-props-grid{ grid-template-columns: 1fr; gap: 36px; }
  .footer__main    { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom  { flex-direction: column; gap: 12px; text-align: center; }
  .form-row        { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 32px 24px; }
  .about-accent    { position: static; margin-top: 16px; display: inline-block; }

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

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

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