
    /* ============================================================
       ELEMENTOR STARTER TEMPLATE — KARINA GALLANO
       Palette: Golden · Tan · Stone · Brown · Maroon
       Responsive: Mobile / Tablet / Laptop / Desktop
    ============================================================ */

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

    :root {
      /* ── Brand Palette ─────────────────────────────── */
      --golden:    #D9B061;
      --tan:       #D9C4A9;
      --stone:     #D8D0C5;
      --brown:     #8D6F57;
      --maroon:    #3F0D0C;

      /* ── Semantic Tokens ───────────────────────────── */
      --bg:        #FAF7F2;      /* warm off-white page */
      --white:     #FFFFFF;
      --dark:      var(--maroon);
      --mid:       var(--brown);
      --light:     #B8A898;
      --accent:    var(--golden);
      --accent-lt: var(--tan);
      --accent-dk: #A0782A;      /* darker golden for text */
      --border:    rgba(63,13,12,0.09);
      --dark-sec:  var(--maroon);  /* dark-background sections */
      --footer-bg: #2A0908;

      /* ── Typography ────────────────────────────────── */
      --serif: 'DM Serif Display', Georgia, serif;
      --sans:  'DM Sans', system-ui, sans-serif;

      /* ── Layout ────────────────────────────────────── */
      --max-w:  1240px;
      --pad-x:  clamp(20px, 5vw, 60px);
    }

    /* ── Base ──────────────────────────────────────────── */
    html  { scroll-behavior: smooth; font-size: 16px; }
    body  { font-family: var(--sans); background: var(--bg); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.12; font-weight: 400; }
    p     { font-size: 1rem; color: var(--mid); line-height: 1.78; }
    a     { text-decoration: none; color: inherit; }
    img   { max-width: 100%; display: block; }

    /* ── Layout helpers ────────────────────────────────── */
    .container   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
    .section-pad { padding: clamp(64px, 10vw, 120px) 0; }
    .section-header { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 6vw, 72px); }
    .section-header h2 { margin-bottom: 14px; }

    /* ── Eyebrow ───────────────────────────────────────── */
    .eyebrow {
      display: inline-block;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent-dk); margin-bottom: 16px;
    }

    /* ── Divider ───────────────────────────────────────── */
    .divider { width: 44px; height: 2px; background: var(--accent); margin: 22px 0; }

    /* ── Buttons ───────────────────────────────────────── */
    .btn {
      display: inline-block;
      padding: 13px 30px;
      font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      border-radius: 4px; cursor: pointer;
      transition: all 0.22s ease;
      border: 1.5px solid transparent;
    }
    .btn-dark    { background: var(--maroon); color: var(--white) !important; border-color: var(--maroon); text-decoration: none !important; }
    .btn-dark:hover   { background: var(--brown); border-color: var(--brown); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(63,13,12,0.25); }
    .btn-outline { background: transparent; color: var(--maroon) !important; border-color: var(--maroon); text-decoration: none !important; }
    .btn-outline:hover{ background: var(--maroon); color: var(--white) !important; transform: translateY(-2px); }
    .btn-gold    { background: var(--golden); color: var(--maroon) !important; border-color: var(--golden); text-decoration: none !important; }
    .btn-gold:hover   { background: var(--accent-dk); border-color: var(--accent-dk); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,176,97,0.35); }
    .btn-ghost   { background: transparent; color: rgba(255,255,255,0.65) !important; border-color: rgba(255,255,255,0.22); text-decoration: none !important; }
    .btn-ghost:hover  { color: var(--white) !important; border-color: rgba(255,255,255,0.5); }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(250,247,242,0.93);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: var(--max-w); margin: 0 auto;
      padding: 0 var(--pad-x);
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--maroon); }
    .nav-logo em { font-style: italic; color: var(--accent-dk); }
    .nav-links {
      display: flex; align-items: center; gap: clamp(20px, 3vw, 36px);
      list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--brown); transition: color 0.18s;
    }
    .nav-links a:hover { color: var(--maroon); }
    .nav-cta { flex-shrink: 0; margin-left: 8px; }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none; background: none; border: none;
      cursor: pointer; padding: 6px; flex-direction: column; gap: 5px;
    }
    .nav-toggle span {
      display: block; width: 22px; height: 1.5px;
      background: var(--maroon); transition: all 0.2s;
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero { padding: clamp(110px, 14vw, 160px) 0 clamp(60px, 8vw, 100px); }
    .hero-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
      display: grid;
      grid-template-columns: 1fr min(420px, 40%);
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
    }
    .hero-available {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 100px; padding: 6px 18px 6px 10px;
      margin-bottom: clamp(24px, 3vw, 36px);
    }
    .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; flex-shrink: 0; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
    .hero-available-text { font-size: 0.76rem; font-weight: 500; color: var(--brown); }
    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 4.6rem);
      color: var(--maroon); margin-bottom: clamp(18px, 2.5vw, 24px);
    }
    .hero h1 em { font-style: italic; color: var(--accent-dk); }
    .hero-tagline {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      color: var(--accent-dk); margin-top: 6px; margin-bottom: 0;
      font-weight: 400; letter-spacing: 0.01em;
    }
    .hero-desc {
      font-size: clamp(1rem, 1.5vw, 1.12rem);
      color: var(--brown); max-width: 500px;
      margin-bottom: clamp(28px, 4vw, 40px); line-height: 1.82;
    }
    .hero-niche-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 4px; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--tan); color: var(--maroon);
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
      padding: 6px 14px; border-radius: 100px;
      border: 1px solid rgba(63,13,12,0.1);
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
    .hero-visual { position: relative; }
    .hero-img-bg {
      position: absolute; inset: -16px -12px;
      background: linear-gradient(140deg, var(--tan) 0%, transparent 55%);
      border-radius: 20px; z-index: 0;
    }
    .hero-image {
      position: relative; z-index: 1;
      border-radius: 16px; overflow: hidden;
      aspect-ratio: 3/4; background: var(--stone);
    }
    .hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
    .hero-badge {
      position: absolute; bottom: 24px; left: -24px; z-index: 2;
      background: var(--white); border-radius: 14px;
      padding: 16px 20px;
      box-shadow: 0 12px 48px rgba(63,13,12,0.12);
    }
    .hero-badge-num { font-family: var(--serif); font-size: 1.8rem; color: var(--maroon); line-height: 1; display: block; }
    .hero-badge-label { font-size: 0.7rem; color: var(--light); font-weight: 500; margin-top: 3px; }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats-bar { background: var(--maroon); }
    .stats-bar-inner {
      max-width: var(--max-w); margin: 0 auto; padding: clamp(24px, 4vw, 36px) var(--pad-x);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center; padding: 0 clamp(12px, 2vw, 32px);
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num  { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--white); display: block; }
    .stat-label{ font-size: 0.7rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.1em; }

    /* ============================================================
       ABOUT
    ============================================================ */
    .about { background: var(--white); }
    .about-inner {
      display: grid;
      grid-template-columns: min(460px, 42%) 1fr;
      gap: clamp(48px, 8vw, 100px); align-items: center;
    }
    .about-img-wrap {
      position: relative;
      border-radius: 16px; overflow: hidden;
      aspect-ratio: 4/5; background: var(--stone);
    }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .about-accent { display: none; }
    .about-text { font-size: 1rem; color: var(--brown); line-height: 1.82; margin-bottom: 18px; }
    .about-text strong { color: var(--maroon); font-weight: 600; }
    .about-checks { display: flex; flex-direction: column; gap: 13px; margin: 28px 0 36px; }
    .about-check { display: flex; align-items: flex-start; gap: 13px; }
    .check-icon {
      width: 21px; height: 21px; border-radius: 50%;
      background: var(--tan); flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; color: var(--accent-dk); font-weight: 700;
    }
    .check-text { font-size: 0.94rem; color: var(--brown); line-height: 1.55; }
    .check-text strong { color: var(--maroon); font-weight: 600; }

    /* ============================================================
       SERVICES
    ============================================================ */
    .services { background: var(--bg); }
    .services-row {
      display: grid; gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
      margin-bottom: 1px;
    }
    .services-row.row-3 { grid-template-columns: repeat(3, 1fr); }
    .services-row.row-2 { grid-template-columns: repeat(2, 1fr); }
    .service-card {
      background: var(--white);
      padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px) clamp(28px, 3.5vw, 44px);
      border-radius: 16px;
      border: 1px solid rgba(63,13,12,0.06);
      box-shadow: 0 2px 12px rgba(63,13,12,0.05), 0 1px 3px rgba(63,13,12,0.04);
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      cursor: default;
    }
    .service-card:hover {
      background: var(--maroon);
      transform: translateY(-10px);
      box-shadow: 0 20px 48px rgba(63,13,12,0.18), 0 6px 16px rgba(63,13,12,0.1);
      border-color: transparent;
    }
    .service-icon {
      font-size: 1.4rem; margin-bottom: 24px;
      width: 48px; height: 48px; border-radius: 10px;
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s;
    }
    .service-card:hover .service-icon { background: rgba(255,255,255,0.06); }
    .service-card h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); margin-bottom: 12px; transition: color 0.25s; }
    .service-card:hover h3 { color: var(--white); }
    .service-card p  { font-size: 0.9rem; line-height: 1.72; transition: color 0.25s; }
    .service-card:hover p { color: rgba(255,255,255,0.48); }
    .service-link {
      display: inline-block; margin-top: 22px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
      text-transform: uppercase; color: var(--accent-dk);
      text-decoration: none; cursor: pointer;
      transition: color 0.25s, gap 0.25s;
    }
    .service-card:hover .service-link { color: var(--golden); }
    /* Primary (featured) service cards */
    .services-row--primary { margin-bottom: 2px; }
    .service-card--primary {
      border-color: rgba(63,13,12,0.13);
      box-shadow: 0 4px 20px rgba(63,13,12,0.06);
    }
    .service-card-badge {
      display: inline-block; font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      background: var(--golden); color: var(--maroon);
      padding: 4px 12px; border-radius: 100px; margin-bottom: 18px;
    }
    .service-card--primary:hover .service-card-badge {
      background: rgba(217,176,97,0.2); color: var(--golden);
    }
    .services-also-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--light);
      text-align: center; margin: clamp(32px,5vw,48px) 0 20px;
    }

    /* ============================================================
       SERVICE DETAIL SECTIONS
    ============================================================ */
    .svc-detail {
      scroll-margin-top: 80px;
      background: var(--white);
    }
    .svc-detail:nth-child(odd) { background: var(--bg); }

    /* Maroon banner that clearly identifies each service */
    .svc-banner {
      background: var(--maroon);
      padding: 32px var(--pad-x);
      border-bottom: 2px solid rgba(217,176,97,0.25);
    }
    .svc-banner-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .svc-num {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 5vw, 4rem);
      color: var(--golden);
      opacity: 0.35;
      line-height: 1;
      flex-shrink: 0;
      user-select: none;
    }
    .svc-banner-text {}
    .svc-banner-tag {
      font-family: var(--sans);
      font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--tan); opacity: 0.65;
      margin-bottom: 6px;
    }
    .svc-banner h2 {
      font-family: var(--serif);
      font-size: clamp(1.35rem, 2.5vw, 2rem);
      color: var(--white);
      margin: 0; line-height: 1.15;
    }

    /* Content grid */
    .svc-detail-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: clamp(48px,7vw,80px) var(--pad-x);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px 80px;
      align-items: start;
    }
    .svc-detail-left {}
    .svc-detail-hook {
      font-family: var(--serif);
      font-size: clamp(1.35rem, 2vw, 1.65rem);
      color: var(--maroon); line-height: 1.3;
      margin: 0 0 18px;
    }
    .svc-detail-desc {
      font-size: 0.97rem; line-height: 1.8;
      color: #5a4a44; margin-bottom: 28px;
    }
    .svc-outcome {
      background: linear-gradient(135deg, var(--maroon) 0%, #5a1110 100%);
      color: var(--tan); border-radius: 8px;
      padding: 20px 24px 20px 30px;
      font-size: 0.9rem; line-height: 1.7;
      font-style: italic;
      border-left: 3px solid var(--golden);
    }
    .svc-detail-right {}
    .svc-includes-label {
      font-family: var(--sans);
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--brown); margin-bottom: 16px;
    }
    .svc-includes {
      list-style: none; padding: 0; margin: 0 0 28px;
    }
    .svc-includes li {
      font-size: 0.9rem; line-height: 1.55;
      color: #4a3c38; padding: 10px 0 10px 26px;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .svc-includes li:last-child { border-bottom: none; }
    .svc-includes li::before {
      content: '✓';
      position: absolute; left: 0; top: 10px;
      color: var(--golden); font-weight: 700; font-size: 0.78rem;
    }
    .svc-for {
      background: var(--stone); border-radius: 8px;
      padding: 18px 22px; margin-bottom: 28px;
    }
    .svc-for strong {
      display: block; font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--brown); margin-bottom: 8px;
    }
    .svc-for p {
      font-size: 0.88rem; line-height: 1.68;
      color: #4a3c38; margin: 0;
    }
    .svc-cta-wrap {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .svc-cta-text {
      font-size: 0.88rem; color: var(--brown);
      line-height: 1.62;
    }
    .svc-cta-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--maroon); color: var(--white);
      font-family: var(--sans); font-size: 0.75rem;
      font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
      padding: 14px 28px; border-radius: 4px;
      width: fit-content;
      transition: background 0.25s, transform 0.2s;
    }
    .svc-cta-btn:hover {
      background: #5a1110; transform: translateY(-2px);
    }
    /* svc-detail responsive rules consolidated in the main @media blocks below */

    /* ============================================================
       PROCESS
    ============================================================ */
    .process { background: var(--maroon); }
    .process .section-header h2 { color: var(--white); }
    .process .section-header p  { color: rgba(255,255,255,0.42); }
    .process .eyebrow { color: var(--golden); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: rgba(255,255,255,0.05);
      border-radius: 12px; overflow: hidden;
    }
    .process-step {
      padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 36px);
      border: 1px solid rgba(255,255,255,0.06);
    }
    .step-num {
      font-family: var(--serif); display: block;
      font-size: clamp(2.5rem, 4vw, 4rem);
      color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 24px;
    }
    .process-step h4 { color: var(--white); font-family: var(--sans); font-size: 0.98rem; font-weight: 600; margin-bottom: 9px; }
    .process-step p  { font-size: 0.86rem; color: rgba(255,255,255,0.38); line-height: 1.7; }

    /* ============================================================
       CLIENT LOGOS (formerly portfolio)
    ============================================================ */
    .clients { background: var(--white); }

    /* 3-column logo grid on desktop → 2-col tablet → 2-col mobile */
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .logo-card {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 18px;
      padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      cursor: default;
    }
    .logo-card:hover {
      background: var(--white);
      border-color: var(--tan);
      box-shadow: 0 8px 32px rgba(63,13,12,0.07);
    }

    /* Logo image container — fixed height, logo scales inside */
    .logo-img-wrap {
      width: 100%; height: 80px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-img-wrap img {
      max-width: 100%; max-height: 80px;
      width: auto; height: auto;
      object-fit: contain;
      /* Grayscale by default → color on hover */
      filter: grayscale(100%) opacity(0.55);
      transition: filter 0.3s ease;
    }
    .logo-card:hover .logo-img-wrap img {
      filter: grayscale(0%) opacity(1);
    }

    /* Placeholder shown when no logo image is available */
    .logo-placeholder {
      width: 100%; height: 80px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.35rem);
      color: var(--brown); letter-spacing: 0.04em; text-align: center;
      line-height: 1.2;
      transition: color 0.25s;
    }
    .logo-card:hover .logo-placeholder { color: var(--maroon); }

    /* Client name tag below logo */
    .logo-client-name {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--light); text-align: center;
      transition: color 0.25s;
    }
    .logo-card:hover .logo-client-name { color: var(--brown); }

    /* Service pill tag */
    .logo-tag {
      font-size: 0.65rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--accent-dk);
      background: var(--tan);
      padding: 3px 10px; border-radius: 100px;
    }

    /* logo-grid responsive rules consolidated in the main @media blocks below */

    /* ============================================================
       TESTIMONIALS
    ============================================================ */

    .testimonials { background: var(--bg); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .testimonial-card {
      background: var(--white); border-radius: 16px;
      padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
      position: relative; overflow: hidden;
    }
    .t-quote {
      font-family: var(--serif); font-size: 6rem;
      color: var(--tan); line-height: 1;
      position: absolute; top: 10px; left: 24px;
    }
    .t-stars { display: flex; gap: 3px; margin-bottom: 18px; position: relative; z-index: 1; }
    .t-star  { color: var(--golden); font-size: 0.85rem; }
    .t-text  { font-size: 0.98rem; color: var(--maroon); line-height: 1.82; margin-bottom: 28px; position: relative; z-index: 1; }
    .t-author { display: flex; align-items: center; gap: 14px; }
    .t-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--stone); }
    .t-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .t-name  { font-weight: 600; font-size: 0.88rem; color: var(--maroon); }
    .t-title { font-size: 0.76rem; color: var(--light); margin-top: 1px; }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta-section { background: var(--maroon); text-align: center; padding: clamp(80px, 12vw, 128px) var(--pad-x); }
    .cta-inner { max-width: 680px; margin: 0 auto; }
    .cta-section .eyebrow { color: var(--golden); }
    .cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 18px; }
    .cta-section p  { color: rgba(255,255,255,0.5); font-size: 1.05rem; margin-bottom: 40px; }
    .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer { background: var(--footer-bg); padding: clamp(48px, 7vw, 72px) var(--pad-x) 32px; }
    .footer-inner { max-width: var(--max-w); margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: clamp(32px, 5vw, 56px); margin-bottom: 52px;
    }
    .footer-brand h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
    .footer-brand h3 em { font-style: italic; color: var(--golden); }
    .footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.3); line-height: 1.72; max-width: 270px; }
    .footer-social { display: flex; gap: 10px; margin-top: 20px; }
    .footer-social a {
      width: 34px; height: 34px; border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.35); font-size: 0.75rem; font-weight: 700;
      transition: all 0.2s;
    }
    .footer-social a:hover { border-color: var(--golden); color: var(--golden); }
    .footer-col h5 {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em;
      text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col li a { font-size: 0.85rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
    .footer-col li a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 26px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p, .footer-bottom a { font-size: 0.74rem; color: rgba(255,255,255,0.18); }
    .footer-bottom a:hover { color: rgba(255,255,255,0.45); }
    

    /* ── Back to Top ───────────────────────────────────── */
    .back-to-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 600;
      width: 46px; height: 46px;
      background: var(--maroon); color: var(--white);
      border: none; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1.1rem; line-height: 1;
      box-shadow: 0 4px 18px rgba(63,13,12,0.3);
      opacity: 0; transform: translateY(12px) scale(0.9);
      transition: opacity 0.3s, transform 0.3s, background 0.2s;
      pointer-events: none;
    }
    .back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
    .back-to-top:hover { background: var(--golden); color: var(--maroon); box-shadow: 0 6px 24px rgba(217,176,97,0.4); }

    /* ── Sample work note ──────────────────────────────── */
    .clients-sample-note {
      text-align: center; margin-top: clamp(28px,4vw,44px);
      font-size: 0.9rem; color: var(--brown); line-height: 1.7;
    }
    .clients-sample-note a { color: var(--brown); text-underline-offset: 3px; }

    /* ============================================================
       RESPONSIVE — TABLET (≤1024px)
    ============================================================ */
    /* ============================================================
       RESPONSIVE — SMALL LAPTOP / TABLET LANDSCAPE (≤1024px)
    ============================================================ */
    @media (max-width: 1024px) {
      .hero-inner            { grid-template-columns: 1fr 340px; gap: 40px; }
      .about-inner           { grid-template-columns: 1fr 1fr; gap: 48px; }
      .process-steps         { grid-template-columns: repeat(2, 1fr); }
      .footer-top            { grid-template-columns: 1fr 1fr; gap: 36px; }
      /* Service cards: keep 2-col on small laptops — 1-col is too sparse */
      .services-row.row-3   { grid-template-columns: repeat(2, 1fr); }
      .services-row.row-2   { grid-template-columns: repeat(2, 1fr); }
      .nav-cta               { display: none; }
      /* Tighten section padding on smaller viewports */
      .svc-detail-inner      { gap: 40px; }
    }

    /* ============================================================
       RESPONSIVE — TABLET PORTRAIT (≤900px)
    ============================================================ */
    @media (max-width: 900px) {
      .hero-inner            { grid-template-columns: 1fr; }
      .hero-visual           { display: none; }
      .hero h1               { font-size: clamp(2rem, 7vw, 3rem); }
      .hero-desc             { max-width: 100%; }
      .about-inner           { grid-template-columns: 1fr; }
      .about-img-wrap        { aspect-ratio: 3/2; max-height: 340px; }
      .about-img-wrap img    { object-position: top center; }
      .about-accent          { display: none; }
      /* Service cards: keep 2-col on tablet portrait */
      .services-row.row-3   { grid-template-columns: repeat(2, 1fr); }
      .services-row.row-2   { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid     { grid-template-columns: 1fr; }
      /* Stats bar: 2×2 grid */
      .stats-bar-inner       { grid-template-columns: repeat(2, 1fr); gap: 0; }
      .stat-item             { padding: 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .stat-item:nth-child(odd)                         { border-right: 1px solid rgba(255,255,255,0.1); }
      .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
      /* Service detail: stack to 1 col */
      .svc-detail-inner      { grid-template-columns: 1fr; gap: 32px; }
      .svc-banner-inner      { gap: 18px; }
      /* Logo grid: 2 cols */
      .logo-grid             { grid-template-columns: repeat(2, 1fr); }
    }

    /* ============================================================
       RESPONSIVE — MOBILE (≤640px)
    ============================================================ */
    @media (max-width: 640px) {
      /* Nav */
      .nav-links             { display: none; }
      .nav-toggle            { display: flex; }

      /* Hero */
      .hero                  { padding: 100px 0 56px; }
      .hero h1               { font-size: clamp(1.9rem, 9vw, 2.6rem); }
      .hero-actions          { flex-direction: column; align-items: flex-start; }
      .hero-badge            { display: none; }

      /* About */
      .about-img-wrap        { aspect-ratio: 4/3; }

      /* Services: 1-col on mobile */
      .services-row.row-3,
      .services-row.row-2    { grid-template-columns: 1fr; }

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

      /* Testimonials */
      .testimonials-grid     { grid-template-columns: 1fr; }

      /* CTA */
      .cta-actions           { flex-direction: column; align-items: center; }

      /* Footer */
      .footer-top            { grid-template-columns: 1fr; gap: 28px; }
      .footer-brand p        { max-width: 100%; }
      .footer-bottom         { flex-direction: column; align-items: flex-start; }

      /* Stats bar: keep 2-col on mobile, adjust padding */
      .stats-bar-inner       { grid-template-columns: repeat(2, 1fr); }
      .stat-num              { font-size: clamp(1.3rem, 5vw, 1.7rem); }
      .stat-label            { font-size: 0.62rem; }

      /* Service detail sections on mobile */
      .svc-banner            { padding: clamp(20px, 5vw, 32px) var(--pad-x); }
      .svc-banner h2         { font-size: clamp(1.3rem, 6vw, 1.7rem); }
      .svc-num               { display: none; }
      .svc-detail > div      { padding: clamp(32px, 8vw, 48px) var(--pad-x); }
      .svc-for               { padding: 20px; }
      .svc-for-list          { grid-template-columns: 1fr; }

      /* Section headers */
      .section-header        { margin-bottom: clamp(32px, 7vw, 48px); }
    }

    /* ============================================================
       RESPONSIVE — SMALL PHONES (≤480px)
    ============================================================ */
    @media (max-width: 480px) {
      /* Logo grid: stay 2-col but tighter */
      .logo-grid             { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .logo-img-wrap,
      .logo-placeholder      { height: 56px; }
      .logo-card             { padding: 20px 14px; }

      /* Testimonial card: tighter */
      .testimonial-card      { padding: 28px 20px; }

      /* Buttons: full-width on tiny screens */
      .hero-actions .btn     { width: 100%; text-align: center; }
    }

    /* ── Performance hints ───────────────────────────────── */
    @font-face { font-display: swap; }
    .hero-image img { will-change: transform; }

    /* ── Fade-in animation (triggered by IntersectionObserver) ── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Reduced motion: respect user preference ─────────── */
    @media (prefers-reduced-motion: reduce) {
      .fade-up { opacity: 1; transform: none; transition: none; }
      .hero-image img { will-change: auto; }
      * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ── Print styles ─────────────────────────────────────── */
    @media print {
      .nav, .hero-visual, .stats-bar, .process, .cta-section, footer { display: none; }
      body { font-size: 12pt; color: #000; background: #fff; }
      a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; }
    }

    /* ============================================================
       MOBILE NAV (JS-toggled via .nav-open on body)
    ============================================================ */
    body.nav-open .nav-links {
      display: flex; flex-direction: column; align-items: flex-start;
      position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
      background: var(--white);
      padding: 40px var(--pad-x);
      gap: 28px; z-index: 199;
    }
    body.nav-open .nav-links a { font-size: 1.1rem; }
  
    .t-review-title {
      font-family: var(--serif); font-style: italic;
      font-size: 1.05rem; color: var(--golden);
      margin: 0 0 10px; font-weight: 400;
    }
    .t-avatar--initials {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--tan); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .t-avatar--initials span {
      font-size: 0.85rem; font-weight: 700; color: var(--maroon);
      letter-spacing: 0.04em;
    }
    
    .t-review-title {
      font-family: var(--serif); font-style: italic;
      font-size: 1.05rem; color: var(--golden);
      margin: 0 0 10px; font-weight: 400;
    }
    .t-avatar--initials {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--tan); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .t-avatar--initials span {
      font-size: 0.85rem; font-weight: 700; color: var(--maroon);
      letter-spacing: 0.04em;
    }
    /* 3-col grid when there are 3+ testimonials */
    @media (min-width: 900px) {
      .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    }
    