/* ─── RESET & VARIABLES ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --smalt: #003b95;
  --smalt-dark: #003b95;
  --smalt-light: #e8eef9;
  --coral: #f08080;
  --coral-light: #fde8e8;
  --mango: #ffb749;
  --winery: #96133d;
  --mid: #45464c;
    --ink:        #000614;
  --light: #f2f2f2;
  --white: #ffffff; 
  --fly-to: translate(-40vw, -30vh) rotate(360deg) scale(1);
    --pad-x:      72px;
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Libre Franklin', sans-serif;
  background: var(--white); color: var(--ink); overflow-x: hidden;
}
a { text-decoration: none; }

/* ─── INTRO OVERLAY ──────────────────────────────────────── */
/* ======================
   Intro container
   ====================== */

/* ─── INTRO OVERLAY ──────────────────────────────────────── */
/* #intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--smalt-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease;
}

#intro.phase-done {
  opacity: 0;
}

#intro.phase-hidden {
  display: none;
}

#intro-petal {
  width: 80px;
  height: 80px;
  animation: petalSpin 1.1s linear infinite;
}

@keyframes petalSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
} */
/* Nav */

nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      display: flex;
      height: 75px;
      align-items: center;
      justify-content: space-between;
      padding: 18px var(--pad-x);
      background: rgb(255, 255, 255);
      backdrop-filter: blur(0px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    }

   

    .logo {
      font-family: 'Signika', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.4px;
      margin-top: 10px;
      position: relative;
      transition: color 0.4s;
    }

    .logo img {
      width: 200px;
      height: 100%;
      padding: 0px 20px;


    }

    .logo .plus {
      color: var(--coral);
      font-style: italic;
      font-weight: 400;
    }

    .logo-petal {
      position: absolute;
      top: -10px;
      right: -14px;
      width: 22px;
      height: 22px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--mid);
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--coral);
    }

    .nav-cta {
      background: var(--coral);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      transition: background 0.2s;
    }

    .nav-cta:hover {
      background: var(--winery);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: background 0.4s;
    }

    .nav-drawer {
      display: none;
      position: fixed;
      top: 61px;
      left: 0;
      right: 0;
      z-index: 490;
      background: var(--white);
      flex-direction: column;
      border-bottom: 1px solid rgba(0, 59, 149, 0.08);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    }

    .nav-drawer.open {
      display: flex;
    }

    .nav-drawer a {
      padding: 16px 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--mid);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: color 0.2s, background 0.2s;
    }

    .nav-drawer a:hover {
      color: var(--smalt);
      background: var(--smalt-light);
    }

    .nav-drawer .nav-cta {
      margin: 16px 24px;
      border-radius: 100px;
      text-align: center;
      border-bottom: none;
    }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--smalt-dark);
  padding-top: 61px;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 72px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s ease  forwards;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease  forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease  forwards;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: #d96060;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 128, 128, 0.4);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.btn-ghost:hover {
  color: var(--white);
}

/* ─── HERO RIGHT ─────────────────────────────────────────── */
.hero-right {
  position: relative;
  background: linear-gradient(140deg, #1a4db0 0%, var(--smalt-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-petal-bg {
  width: 72%;
  max-width: 480px;
  opacity: 0;
  position: relative;
  z-index: 2;
  animation: heroPetalIn 1s ease  forwards;
}
@keyframes heroPetalIn {
  from {
    opacity: 0;
    transform: scale(0.9) rotate(-8deg);
  }
  to {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
  }
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 128, 128, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-arch {
  position: relative;
  width: 52%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 0 0;
  z-index: 2;
  flex-shrink: 0;

  /* broad border — window frame */
  border: 10px solid rgba(255, 255, 255, 0.18);

  /* outer shadow for depth + inset shadow for window recess */
  box-shadow:
    0 0 0 3px rgba(240, 128, 128, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 4px 18px rgba(0, 0, 0, 0.35),
    inset 0 -2px 8px rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

.hero-arch-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  position: relative;
}

.arch-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

.arch-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  position: relative;
  flex-shrink: 0;
}

.arch-slide span {
  font-family: "Signika", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.stat-card.sc1 {
  bottom: 120px;
  left: -16px;
  
}
.stat-card.sc2 {
  top: 140px;
  right: 32px;
  
}
.stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  margin-bottom: 10px;
}
.stat-num {
  font-family: "Signika", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--smalt);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--mid);
  margin-top: 4px;
  line-height: 1.5;
}

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--coral);
  padding: 13px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-family: "Signika", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 18px;
}
.ticker-item::after {
  content: "✦";
  font-size: 9px;
  opacity: 0.6;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SHARED SECTION STYLES ──────────────────────────────── */
.section-tag {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--coral);
}
.section-tag.center {
  justify-content: center;
}
.section-tag.center::before {
  display: none;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--smalt);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--coral);
}
.section-title.white {
  color: var(--white);
}
.section-title.center {
  text-align: center;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 15px;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 100px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar-card {
  background: var(--smalt-light);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(0, 59, 149, 0.08);
  transition: all 0.3s;
}
.pillar-card:hover {
  background: var(--smalt);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 59, 149, 0.2);
}
.pillar-card:hover .pillar-title,
.pillar-card:hover .pillar-desc {
  color: var(--white);
}
.pillar-icon {
  width: 38px;
  height: 38px;
  background: var(--coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
}
.pillar-title {
  font-family: "Signika", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--smalt);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.pillar-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
  transition: color 0.3s;
}

.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: 22px;
  background: linear-gradient(150deg, var(--smalt) 0%, var(--smalt-dark) 100%);

  top: 34px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-main svg {
  opacity: 0.12;
}
.about-quote-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 24px;
  border-left: 4px solid var(--coral);
}
.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--smalt);
  line-height: 1.6;
}
.quote-attr {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  margin-top: 8px;
}
.about-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--mango);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(255, 183, 73, 0.45);
}
.badge-num {
  font-family: "Signika", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--smalt);
  line-height: 1;
}
.badge-text {
  font-size: 9px;
  font-weight: 600;
  color: var(--smalt);
  text-align: center;
}

/* ══════════════════════════════════════════════════
   ZONE 4 — SERVICES ACCORDION GRID
══════════════════════════════════════════════════ */
.svc-grid-section {
  padding: 80px 100px;
  position: relative;
}
 
/* Subtle smalt petal pattern */
.svc-grid-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--pattern-smalt);
  background-size: 80px 80px;
  background-repeat: repeat;
  opacity: 0.025;
  pointer-events: none;
}
 
.svc-grid-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; position: relative; z-index: 1;
}
.section-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.section-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--coral); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.6vw, 50px); font-weight: 300;
  line-height: 1.1; letter-spacing: -0.4px; color: var(--smalt);
}
.section-title em { font-style: italic; color: var(--coral); }
.svc-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300; line-height: 1;
  color: rgba(0,59,149,0.07); letter-spacing: -4px;
  user-select: none;
}
 
/* ── ACCORDION GRID ──────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
  align-items: start; /* critical — prevents equal height stretching */
}
 
/* ── BASE CARD ───────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid rgba(0,59,149,0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,59,149,0.06);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.6s ease,
    transform 0.6s ease;
  /* scroll-in start state */
  opacity: 0;
  transform: translateY(32px);
}
.svc-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.svc-card:hover {
  box-shadow: 0 12px 36px rgba(0,59,149,0.12);
  border-color: rgba(0,59,149,0.18);
}
.svc-card.is-open {
  border-color: rgba(0,59,149,0.22);
  box-shadow: 0 16px 48px rgba(0,59,149,0.14);
}
 
/* ── COLLAPSED AREA (always visible) ────────────── */
.card-collapsed {
  padding: 28px 28px 0;
}
 
.card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
}
 
.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: transform 0.3s;
}
.svc-card.is-open .svc-icon-wrap { transform: scale(1.08) rotate(-5deg); }
 
.card-badge {
  font-size: 8px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(240,128,128,0.35);
  white-space: nowrap; align-self: flex-start;
  margin-top: 4px;
}
 
.svc-name {
  font-family: 'Signika', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--smalt); line-height: 1.2;
  margin-bottom: 6px;
}
 
.svc-tagline {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}
 
.svc-overview {
  font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.8;
  /* clamp to ~3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
/* ── READ MORE BUTTON ────────────────────────────── */
.card-toggle-btn {
  display: flex; align-items: center; gap: 7px;
  margin: 16px 28px 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Signika', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--smalt); letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
}
.card-toggle-btn:hover { color: var(--coral); gap: 10px; }
 
.toggle-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--smalt-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-style: normal;
  transition: background 0.25s, transform 0.35s;
  flex-shrink: 0;
}
.svc-card.is-open .toggle-icon {
  background: var(--coral);
  transform: rotate(180deg);
}
.card-toggle-btn:hover .toggle-icon { background: var(--coral); }
 
/* ── EXPANDED AREA ───────────────────────────────── */
.card-expanded {
  /* height animation via max-height */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.svc-card.is-open .card-expanded {
  max-height: 600px; /* large enough for any content */
}
 
.card-expanded-inner {
  padding: 0 28px 28px;
  border-top: 1px solid rgba(0,59,149,0.07);
  margin-top: 0;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
}
.svc-card.is-open .card-expanded-inner {
  opacity: 1;
  transform: translateY(0);
}
 
.expanded-col-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 10px; margin-top: 16px;
}
.expanded-col-label:first-child { margin-top: 0; }
 
.expanded-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.expanded-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 12px; font-weight: 300;
  color: var(--mid); line-height: 1.65;
}
.expanded-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
}
.features-list li::before { background: var(--smalt); }
.benefits-list li::before { background: var(--coral); }
 
.expanded-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  background: var(--smalt); color: var(--white);
  padding: 10px 22px; border-radius: 100px;
  font-family: 'Signika', sans-serif;
  font-size: 12px; font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.expanded-cta:hover { background: var(--winery); transform: translateY(-2px); }
 
/* Icon bg util classes */
.bg-smalt-soft  { background: var(--smalt-light); }
.bg-coral-soft  { background: var(--coral-light); }
.bg-mango-soft  { background: #fff3d6; }
.bg-winery-soft { background: #f5e6eb; }
.bg-teal-soft   { background: #e6f4f1; }
.bg-green-soft  { background: #e6f4f0; }
 
/* Stagger delays for scroll-in */
.svc-card:nth-child(1) { transition-delay: 0s;    }
.svc-card:nth-child(2) { transition-delay: 0.08s; }
.svc-card:nth-child(3) { transition-delay: 0.16s; }
.svc-card:nth-child(4) { transition-delay: 0.08s; }
.svc-card:nth-child(5) { transition-delay: 0.16s; }
.svc-card:nth-child(6) { transition-delay: 0.24s; }
.svc-card:nth-child(7) { transition-delay: 0.16s; }
 
/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
/* ─── HOW IT WORKS ───────────────────────────────────────── */
.process {
  padding: 100px 72px;
  background: var(--coral-light);
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--coral) 20%,
    var(--coral) 80%,
    transparent
  );
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  transition: transform 0.3s;
}
.step:hover .step-num {
  transform: scale(1.08);
}
.step:nth-child(1) .step-num {
  background: var(--smalt);
  color: var(--white);
}
.step:nth-child(2) .step-num {
  background: var(--coral);
  color: var(--white);
}
.step:nth-child(3) .step-num {
  background: var(--mango);
  color: var(--smalt);
}
.step:nth-child(4) .step-num {
  background: var(--winery);
  color: var(--white);
}
.step-title {
  font-family: "Signika", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--smalt);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: 100px 72px;
}
.testimonials-header {
  margin-bottom: 48px;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.testi-card {
  background: var(--smalt-light);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid rgba(0, 59, 149, 0.07);
  transition: all 0.3s;
}
.testi-card:first-child {
  background: var(--smalt);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 59, 149, 0.11);
}
.testi-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  line-height: 0.5;
  color: var(--coral);
  margin-bottom: 22px;
  display: block;
  opacity: 0.6;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 26px;
  color: var(--smalt-dark);
}
.testi-card:first-child .testi-text {
  color: var(--white);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.testi-name {
  font-family: "Signika", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--smalt);
}
.testi-card:first-child .testi-name {
  color: var(--white);
}
.testi-role {
  font-size: 11px;
  color: var(--mid);
  margin-top: 2px;
}
.testi-card:first-child .testi-role {
  color: rgba(255, 255, 255, 0.55);
}


/* ─── MEDIA ──────────────────────────────────────────────── */
.media-section {
  padding: 100px 72px;
}
.media-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.see-all-dark {
  color: var(--mid);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.see-all-dark:hover {
  color: var(--coral);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.media-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}
.media-thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.media-card:nth-child(1) .media-thumb {
  background: var(--smalt);
}
.media-card:nth-child(2) .media-thumb {
  background: var(--coral-light);
}
.media-card:nth-child(3) .media-thumb {
  background: linear-gradient(135deg, var(--mango), var(--coral));
}
.media-body {
  padding: 24px;
}
.media-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.media-title {
  font-family: "Signika", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--smalt);
  line-height: 1.4;
  margin-bottom: 10px;
}
.media-excerpt {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 70px 0px;
  background-color: var(--coral-light);
  overflow: hidden; /* clips petals that bleed outside */
}
/* Large petal top-left — sits behind the banner */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: -100px;
  width: 370px; height: 370px;
  background-image: url("../assets/logoPng/pattern.png"); /* or pattern-smalt.svg */
  background-size: contain;
  background-repeat: no-repeat;
opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}
/* Large petal bottom-right — half behind the banner */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
   width: 370px; height: 370px;
  background-image: url("../assets/logoPng/pattern.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.cta-banner {
  background: var(--smalt);
  border-radius: 28px;
  padding: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 1;
  overflow: hidden; /* clips the internal pattern to banner bounds */
  gap: 40px;  
}

/* Internal diagonal pattern — right half only */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 55%;        /* starts from center */
  right: 0;
  bottom: 0;
  background-image: url("../assets/logoPng/pattern.png");
  background-size: 70px 60px;
  background-repeat: repeat;
transform: rotate(10deg);/* diagonal slant */
  transform-origin: center center;
  /* scale up slightly so rotated tiles cover the area after rotation */
  scale: 1.6;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* Keep banner content above the pattern */
.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-dots {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 320px;
  height: 320px;
  opacity: 0.05;
  background: radial-gradient(circle, var(--coral) 2px, transparent 2px);
  background-size: 28px 28px;
}
.cta-text {
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.cta-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.cta-headline em {
  font-style: italic;
  color: var(--coral);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
}
.btn-white {
  background: var(--white);
  color: var(--smalt);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-white:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}
.cta-contact {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.cta-contact a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
}
.cta-petal {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #000614;
  padding: 72px 72px 36px;
}
.footer-top {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand-logo {
  font-family: "Signika", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  position: relative;
}
.footer-brand-logo .plus {
  color: var(--coral);
  font-style: italic;
  font-weight: 400;
}
.footer-brand-logo svg {
  flex-shrink: 0;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.footer-col-title {
  font-family: "Signika", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-bottom {
  width: 90%;
  margin: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PETAL SVG REUSABLE ─────────────────────────────────── */
/* Defined once as inline SVG in each usage below */

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* ── TABLET 768–1023px ── */
@media (max-width: 1023px) {
 

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 96px 40px 56px;
  }
  .hero-right {
    height: auto;
    background: linear-gradient(0, --smalt-dark 0%, var(--smalt-dark) 100%);
    padding: 30px 10px;
  }
.hero-arch{
  width: 72%;

}
  .hero-petal-bg {
    width: 50%;
  }
  .stat-card.sc1 {
    bottom: 20px;
    left: 20px;
  }
  .stat-card.sc2 {
    top: 20px;
    right: 20px;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 72px 40px;
    gap: 48px;
  }
  .about-visual {
    order: -1;
  }
  .about-img-main {
    height: 360px;
  }

  .services {
    padding: 72px 40px;
  }
 
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .process {
    padding: 72px 40px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .steps::before {
    display: none;
  }

  .testimonials {
    padding: 72px 40px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }

 

  .media-section {
    padding: 72px 40px;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-section {
    padding: 0 40px 64px;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 40px;
  }
  .cta-petal {
    display: none;
  }

  footer {
    padding: 56px 40px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── MOBILE < 768px ── */
@media (max-width: 767px) {
  :root { --pad-x: 20px; }
     nav {
        padding: 16px 40px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }
  .svc-grid { grid-template-columns: repeat(2, 1fr);
  }

    .svc-grid-section {
    padding:20px 30px;
  }
  

  /* on mobile, logo-petal shifts slightly */
  #logo-petal {
    right: -12px;
    top: -9px;
    width: 18px;
    height: 18px;
  }

  .hero-left {
    padding: 88px 20px 48px;
  }

  .hero-petal-bg {
    width: 62%;
  }
  .stat-card {
    padding: 12px 16px;
  }
  .stat-num {
    font-size: 24px;
  }
  .stat-card.sc1 {
    bottom: 10px;
    left: 10px;
  }
  .stat-card.sc2 {
    top: 10px;
    right: 10px;
  }

  .about {
    padding: 56px 20px;
    gap: 36px;
  }
  .about-img-main {
    height: 260px;
  }
  .about-badge {
    width: 88px;
    height: 88px;
    top: -12px;
    right: -12px;
  }
  .badge-num {
    font-size: 20px;
  }
  .pillars {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 56px 20px;
  }
  

  .process {
    padding: 56px 20px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials {
    padding: 56px 20px;
  }



  .media-section {
    padding: 56px 20px;
  }

  .cta-section {
    padding: 0 20px 56px;
  }
  .cta-banner {
    padding: 40px 28px;
  }

  footer {
    padding: 48px 20px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


@media (max-width: 624px){
 .svc-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {

  grid-template-columns: 1fr;

}
}

/* ── LARGE DESKTOP ≥ 1440px ── */
@media (min-width: 1440px) {
 
  .hero-left {
    padding: 80px 64px 80px 96px;
  }
  .about,
  .services,
  .process,
  .testimonials,

  .media-section {
    padding-left: 96px;
    padding-right: 96px;
  }
  .cta-section {
    padding-left: 96px;
    padding-right: 96px;
  }
  footer {
    padding-left: 96px;
    padding-right: 96px;
  }
}
