/* ════════════════════════════════════════════════
   KIMI ECOS — BEAUTY BROKERAGE WEBSITE
   Premium Beauty Industry Aesthetic
   Palette: Ivory · Blush · Sage · Espresso · Gold
════════════════════════════════════════════════ */

/* ── TOKENS & RESET ─────────────────────────── */
:root {
  --ivory:      #FAFAF7;
  --ivory-deep: #F4F1EC;
  --blush:      #E8C5B8;
  --blush-deep: #D4A090;
  --blush-light:#F5E8E2;
  --sage:       #8FAF8F;
  --sage-light: #C8DCCA;
  --sage-deep:  #5E7D5E;
  --espresso:   #2C1F1A;
  --espresso-md:#4A3728;
  --espresso-lt:#7A6358;
  --gold:       #C5A87A;
  --gold-light: #E8D5B0;
  --white:      #FFFFFF;
  --text-dark:  #1E1512;
  --text-mid:   #5C4A3C;
  --text-light: #9A8276;
  --border:     rgba(44, 31, 26, 0.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-soft: 0 4px 30px rgba(44, 31, 26, 0.08);
  --shadow-md:   0 8px 40px rgba(44, 31, 26, 0.12);
  --shadow-lg:   0 20px 60px rgba(44, 31, 26, 0.16);

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITIES ─────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding: 6px 14px;
  background: var(--sage-light);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--blush-deep);
}

.section-intro {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}

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

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

.section-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.section-body strong {
  color: var(--espresso);
  font-weight: 600;
}

/* ── REVEAL ANIMATION ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

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

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--espresso-md);
  border-color: var(--espresso-md);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 31, 26, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(44, 31, 26, 0.3);
}

.btn-ghost:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}

.btn-dark:hover {
  background: transparent;
  color: var(--espresso);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn-outline-dark:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px);
}

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


/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.01em;
}

.logo-dot {
  color: var(--blush-deep);
  font-size: 18px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blush-deep);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--espresso); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  background: var(--espresso);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--espresso-md);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(44, 31, 26, 0.2);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all var(--transition);
}

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


/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-deep) 40%, var(--blush-light) 100%);
}

/* Hero photo side panel */
.hero-photo-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-photo-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 31, 26, 0.12);
  z-index: 2;
  pointer-events: none;
}

.hero-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(232, 197, 184, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(143, 175, 143, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55vw;
  height: 90vh;
  background: linear-gradient(150deg, var(--blush-light) 0%, var(--ivory-deep) 100%);
  border-radius: 50% 0 0 50%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 120px 32px 80px 64px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding: 7px 16px;
  background: rgba(143, 175, 143, 0.18);
  border: 1px solid rgba(143, 175, 143, 0.4);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(46px, 6.5vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--blush-deep);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 42px;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: max(32px, calc((100vw - 1180px) / 2 + 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: horizontal-tb;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blush-deep), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

/* Removed hero shape — replaced by photo panel */


/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--espresso);
  padding: 48px 0;
}

.stats-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 52px;
  flex: 1;
  min-width: 160px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
}


/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(140deg, var(--blush-light) 0%, var(--ivory-deep) 50%, var(--sage-light) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  transition: transform 0.6s ease;
}

.about-photo:hover {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-badge i {
  font-size: 22px;
  color: var(--blush-deep);
}

.about-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--espresso);
}

.about-badge span {
  font-size: 11px;
  color: var(--text-light);
}

.about-accent-block {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--blush-light);
  border-left: 3px solid var(--blush-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-accent-block p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--espresso-md);
  line-height: 1.5;
}

.about-pillars {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ivory-deep);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso-md);
  border: 1px solid var(--border);
}

.pillar i {
  color: var(--sage-deep);
  font-size: 13px;
}


/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services {
  background: var(--ivory);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blush-light);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon i {
  font-size: 20px;
  color: var(--blush-deep);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blush-deep);
  font-size: 12px;
}


/* ══════════════════════════════════════════════
   PARTNERS SECTION
══════════════════════════════════════════════ */
.partners {
  background: var(--ivory-deep);
}

/* Photo strip above partner panels */
.partners-photo-strip {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
}

.partners-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.8) brightness(0.9);
}

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 31, 26, 0.7) 0%, rgba(44, 31, 26, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 36px;
}

.photo-strip-overlay span {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.partners-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.partner-panel {
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand-panel {
  background: var(--espresso);
  color: var(--white);
}

.retailer-panel {
  background: var(--white);
  border: 1px solid var(--border);
}

.partner-panel-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.brand-panel .panel-icon {
  background: rgba(255, 255, 255, 0.12);
}

.brand-panel .panel-icon i {
  font-size: 22px;
  color: var(--gold-light);
}

.retailer-panel .panel-icon {
  background: var(--ivory-deep);
}

.retailer-panel .panel-icon i {
  font-size: 22px;
  color: var(--espresso);
}

.partner-panel-header h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.brand-panel .partner-panel-header h3 { color: var(--white); }
.retailer-panel .partner-panel-header h3 { color: var(--espresso); }

.partner-panel-header p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
}

.brand-panel .partner-panel-header p { color: rgba(255, 255, 255, 0.75); }
.retailer-panel .partner-panel-header p { color: var(--text-mid); opacity: 1; }

.partner-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-type {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.partner-type > i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.brand-panel .partner-type > i { color: var(--gold-light); }
.retailer-panel .partner-type > i { color: var(--sage-deep); }

.partner-type strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.brand-panel .partner-type strong { color: var(--white); }
.retailer-panel .partner-type strong { color: var(--espresso); }

.partner-type span {
  font-size: 13px;
  line-height: 1.55;
}

.brand-panel .partner-type span { color: rgba(255, 255, 255, 0.6); }
.retailer-panel .partner-type span { color: var(--text-light); }


/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why-us {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(232, 197, 184, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(143, 175, 143, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.why-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--blush-light);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--blush-light);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.testimonial-block {
  background: var(--espresso);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  text-align: center;
  position: relative;
}

.testimonial-icon {
  font-size: 36px;
  color: var(--gold-light);
  opacity: 0.4;
  margin-bottom: 24px;
}

.testimonial-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 24px;
}

.testimonial-block blockquote em {
  font-style: normal;
  color: var(--gold-light);
}

.testimonial-block cite {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}


/* ══════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════ */
.process {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 380px;
  background: url('images/partnership.jpg') center/cover no-repeat;
  opacity: 0.08;
  filter: grayscale(100%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 28px 36px 0;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  right: -4px;
  top: 60px;
  width: 28px;
  height: 28px;
  background: var(--blush-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-arrow i {
  font-size: 11px;
  color: var(--blush-deep);
}


/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact {
  background: var(--white);
}

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

.contact-info {
  padding-top: 8px;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 16px;
  color: var(--blush-deep);
}

.contact-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-size: 15px;
  color: var(--espresso);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--blush-deep); }

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 15px;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--espresso);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A8276' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 3px rgba(212, 160, 144, 0.15);
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D4726A;
  box-shadow: 0 0 0 3px rgba(212, 114, 106, 0.1);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(143, 175, 143, 0.15);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 4px;
}

.form-success i {
  font-size: 20px;
  color: var(--sage-deep);
}

.form-success p {
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-deep);
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--espresso);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

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

.footer-nav-group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-nav-group a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.65); }


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 36px 40px;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(44, 31, 26, 0.12);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 17px;
    padding: 10px 0;
    width: 100%;
    color: var(--espresso);
  }

  .nav-link.nav-cta {
    margin-top: 16px;
    display: inline-flex;
    width: auto;
  }

  /* Hero */
  .hero-content {
    padding: 110px 24px 80px;
  }

  .hero-photo-side {
    width: 100%;
    opacity: 0.18;
  }

  .hero-photo-side::before {
    background: linear-gradient(to bottom, var(--ivory) 0%, transparent 50%, var(--ivory) 100%);
  }

  .hero-headline { font-size: 44px; }

  .hero-scroll-indicator { left: 24px; }

  .partners-photo-strip {
    height: 180px;
  }

  .photo-strip-overlay span {
    font-size: 16px;
  }

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

  .about-badge {
    right: 0;
    bottom: -16px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners-split {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    padding: 36px 28px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-block {
    padding: 36px 28px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  /* Stats */
  .stats-container {
    gap: 16px;
  }

  .stat-item {
    padding: 16px 20px;
    min-width: 140px;
  }

  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .hero-content { padding: 100px 20px 70px; }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .stat-item { min-width: 100%; }
  .stats-container { flex-direction: column; }

  .about-img-placeholder { aspect-ratio: 3/2; }
}
