
  :root {
    --roble:    #8B5E3C;
    --caramelo: #C4874A;
    --arena:    #F2E0C8;
    --marfil:   #FAF6F0;
    --carbon:   #2C2013;
    --musgo:    #6B7355;
    --crema:    #EDE0CC;
    --heading:  'Playfair Display', Georgia, serif;
    --body:     'Lato', sans-serif;
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; font-size: 112.5%; }
  body { font-family: var(--body); background: var(--marfil); color: var(--carbon); overflow-x: hidden; }

  /* ══ NAV ══ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
    background: rgba(44,32,19,0.97); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(196,135,74,0.2);
  }
  .nav-logo { font-family: var(--heading); font-size: 22px; font-weight: 700; color: var(--arena); text-decoration: none; letter-spacing: .5px; }
  .nav-logo span { color: var(--caramelo); }
  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    font-family: var(--body); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--crema); text-decoration: none; transition: color .2s;
    display: flex; align-items: center; gap: 5px; padding: 8px 0;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active { color: var(--caramelo); }

  /* ── Services dropdown trigger arrow ── */
  .nav-has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s;
  }
  .nav-has-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }

  /* ── Dropdown panel ── */
  .nav-dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    padding-top: 12px; /* invisible bridge — keeps hover active in gap */
    opacity: 0; pointer-events: none;
    transition: opacity .22s, visibility .22s;
    visibility: hidden;
  }
  .nav-dropdown-inner {
    background: rgba(28,19,10,0.98); backdrop-filter: blur(12px);
    border: 1px solid rgba(196,135,74,0.15);
    border-radius: 6px; padding: 8px 0; min-width: 210px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    position: relative;
  }
  /* arrow notch */
  .nav-dropdown-inner::before {
    content: '';
    position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 9px; height: 9px;
    background: rgba(28,19,10,0.98);
    border-left: 1px solid rgba(196,135,74,0.15);
    border-top: 1px solid rgba(196,135,74,0.15);
  }
  .nav-has-dropdown:hover .nav-dropdown {
    opacity: 1; pointer-events: auto; visibility: visible;
  }
  .nav-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    font-family: var(--body); font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(237,224,204,0.65); text-decoration: none;
    transition: color .2s, background .2s;
    border-left: 2px solid transparent;
  }
  .nav-dropdown a:hover {
    color: var(--caramelo);
    background: rgba(196,135,74,0.07);
    border-left-color: var(--caramelo);
  }
  .nav-dropdown a .dd-num {
    font-family: var(--heading); font-size: 13px; color: rgba(196,135,74,0.4);
    min-width: 20px;
  }
  .nav-dropdown hr { border: none; border-top: 1px solid rgba(196,135,74,0.1); margin: 4px 0; }

  .nav-cta {
    background: var(--caramelo); color: var(--marfil) !important;
    padding: 10px 22px; border-radius: 2px; transition: background .2s !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .nav-cta:hover { background: var(--roble) !important; color: var(--marfil) !important; }

  .nav-burger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
  .nav-burger span { display:block; width:24px; height:2px; background:var(--crema); border-radius:2px; transition:.3s; }

  .nav-mobile {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(44,32,19,0.98); padding: 24px 28px;
    flex-direction: column; gap: 4px;
    border-bottom: 1px solid rgba(196,135,74,0.2); z-index: 99;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-family: var(--body); font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: var(--crema);
    text-decoration: none; padding: 10px 0;
    border-bottom: 1px solid rgba(196,135,74,0.1);
  }
  .nav-mobile a.sub { padding-left: 20px; font-size: 11px; color: rgba(237,224,204,0.55); letter-spacing: 1.5px; }
  .nav-mobile a.sub:hover { color: var(--caramelo); }
  .nav-mobile a.cta-mobile { border-bottom: none; color: var(--caramelo); margin-top: 6px; }

  /* ══ PAGE HERO ══ */
  .page-hero {
    background: var(--carbon); padding: 140px 80px 80px;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(139,94,60,0.04) 120px, rgba(139,94,60,0.04) 121px),
      repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(196,135,74,0.03) 40px, rgba(196,135,74,0.03) 41px);
  }
  .page-hero::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
    background: radial-gradient(ellipse at 80% 50%, rgba(139,94,60,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .breadcrumb {
    font-family: var(--body); font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(196,135,74,0.7); margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .breadcrumb a { color: inherit; text-decoration: none; transition: color .2s; }
  .breadcrumb a:hover { color: var(--caramelo); }
  .breadcrumb span { color: rgba(237,224,204,0.3); }
  .page-hero h1 {
    font-family: var(--heading); font-size: clamp(42px, 5vw, 72px);
    font-weight: 700; color: var(--arena); line-height: 1.1; margin-bottom: 20px;
    animation: fadeUp .8s ease both;
  }
  .page-hero h1 em { font-style: italic; color: var(--caramelo); }
  .page-hero p {
    font-size: 17px; font-weight: 300; color: var(--crema);
    max-width: 520px; line-height: 1.75; opacity: .85;
    animation: fadeUp .8s .15s ease both;
  }

  /* ══ SECTION WRAPPERS ══ */
  .section { padding: 0 80px; max-width: 1200px; margin: 0 auto; }

  .label-tag {
    font-family: var(--body); font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--caramelo);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  }
  .saw-icon {
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; width: 26px; height: 26px;
    animation: saw-spin 3s linear infinite; transform-origin: center;
  }
  .saw-icon svg { width: 100%; height: 100%; }
  @keyframes saw-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* ══ SERVICE ROW WRAPPERS (alternating bg) ══ */
  .service-row {
    padding: 0;
  }
  .service-row:nth-child(odd)  { background: var(--marfil); }
  .service-row:nth-child(even) { background: var(--crema); }

  /* The inner block */
  .service-block {
    padding: 80px 80px;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
    border-bottom: 1px solid rgba(139,94,60,0.1);
  }
  .service-row:last-of-type .service-block { border-bottom: none; }
  .service-block.visible { opacity: 1; transform: translateY(0); }
  .service-block.reverse { direction: rtl; }
  .service-block.reverse > * { direction: ltr; }

  /* Text */
  .service-number { font-family: var(--heading); font-size: 80px; font-weight: 700; color: rgba(139, 94, 60, 0.274); line-height: 1; margin-bottom: 8px; }
  .service-text h2 { font-family: var(--heading); font-size: clamp(28px, 3vw, 44px); font-weight: 700; color: var(--carbon); line-height: 1.15; margin-bottom: 20px; }
  .service-text h2 em { font-style: italic; color: var(--roble); }
  .service-text p { font-size: 15px; font-weight: 300; color: #6b5744; line-height: 1.8; margin-bottom: 16px; }

  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
  .feature-list li { display: flex; align-items: center; gap: 12px; font-family: var(--body); font-size: 13px; font-weight: 400; color: var(--carbon); }
  .feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--caramelo); flex-shrink: 0; }

  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .service-tag { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--caramelo); background: rgba(196,135,74,0.10); padding: 5px 12px; border-radius: 2px; border: 1px solid rgba(196,135,74,0.2); }

  .btn-service { display: inline-block; background: var(--caramelo); color: var(--marfil); font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; text-decoration: none; transition: background .25s, transform .2s; }
  .btn-service:hover { background: var(--roble); transform: translateY(-2px); }

  /* Photos */
  .service-photos { position: relative; }
  .photos-stack { position: relative; width: 100%; aspect-ratio: 4/3; }
  .photo-main { width: 100%; height: 100%; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 60px rgba(44,32,19,0.18); position: relative; background: linear-gradient(145deg, var(--arena) 0%, var(--crema) 100%); }
  .photo-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
  .photo-slide.active { opacity: 1; }
  .photo-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
  .photo-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(44,32,19,0.25) 100%); pointer-events: none; }

  .photo-thumbs { display: flex; gap: 8px; margin-top: 12px; }
  .thumb { width: 60px; height: 50px; border-radius: 3px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .25s, transform .2s; flex-shrink: 0; background: var(--crema); }
  .thumb:hover { transform: translateY(-2px); }
  .thumb.active { border-color: var(--caramelo); }
  .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

  .photo-dots { position: absolute; bottom: 16px; right: 16px; display: flex; gap: 6px; z-index: 2; }
  .p-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(250,246,240,0.4); cursor: pointer; transition: background .3s, transform .3s; }
  .p-dot.active { background: var(--caramelo); transform: scale(1.4); }

  .photo-badge { position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; background: var(--caramelo); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(196,135,74,0.4); z-index: 3; }
  .photo-badge .b-icon { color: white; }
  .photo-badge .b-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  /* ══ DARK TEXT on dark row override not needed ══ */

  /* ══ PROCESS BAND ══ */
  .process-band { background: var(--carbon); padding: 80px; }
  .process-inner { max-width: 1200px; margin: 0 auto; }
  .process-band .label-tag { color: var(--caramelo); }
  .process-band h2 { font-family: var(--heading); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--arena); line-height: 1.15; margin-bottom: 60px; }
  .process-band h2 em { font-style: italic; color: var(--caramelo); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .process-step { padding: 36px 28px; background: rgba(255,255,255,0.03); border: 1px solid rgba(242,224,200,0.07); position: relative; transition: background .3s; }
  .process-step:hover { background: rgba(196,135,74,0.07); }
  .process-step-num { font-family: var(--heading); font-size: 56px; font-weight: 700; color: rgba(196,135,74,0.15); line-height: 1; margin-bottom: 16px; }
  .process-step h3 { font-family: var(--heading); font-size: 18px; font-weight: 600; color: var(--arena); margin-bottom: 10px; }
  .process-step p { font-size: 13px; font-weight: 300; color: rgba(237,224,204,0.55); line-height: 1.7; }
  .process-step-icon { position: absolute; top: 28px; right: 28px; color: var(--caramelo); opacity: .5; }
  .process-step-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  /* ══ AREAS ══ */
  .areas-band { background: var(--arena); padding: 64px 80px; }
  .areas-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
  .areas-left h2 { font-family: var(--heading); font-size: 36px; font-weight: 700; color: var(--carbon); line-height: 1.2; margin-bottom: 12px; }
  .areas-left h2 em { font-style: italic; color: var(--roble); }
  .areas-left p { font-size: 14px; font-weight: 300; color: #7a6652; line-height: 1.7; }
  .areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
  .area-chip { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--carbon); background: white; padding: 10px 18px; border-radius: 2px; border-left: 3px solid var(--caramelo); box-shadow: 0 2px 8px rgba(139,94,60,0.08); transition: transform .2s, box-shadow .2s; }
  .area-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(139,94,60,0.12); }

  /* ══ CTA ══ */
  .cta-band { background: var(--roble); padding: 80px; text-align: center; position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(242,224,200,0.04) 20px, rgba(242,224,200,0.04) 21px); }
  .cta-band h2 { font-family: var(--heading); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--marfil); margin-bottom: 16px; position: relative; }
  .cta-band p { font-family: var(--body); font-size: 17px; font-weight: 300; color: var(--arena); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; position: relative; }
  .cta-band .btn-light { display: inline-block; background: var(--marfil); color: var(--roble); font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 44px; border-radius: 2px; text-decoration: none; position: relative; transition: background .25s, transform .2s; }
  .cta-band .btn-light:hover { background: var(--arena); transform: translateY(-2px); }

  /* ══ FOOTER ══ */
  footer { background: var(--carbon); padding: 60px 80px 32px; }
  .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(242,224,200,0.1); }
  .footer-brand .logo { font-family: var(--heading); font-size: 24px; font-weight: 700; color: var(--arena); margin-bottom: 16px; }
  .footer-brand .logo span { color: var(--caramelo); }
  .footer-brand p { font-size: 14px; font-weight: 300; color: rgba(237,224,204,0.55); line-height: 1.7; max-width: 260px; }
  .footer-phone { margin-top: 20px; font-family: var(--heading); font-size: 18px; color: var(--caramelo); text-decoration: none; display: block; }
  .footer-col h4 { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--caramelo); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; font-weight: 300; color: rgba(237,224,204,0.6); text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--caramelo); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(237,224,204,0.3); font-weight: 300; }
  .footer-rating { display:flex; align-items:center; gap:8px; }
  .footer-rating .stars { color: var(--caramelo); letter-spacing:2px; }
  .footer-social { display:flex; gap:12px; margin-top:24px; }
  .social-icon { width:40px; height:40px; border-radius:8px; border:1.5px solid rgba(242,224,200,0.2); background:transparent; display:flex; align-items:center; justify-content:center; text-decoration:none; transition: border-color .25s, background .25s, transform .2s; color: rgba(242,224,200,0.5); }
  .social-icon svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:1.6; }
  .social-icon:hover { border-color:var(--caramelo); background:rgba(196,135,74,0.1); color:var(--caramelo); transform:translateY(-2px); }
  .social-icon.yelp svg { fill:currentColor; stroke:none; }

  /* ══ BACK TO TOP ══ */
  .back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 200;
    width: 52px; height: 52px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s, visibility .35s, transform .35s;
    transform: translateY(12px);
    cursor: pointer;
  }
  .back-to-top.visible {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
  }
  .btt-svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
  .btt-track { fill: none; stroke: rgba(196,135,74,0.2); stroke-width: 2.5; }
  .btt-progress { fill: none; stroke: var(--caramelo); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 138; stroke-dashoffset: 138; transition: stroke-dashoffset .1s linear; }
  .btt-btn {
    position: absolute; inset: 6px;
    background: var(--carbon); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(44,32,19,0.35);
    transition: background .25s, transform .2s;
    border: none;
  }
  .back-to-top:hover .btt-btn { background: var(--caramelo); transform: scale(1.05); }
  .btt-btn svg { width: 16px; height: 16px; stroke: var(--arena); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
  .back-to-top:hover .btt-btn svg { stroke: var(--marfil); }

  /* ══ ANIMATIONS ══ */
  @keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 900px) {
    nav { padding:0 24px; }
    .nav-links { display:none; }
    .nav-burger { display:flex; }
    .page-hero { padding:120px 28px 60px; }
    .service-block { grid-template-columns:1fr; gap:36px; direction:ltr !important; padding: 48px 28px; }
    .service-number { font-size:56px; }
    .process-band { padding:60px 28px; }
    .process-steps { grid-template-columns:1fr 1fr; }
    .areas-band { padding:48px 28px; }
    .areas-inner { grid-template-columns:1fr; gap:32px; }
    .cta-band { padding:60px 28px; }
    footer { padding:48px 28px 24px; }
    .footer-grid { grid-template-columns:1fr; gap:36px; }
    .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
    .photo-badge { display:none; }
    .back-to-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
  }
  @media (max-width: 600px) { .process-steps { grid-template-columns:1fr; } }


/* TV-friendly scaling */
@media (min-width: 1600px) {
  .page-hero { padding-top: 160px; padding-left: 90px; padding-right: 90px; }
  .page-hero h1 { font-size: clamp(56px, 4.8vw, 92px); }
  .page-hero p { font-size: 19px; max-width: 680px; }
}
@media (min-width: 2200px) {
  .page-hero { padding-top: 180px; }
}


@media (max-width: 900px) {
  nav { padding: 0 18px; }
}


/* Refined mobile drawer styling */
@media (max-width: 900px) {
  .nav-mobile {
    left: 12px; right: 12px; top: 82px; padding: 16px !important; border-radius: 18px;
    background: rgba(32, 23, 15, 0.98) !important; border: 1px solid rgba(196,135,74,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
  }
  .nav-mobile .nav-mobile-links, .nav-mobile ul { gap: 8px; }
  .nav-mobile li { list-style:none; }
  .nav-mobile a {
    display:flex; align-items:center; justify-content:space-between; width:100%;
    padding: 14px 16px !important; border-radius: 12px; border-bottom: none !important;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(242,224,200,0.06);
  }
  .nav-mobile .sub-menu { padding-left: 14px; margin-top: 8px; gap: 8px; }
  .nav-mobile .sub-menu a, .nav-mobile a.sub {
    font-size: 11px !important; letter-spacing: 1.2px !important; color: rgba(237,224,204,.74) !important;
    padding: 11px 14px !important;
  }
  .nav-mobile a.cta-mobile, .nav-mobile a.nav-cta {
    background: var(--caramelo) !important; color: var(--marfil) !important; justify-content: center;
  }
}
