    /* ===== CSS VARIABLES ===== */
    :root {
      --forest: #1F4D3A;
      --forest-light: #2a6350;
      --forest-dark: #163829;
      --orange: #FF8A3D;
      --orange-light: #ffa066;
      --gold: #F4C542;
      --gold-light: #f7d470;
      --offwhite: #FAF9F6;
      --offwhite-2: #F2F0EB;
      --charcoal: #222222;
      --charcoal-soft: #444444;
      --muted: #888888;
      --white: #ffffff;
      --glass-bg: rgba(255,255,255,0.08);
      --glass-border: rgba(255,255,255,0.15);
      --shadow-soft: 0 4px 32px rgba(31,77,58,0.10);
      --shadow-card: 0 8px 40px rgba(31,77,58,0.13);
      --shadow-glow: 0 0 60px rgba(244,197,66,0.18);
      --radius: 20px;
      --radius-sm: 12px;
      --radius-pill: 100px;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --font-display: 'Georgia', 'Times New Roman', serif;
      --font-body: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    }

    /* ===== 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);
      background: var(--offwhite);
      color: var(--charcoal);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; }
    h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-family: var(--font-display); font-weight: 700; }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-family: var(--font-display); font-weight: 700; }
    h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
    h4 { font-size: 1.1rem; font-weight: 600; }
    p { line-height: 1.75; color: var(--charcoal-soft); }

    /* ===== CONTAINER ===== */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== GRADIENT TEXT ===== */
    .text-gradient {
      background: linear-gradient(135deg, var(--forest) 0%, var(--orange) 60%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .text-gradient-warm {
      background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ===== EYEBROW LABEL ===== */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--forest);
      background: rgba(31,77,58,0.07);
      border: 1px solid rgba(31,77,58,0.12);
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      margin-bottom: 24px;
    }
    .eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      display: block;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-pill);
      font-size: 0.95rem;
      font-weight: 600;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--forest);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(31,77,58,0.28);
    }
    .btn-primary:hover {
      background: var(--forest-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(31,77,58,0.36);
    }
    .btn-secondary {
      background: var(--offwhite);
      color: var(--forest);
      border: 1.5px solid rgba(31,77,58,0.2);
    }
    .btn-secondary:hover {
      background: var(--white);
      border-color: var(--forest);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }
    .btn-orange {
      background: linear-gradient(135deg, var(--orange), var(--gold));
      color: var(--white);
      box-shadow: 0 4px 20px rgba(255,138,61,0.35);
    }
    .btn-orange:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 36px rgba(255,138,61,0.45);
    }
    .btn-ghost {
      color: var(--forest);
      border: 1.5px solid rgba(31,77,58,0.25);
    }
    .btn-ghost:hover { background: rgba(31,77,58,0.05); }
    .btn svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      padding: 16px 0;
      transition: var(--transition);
    }
    nav.scrolled {
      background: rgba(250,249,246,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.06);
      padding: 12px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-logo {
      height: 44px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .brand-logo-footer {
      height: 48px;
      /* padding: 10px; */
      /* filter: brightness(0) invert(1); */
    }
    .brand-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--forest); letter-spacing: -0.01em; }
    .nav-cta { display: flex; gap: 10px; }

    /* ===== HERO ===== */
    #hero {
      min-height: 80vh;
      /* min-height: 100vh; */
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0 52px;
    }

    /* Animated gradient background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #e8f3ed 0%, var(--offwhite) 40%, #fff8f0 70%, #fffbf0 100%);
      z-index: 0;
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.45;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(31,77,58,0.18), transparent); top: -100px; right: -100px; animation-delay: 0s; }
    .hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,138,61,0.15), transparent); bottom: 0; left: -80px; animation-delay: 3s; }
    .hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,197,66,0.18), transparent); top: 50%; right: 20%; animation-delay: 5s; }
    @keyframes orbFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.05); }
    }

    /* Floating food icons */
    .float-icons {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }
    .float-icon {
      position: absolute;
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      opacity: 0.18;
      animation: floatIcon 6s ease-in-out infinite;
      user-select: none;
    }
    .float-icon:nth-child(1)  { top: 15%; left: 6%;  animation-delay: 0s;   animation-duration: 7s; }
    .float-icon:nth-child(2)  { top: 25%; right: 8%; animation-delay: 1s;   animation-duration: 6s; }
    .float-icon:nth-child(3)  { top: 60%; left: 3%;  animation-delay: 2s;   animation-duration: 8s; }
    .float-icon:nth-child(4)  { top: 70%; right: 5%; animation-delay: 0.5s; animation-duration: 7s; }
    .float-icon:nth-child(5)  { top: 40%; left: 10%; animation-delay: 3s;   animation-duration: 6s; }
    .float-icon:nth-child(6)  { top: 80%; left: 15%; animation-delay: 1.5s; animation-duration: 9s; }
    .float-icon:nth-child(7)  { top: 10%; right: 20%;animation-delay: 4s;   animation-duration: 7s; }
    .float-icon:nth-child(8)  { top: 50%; right: 12%;animation-delay: 2.5s; animation-duration: 6s; }
    @keyframes floatIcon {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      33% { transform: translateY(-18px) rotate(5deg); }
      66% { transform: translateY(-8px) rotate(-3deg); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(31,77,58,0.06);
      border: 1px solid rgba(31,77,58,0.14);
      border-radius: var(--radius-pill);
      padding: 8px 18px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--forest);
      margin-bottom: 28px;
      width: fit-content;
    }
    .hero-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,138,61,0.5); }
      50% { box-shadow: 0 0 0 6px rgba(255,138,61,0); }
    }
    .hero h1 {
      margin-bottom: 24px;
      line-height: 1.1;
    }
    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      line-height: 1.7;
      max-width: 560px;
      color: var(--charcoal-soft);
      margin-bottom: 40px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Hero progress bar */
    .hero-progress-block {
      margin-top: 40px;
      max-width: 480px;
    }
    .hero-progress-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .hero-progress-label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--forest);
    }
    .hero-progress-label .blink {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    .hero-progress-pct {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--charcoal);
      letter-spacing: -0.01em;
    }
    .hero-progress-track {
      position: relative;
      height: 6px;
      background: rgba(31,77,58,0.1);
      border-radius: var(--radius-pill);
      overflow: visible;
    }
    .hero-progress-fill {
      position: relative;
      height: 100%;
      background: linear-gradient(90deg, var(--forest) 0%, var(--orange) 65%, var(--gold) 100%);
      border-radius: var(--radius-pill);
      width: 0%;
      transition: width 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 0 14px rgba(255,138,61,0.38);
    }
    .hero-progress-fill::after {
      content: '';
      position: absolute;
      right: -1px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--gold);
      border: 2.5px solid var(--white);
      box-shadow: 0 2px 10px rgba(244,197,66,0.55);
      transition: right 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .hero-progress-sub {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 9px;
      letter-spacing: 0.02em;
    }

    /* Steam animation — signature element */
    .steam-wrap {
      position: absolute;
      right: 0;
      bottom: 0;
      top: 0;
      width: 45%;
      z-index: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      pointer-events: none;
    }
    @media (max-width: 768px) { .steam-wrap { display: none; } }
    .pot-scene {
      position: relative;
      width: 280px;
      height: 340px;
      margin-bottom: 40px;
    }
    .pot-body {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 120px;
      background: linear-gradient(180deg, #2d6b4e 0%, var(--forest-dark) 100%);
      border-radius: 0 0 60px 60px;
      box-shadow: 0 12px 40px rgba(31,77,58,0.25), inset 0 2px 0 rgba(255,255,255,0.1);
    }
    .pot-lid {
      position: absolute;
      bottom: 108px;
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      height: 28px;
      background: linear-gradient(180deg, #2d6b4e, var(--forest-dark));
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 16px rgba(31,77,58,0.2);
      animation: lidBounce 3s ease-in-out infinite;
    }
    .pot-knob {
      position: absolute;
      bottom: 134px;
      left: 50%;
      transform: translateX(-50%);
      width: 28px;
      height: 20px;
      background: var(--gold);
      border-radius: var(--radius-pill);
      box-shadow: 0 2px 8px rgba(244,197,66,0.4);
      animation: lidBounce 3s ease-in-out infinite;
    }
    @keyframes lidBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-6px); }
    }
    .handle {
      position: absolute;
      bottom: 60px;
      width: 28px;
      height: 50px;
      background: linear-gradient(180deg, #2d6b4e, var(--forest-dark));
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 12px rgba(31,77,58,0.2);
    }
    .handle-l { left: 22px; }
    .handle-r { right: 22px; }
    .steam-container {
      position: absolute;
      bottom: 155px;
      left: 50%;
      transform: translateX(-50%);
      width: 180px;
      height: 180px;
    }
    .steam-line {
      position: absolute;
      bottom: 0;
      width: 6px;
      height: 60px;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0.2));
      border-radius: 4px;
      animation: steamRise 2.4s ease-out infinite;
      opacity: 0;
    }
    .steam-line:nth-child(1) { left: 40px;  animation-delay: 0s;   animation-duration: 2.2s; }
    .steam-line:nth-child(2) { left: 75px;  animation-delay: 0.5s; animation-duration: 2.6s; }
    .steam-line:nth-child(3) { left: 110px; animation-delay: 1s;   animation-duration: 2.4s; }
    .steam-line:nth-child(4) { left: 55px;  animation-delay: 1.5s; animation-duration: 2.2s; }
    .steam-line:nth-child(5) { left: 90px;  animation-delay: 0.8s; animation-duration: 2.8s; }
    @keyframes steamRise {
      0%   { opacity: 0;    transform: translateY(0)    scaleX(1);    }
      20%  { opacity: 0.7;  transform: translateY(-20px) scaleX(1.2);  }
      60%  { opacity: 0.4;  transform: translateY(-60px) scaleX(1.6);  }
      100% { opacity: 0;    transform: translateY(-110px) scaleX(2.4); }
    }
    .pot-base {
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      height: 16px;
      background: rgba(31,77,58,0.3);
      border-radius: 50%;
      filter: blur(6px);
    }

    /* ===== SECTION SPACING ===== */
    section { padding: 60px 0; }

    /* ===== DIVIDER ===== */
    .section-divider {
      width: 64px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px;
      margin-bottom: 24px;
    }

    /* ===== ABOUT SECTION ===== */
    #about {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
    .about-text h2 { margin-bottom: 20px; }
    .about-text p { font-size: 1.08rem; margin-bottom: 20px; }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }
    .stat-card {
      background: var(--offwhite);
      border: 1px solid rgba(31,77,58,0.07);
      border-radius: var(--radius-sm);
      padding: 24px 20px;
      transition: var(--transition);
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }

    /* Visual element */
    .about-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-card-main {
      width: 100%;
      max-width: 400px;
      background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
      border-radius: var(--radius);
      padding: 40px 36px;
      color: var(--white);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .about-card-main::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(244,197,66,0.15), transparent);
      border-radius: 50%;
    }
    .about-card-icon { font-size: 3rem; margin-bottom: 20px; }
    .about-card-main h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
    .about-card-main p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }
    .about-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .tag {
      padding: 6px 14px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-pill);
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }
    .about-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 110px;
      height: 110px;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(255,138,61,0.35);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      text-align: center;
      line-height: 1.3;
      letter-spacing: 0.02em;
      padding: 8px;
    }
    .about-badge span { font-size: 1.8rem; line-height: 1; }

    /* ===== SERVICES SECTION ===== */
    #services {
      background: var(--offwhite);
      position: relative;
    }
    .services-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
    .services-header .eyebrow { justify-content: center; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      background: var(--white);
      border: 1px solid rgba(31,77,58,0.07);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--forest), var(--orange), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: transparent; }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon {
      font-size: 2.4rem;
      margin-bottom: 20px;
      display: block;
      transition: transform 0.3s ease;
    }
    .service-card:hover .service-icon { transform: scale(1.15) rotate(-3deg); }
    .service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--charcoal); }
    .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

    /* ===== WHY US SECTION ===== */
    #why {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    #why::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(244,197,66,0.06) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 50%, rgba(31,77,58,0.04) 0%, transparent 60%);
    }
    .why-header { text-align: center; max-width: 600px; margin: 0 auto 64px; position: relative; }
    .why-header .eyebrow { justify-content: center; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
    }
    @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

    .why-card {
      background: var(--offwhite);
      border: 1px solid rgba(31,77,58,0.07);
      border-radius: var(--radius);
      padding: 36px 28px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); background: var(--white); }
    .why-card-num {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 700;
      color: rgba(31,77,58,0.06);
      line-height: 1;
      position: absolute;
      top: 16px;
      right: 20px;
      letter-spacing: -0.04em;
      pointer-events: none;
    }
    .why-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, rgba(31,77,58,0.08), rgba(31,77,58,0.04));
      border: 1px solid rgba(31,77,58,0.1);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      transition: var(--transition);
    }
    .why-card:hover .why-icon {
      background: linear-gradient(135deg, var(--forest), var(--forest-light));
      border-color: transparent;
      box-shadow: 0 4px 20px rgba(31,77,58,0.25);
    }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
    .why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

    /* ===== RENOVATION SECTION ===== */
    #renovation {
      background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, #2a6350 100%);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #renovation::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .reno-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
    .reno-icon {
      font-size: 4rem;
      margin-bottom: 24px;
      display: block;
      animation: rotateSlow 8s linear infinite;
    }
    @keyframes rotateSlow {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    #renovation h2 { color: var(--white); margin-bottom: 20px; }
    #renovation p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; }
    .progress-bar-wrap {
      background: rgba(255,255,255,0.12);
      border-radius: var(--radius-pill);
      height: 8px;
      margin: 32px auto;
      max-width: 400px;
      overflow: hidden;
    }
    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: var(--radius-pill);
      width: 0%;
      transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 0 16px rgba(255,138,61,0.5);
    }
    .progress-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      text-align: right;
      max-width: 400px;
      margin: 8px auto 0;
      letter-spacing: 0.06em;
      font-weight: 500;
    }
    .reno-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-pill);
      padding: 6px 18px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 28px;
    }

    /* ===== CONTACT SECTION ===== */
    #contact {
      background: var(--offwhite);
      position: relative;
    }
    .contact-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }
    .contact-left { width: 100%; }
    .contact-left .eyebrow { justify-content: center; }
    .contact-left .section-divider { margin-left: auto; margin-right: auto; }
    .contact-left h2 { margin-bottom: 16px; }
    .contact-left p { margin-bottom: 32px; }
    .contact-links { display: flex; flex-direction: column; gap: 14px; max-width: 420px; margin: 0 auto; }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      background: var(--white);
      border: 1px solid rgba(31,77,58,0.08);
      border-radius: var(--radius-sm);
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--charcoal);
      transition: var(--transition);
    }
    .contact-link:hover { transform: translateX(6px); border-color: var(--forest); box-shadow: var(--shadow-soft); }
    .contact-link-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .link-wa .contact-link-icon { background: rgba(37,211,102,0.1); }
    .link-email .contact-link-icon { background: rgba(31,77,58,0.08); }

    /* Form */
    .contact-form-wrap {
      background: var(--white);
      border: 1px solid rgba(31,77,58,0.08);
      border-radius: var(--radius);
      padding: 40px 36px;
      box-shadow: var(--shadow-soft);
    }
    @media (max-width: 540px) { .contact-form-wrap { padding: 28px 20px; } }
    .form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; color: var(--charcoal); }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--charcoal-soft);
      margin-bottom: 8px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .form-input, .form-textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid rgba(31,77,58,0.12);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-family: inherit;
      background: var(--offwhite);
      color: var(--charcoal);
      transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      outline: none;
    }
    .form-input:focus, .form-textarea:focus {
      border-color: var(--forest);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(31,77,58,0.07);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-submit { width: 100%; padding: 16px; font-size: 1rem; font-weight: 600; margin-top: 8px; }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .form-success.show { display: block; animation: fadeUp 0.5s ease; }
    .success-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--forest), var(--forest-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 2rem;
      box-shadow: 0 8px 32px rgba(31,77,58,0.25);
      animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    @keyframes successPop {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .form-success h3 { color: var(--charcoal); margin-bottom: 8px; }
    .form-success p { font-size: 0.92rem; color: var(--muted); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.6);
      padding: 36px 0 24px;
    }
    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      flex-wrap: wrap;
    }
    .footer-brand .brand-text { color: var(--white); font-size: 1.3rem; }
    .footer-tagline {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      margin-top: 8px;
      max-width: 240px;
      line-height: 1.6;
    }
    .footer-links-group { display: flex; gap: 60px; flex-wrap: wrap; }
    .footer-col h5 {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 16px;
    }
    .footer-col a, .footer-col span {
      display: block;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--white); }
    .social-icons { display: flex; gap: 10px; margin-top: 4px; }
    .social-icon {
      width: 36px;
      height: 36px;
      /* background: rgba(255,255,255,0.07);  */
	  background: var(--forest); 
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.55); 
      font-size: 0.9rem;
      transition: var(--transition);
    }
	.social-icon-footer {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.07); 
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.55); 
      font-size: 0.9rem;
      transition: var(--transition);
    }
    .social-icon:hover { background: background: rgba(255,255,255,0.07); border-color: var(--forest); 
	color: var(--white); 
	transform: translateY(-3px); }
	
	.social-icon-footer:hover { background: var(--forest); border-color: var(--forest); 
	color: var(--white); 
	transform: translateY(-3px); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 28px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copy { font-size: 0.8rem; }
    .footer-made { font-size: 0.8rem; }
    .footer-made span { color: var(--orange); }

    /* ===== BOOKING MODAL (Bootstrap) ===== */
    .booking-modal-header {
      background: linear-gradient(135deg, var(--forest), var(--forest-light));
      color: var(--white);
      padding: 20px 24px;
    }
    .booking-modal-header .modal-title { color: var(--white); font-size: 1.1rem; font-weight: 700; }
    #bookingModal .modal-content { border: none; border-radius: var(--radius); overflow: hidden; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      section { padding: 44px 0; }
      .nav-cta .btn:first-child { display: none; }
      .hero-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .footer-top { flex-direction: column; }
      .footer-links-group { gap: 32px; }
    }
    @media (max-width: 480px) {
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { flex: unset; }
      .about-stats { grid-template-columns: 1fr; }
    }

    /* ===== REDUCED MOTION ===== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
/* ===== LANGUAGE TOGGLE ===== */
.lang-kn { display: none; }
.lang-en { display: inline; }
body.kn-active .lang-en { display: none; }
body.kn-active .lang-kn { display: inline; }

.lang-toggle-btn {
  background: rgba(31,77,58,0.08);
  border: 1.5px solid rgba(31,77,58,0.2);
  color: var(--forest);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-toggle-btn:hover { background: var(--forest); color: white; }

/* ===== TIER CARDS ===== */
.tier-card {
  background: var(--white);
  border: 2px solid rgba(31,77,58,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.tier-card.featured {
  border-color: var(--forest);
  background: linear-gradient(135deg, #f0f7f3, var(--white));
  box-shadow: var(--shadow-card);
  position: relative;
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tier-badge {
  display: inline-block;
  background: rgba(31,77,58,0.08);
  color: var(--forest);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.tier-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tier-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--charcoal-soft); }
.tier-features li::before { content: '\2713'; color: var(--forest); font-weight: 700; flex-shrink: 0; }
.tier-cta { margin-top: auto; }

/* ===== CLIENT GRID ===== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .client-grid { grid-template-columns: 1fr; } }

.client-card {
  background: var(--white);
  border: 1px solid rgba(31,77,58,0.08);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.client-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(31,77,58,0.2); }
.client-logo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.client-name { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.client-location { font-size: 0.8rem; color: var(--muted); }

/* ===== SOCIAL FEEDS ===== */
.social-feed-section { background: var(--offwhite-2); }
.social-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.social-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(31,77,58,0.15);
  background: var(--white);
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.social-tab.active, .social-tab:hover { background: var(--forest); color: white; border-color: var(--forest); }
.feed-panel { display: none; }
.feed-panel.active { display: block; }
.feed-placeholder {
  background: var(--white);
  border: 2px dashed rgba(31,77,58,0.15);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.insta-post {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8f3ed, #f0ede8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--muted);
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--white);
  border: 1px solid rgba(31,77,58,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-card); }
.review-stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--charcoal-soft); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }

/* ===== VERTICAL CARDS (Payana / BOL) ===== */
.vertical-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
.vertical-card.reverse { direction: rtl; }
.vertical-card.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .vertical-card { grid-template-columns: 1fr; gap: 32px; }
  .vertical-card.reverse { direction: ltr; }
}
.vertical-card-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}
.vertical-card-image img { width: 100%; height: 100%; object-fit: cover; }
.vertical-card-body { display: flex; flex-direction: column; gap: 8px; }
.vertical-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

/* ===== OFFER BUBBLE ===== */
.offer-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  max-width: 280px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: white;
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  box-shadow: 0 8px 40px rgba(31,77,58,0.35);
  display: none;
  animation: slideUpBubble 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.offer-bubble.show { display: block; }
@keyframes slideUpBubble {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.offer-bubble-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-bubble p { color: rgba(255,255,255,0.9); font-size: 0.88rem; margin: 0; }

/* ===== ANNOUNCE POPUP ===== */
.announce-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.88rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announce-popup.show { display: flex; }
.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FOUNDER CARD ===== */
.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--offwhite);
  border: 1px solid rgba(31,77,58,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 32px;
}
.founder-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(31,77,58,0.15);
}
.founder-info h4 { font-size: 1rem; margin-bottom: 2px; }
.founder-info p { font-size: 0.82rem; margin: 0; color: var(--muted); }
.founder-info a { color: var(--forest); font-size: 0.8rem; }

/* ===== CONSULTATION BANNER ===== */
.consultation-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, #2d6b4e 100%);
  color: white;
  text-align: center;
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.consultation-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244,197,66,0.1) 0%, transparent 70%);
}
.consultation-banner h2 { color: white; position: relative; }
.consultation-banner p { color: rgba(255,255,255,0.75); position: relative; margin: 16px 0 32px; font-size: 1.08rem; }
.consultation-banner .btn-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICES GRID (11 services) ===== */
.services-grid-11 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid-11 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid-11 { grid-template-columns: 1fr; } }

/* ===== TIERS GRID ===== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .tiers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ===== NAV FULL ===== */
#main-nav .navbar-nav .nav-link {
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.2s ease;
}
#main-nav .navbar-nav .nav-link:hover { color: var(--forest); }
#main-nav.scrolled { background: rgba(250,249,246,0.95) !important; backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }

/* ===== PAYANA / BOL sections ===== */
#payana { background: var(--white); }
#bol { background: var(--offwhite); }

/* ===== CONTACT SECTION (full) ===== */
.contact-grid-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid-full { grid-template-columns: 1fr; gap: 40px; } }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}
.contact-info-item a { color: var(--forest); font-weight: 500; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(31,77,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== BOOKING MODAL ===== */
.booking-modal-header { background: linear-gradient(135deg, var(--forest), var(--forest-light)); color: white; border-radius: var(--radius) var(--radius) 0 0; padding: 28px 32px; }
.booking-modal-header h5 { color: white; margin: 0; font-size: 1.25rem; }
.booking-modal-header .btn-close { filter: invert(1) brightness(2); }

/* ===== MOBILE BREAKPOINTS ===== */
@media (max-width: 768px) {
  .social-tabs { gap: 6px; }
  .social-tab { padding: 6px 14px; font-size: 0.8rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .offer-bubble { max-width: 240px; bottom: 16px; right: 16px; }
  .founder-card { flex-direction: column; text-align: center; }
  .consultation-banner { padding: 36px 0; }
  .tier-card { padding: 28px 20px; }
  .client-card { padding: 20px 16px; }
  .vertical-card-image { height: 240px; }
  .contact-grid-full { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SCROLL PROGRESS + BACK TO TOP ===== */
.scroll-progress-btn {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 48px;
  height: 48px;
  z-index: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-progress-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.progress-ring-track {
  fill: none;
  stroke: rgba(31,77,58,0.12);
  stroke-width: 3;
}
.progress-ring-fill {
  fill: none;
  stroke: var(--forest);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 106.8;
  stroke-dashoffset: 106.8;
  transition: stroke-dashoffset 0.1s linear;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  color: var(--forest);
  position: relative;
  z-index: 1;
}
.scroll-progress-btn:hover .scroll-arrow { color: var(--orange); }
.scroll-progress-btn:hover .progress-ring-fill { stroke: var(--orange); }

/* ===== STICKY NAV ===== */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
#main-nav.scrolled {
  background: rgba(250,249,246,0.97) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* ===== TOAST NOTIFICATIONS ===== */
#ks-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.ks-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  min-width: 280px;
  max-width: 380px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  background: #fff;
  color: var(--charcoal);
  border-left: 4px solid var(--charcoal);
}
.ks-toast--show { opacity: 1; transform: translateY(0); }
.ks-toast--success { border-left-color: #2e7d32; }
.ks-toast--success .ks-toast__icon { color: #2e7d32; }
.ks-toast--error { border-left-color: #c62828; }
.ks-toast--error .ks-toast__icon { color: #c62828; }
.ks-toast--info { border-left-color: var(--forest); }
.ks-toast--info .ks-toast__icon { color: var(--forest); }
.ks-toast__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.ks-toast__msg { flex: 1; line-height: 1.4; }
.ks-toast__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--charcoal-soft);
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.ks-toast__close:hover { opacity: 1; }
@media (max-width: 480px) {
  #ks-toast-container { left: 16px; right: 16px; bottom: 16px; }
  .ks-toast { min-width: 0; max-width: 100%; }
}

/* ===== LINKEDIN EMBED ===== */
#linkedin-feed-area iframe {
  max-width: 100%;
  border-radius: 8px;
}
