/* Growfluence — Main Stylesheet */
  :root {
    --cream: #faf8f2;
    --cream-mid: #f0ebe0;
    --cream-dark: #e8e0d0;
    --terra: #b05a2a;
    --terra-dark: #8c4420;
    --terra-light: #d4845a;
    --terra-pale: #f7ede4;
    --bark: #3a2a1a;
    --bark-mid: #5c4030;
    --bark-light: #8a7060;
    --sage: #6b7c5c;
    --sage-light: #e8eddf;
    --sand: #c8b89a;
    --gold: #c49a40;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--bark);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250, 248, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(176, 90, 42, 0.1);
    transition: all 0.3s;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bark);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .nav-logo span {
    color: var(--terra);
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bark-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--terra); }

  .nav-cta {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--terra);
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--terra);
    border-radius: 2px;
    letter-spacing: 0.04em;
    transition: all 0.25s;
  }

  .nav-cta:hover {
    background: var(--terra);
    color: #fff;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-texture {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(176,90,42,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(200,184,154,0.15) 0%, transparent 60%);
  }

  .hero-left {
    padding: 6rem 3rem 4rem 3rem;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--terra);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block; width: 2rem; height: 1px;
    background: var(--terra);
  }

  .hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--bark);
    margin-bottom: 1.5rem;
  }

  .hero-heading em {
    font-style: italic;
    color: var(--terra);
  }

  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--bark-light);
    max-width: 400px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex; gap: 1rem; align-items: center;
  }

  .btn-primary {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background: var(--terra);
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); }

  .btn-ghost {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bark-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--terra); }
  .btn-ghost::after { content: '↓'; }

  .hero-right {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 2rem;
  }

  .hero-card-stack {
    position: relative; width: 340px; height: 440px;
  }

  .hcard {
    position: absolute;
    background: var(--cream-mid);
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    padding: 2rem;
  }

  .hcard-back {
    width: 300px; height: 380px;
    top: 30px; left: 30px;
    background: var(--sand);
    opacity: 0.35;
    transform: rotate(4deg);
  }

  .hcard-mid {
    width: 310px; height: 390px;
    top: 15px; left: 15px;
    background: var(--terra-pale);
    transform: rotate(-2deg);
  }

  .hcard-front {
    width: 320px; height: 400px;
    top: 0; left: 0;
    background: #fff;
    box-shadow: 0 20px 60px rgba(58,42,26,0.1);
  }

  .hcard-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1.5rem;
  }

  .hcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bark);
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }

  .hcard-divider {
    width: 2rem; height: 2px;
    background: var(--terra);
    margin-bottom: 1.2rem;
  }

  .hcard-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.7rem;
  }

  .hcard-list li {
    font-size: 0.83rem;
    color: var(--bark-light);
    display: flex; align-items: center; gap: 0.6rem;
  }

  .hcard-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--terra-light);
    flex-shrink: 0;
  }

  .hcard-footer {
    position: absolute; bottom: 1.5rem; left: 2rem; right: 2rem;
    display: flex; justify-content: space-between; align-items: center;
  }

  .hcard-location {
    font-size: 0.75rem; color: var(--bark-light);
  }

  .hcard-badge {
    font-size: 0.7rem; font-weight: 500;
    background: var(--terra-pale);
    color: var(--terra-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
  }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    background: var(--bark);
    padding: 1rem 0;
    overflow: hidden;
  }

  .marquee-track {
    display: flex; gap: 3rem;
    animation: marquee 20s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
    white-space: nowrap;
    display: flex; align-items: center; gap: 3rem;
  }

  .marquee-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--terra-light);
    display: inline-block;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── ABOUT ─── */
  .about {
    padding: 7rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }

  .section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
  }

  .section-label::before {
    content: '';
    display: block; width: 2rem; height: 1px;
    background: var(--terra);
  }

  .about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--bark);
    margin-bottom: 1.5rem;
  }

  .about-heading em { font-style: italic; color: var(--terra); }

  .about-body {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--bark-light);
    margin-bottom: 1.5rem;
  }

  .about-values {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 2rem;
  }

  .about-value {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--terra-pale);
    border-left: 3px solid var(--terra-light);
    border-radius: 0 2px 2px 0;
  }

  .about-value-icon {
    font-size: 1.1rem;
    margin-top: 0.1rem;
  }

  .about-value-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 0.2rem;
  }

  .about-value-text {
    font-size: 0.82rem;
    color: var(--bark-light);
    line-height: 1.6;
  }

  .about-visual {
    position: relative;
  }

  .about-img-frame {
    width: 100%; aspect-ratio: 4/5;
    background: var(--cream-mid);
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    position: relative;
  }

  .about-img-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 30%, rgba(176,90,42,0.15), transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(107,124,92,0.12), transparent 50%),
      var(--cream-mid);
  }

  .about-img-text {
    position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
    background: rgba(250,248,242,0.95);
    border-radius: 4px;
    padding: 1.25rem;
    border: 1px solid var(--cream-dark);
  }

  .about-img-stat {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--terra);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .about-img-stat-label {
    font-size: 0.78rem;
    color: var(--bark-light);
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  .about-corner-tag {
    position: absolute;
    top: -1rem; right: -1rem;
    background: var(--terra);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2px;
  }

  /* ─── SERVICES ─── */
  .services {
    background: var(--bark);
    padding: 7rem 3rem;
  }

  .services-inner {
    max-width: 1200px; margin: 0 auto;
  }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem;
  }

  .services-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.2;
  }

  .services-heading em { font-style: italic; color: var(--terra-light); }

  .services-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra-light);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
  }

  .services-label::before {
    content: '';
    display: block; width: 2rem; height: 1px;
    background: var(--terra-light);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
  }

  .service-card {
    background: rgba(58,42,26,0.6);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    position: relative;
  }

  .service-card:hover { background: rgba(176,90,42,0.12); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(200,184,154,0.2);
    line-height: 1;
    margin-bottom: 1.25rem;
  }

  .service-icon {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .service-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }

  .service-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.8;
    color: rgba(200,184,154,0.7);
  }

  .service-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra-light);
    border-bottom: 1px solid var(--terra-light);
    padding-bottom: 1px;
  }

  /* ─── HOW WE WORK ─── */
  .process {
    padding: 7rem 3rem;
    max-width: 1200px; margin: 0 auto;
  }

  .process-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 4rem;
    line-height: 1.2;
  }

  .process-heading em { font-style: italic; color: var(--terra); }

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

  .process-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem; left: 1.5rem; right: 1.5rem;
    height: 1px;
    background: var(--cream-dark);
    z-index: 0;
  }

  .process-step {
    padding: 0 1.5rem 2rem;
    position: relative;
  }

  .step-dot {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background: var(--cream);
    border: 1.5px solid var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
    font-size: 0.9rem;
    transition: all 0.3s;
  }

  .process-step:hover .step-dot {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
  }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bark-light);
  }

  .step-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.8;
  }

  /* ─── CTA STRIP ─── */
  .cta-strip {
    background: var(--terra);
    padding: 5rem 3rem;
    text-align: center;
  }

  .cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .cta-heading em { font-style: italic; opacity: 0.8; }

  .cta-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .btn-white {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--terra);
    background: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

  /* ─── ENQUIRY / CONTACT ─── */
  .contact {
    padding: 7rem 3rem;
    background: var(--cream-mid);
  }

  .contact-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; align-items: start;
  }

  .contact-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .contact-heading em { font-style: italic; color: var(--terra); }

  .contact-body {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .contact-detail {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--bark-light);
  }

  .contact-detail-icon {
    font-size: 1rem;
    color: var(--terra);
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  .contact-form {
    background: #fff;
    border-radius: 4px;
    padding: 2.5rem;
    border: 1px solid var(--cream-dark);
  }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group {
    display: flex; flex-direction: column; gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bark-light);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--bark);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--terra-light);
    background: #fff;
  }

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

  .form-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--terra);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s;
  }

  .form-submit:hover { background: var(--terra-dark); }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem;
  }

  .form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }

  .form-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.5rem;
  }

  .form-success-text {
    font-size: 0.88rem;
    color: var(--bark-light);
    line-height: 1.7;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bark);
    padding: 3rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.5rem;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
  }

  .footer-logo span { color: var(--terra-light); }

  .footer-links {
    display: flex; gap: 2rem; list-style: none;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: var(--bark-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--sand); }

  .footer-copy {
    font-size: 0.78rem;
    color: var(--bark-light);
  }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 5rem 1.5rem 3rem; }
    .about { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .about-visual { display: none; }
    .services { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .process { padding: 4rem 1.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0; }
    .contact { padding: 4rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  }
