    :root {
      --primary:       #2C1810;   /* deep espresso */
      --secondary:     #8B4513;   /* saddle brown */
      --accent:        #D4882A;   /* warm amber */
      --accent-light:  #F0C060;   /* golden yellow */
      --bg:            #FAF6F0;   /* warm cream */
      --bg-alt:        #F2EBE0;   /* slightly darker cream */
      --text:          #1A0E08;   /* near-black warm */
      --text-muted:    #7A5C44;   /* warm taupe */
      --white:         #FFFFFF;
      --border:        #E8D8C4;
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    body {
      font-family: 'Lato', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
    }
 
    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 4rem;
      background: rgba(44,24,16,0.96);
      backdrop-filter: blur(6px);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 900;
      color: var(--accent-light);
      letter-spacing: 0.03em;
    }
    .nav-logo span { color: var(--white); }
    nav ul { list-style: none; display: flex; gap: 2rem; }
    nav ul a {
      color: #ccc; text-decoration: none;
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      transition: color .2s;
    }
    .nav-logo img {
      width: 250px;
      height: auto;
    }
    nav ul a:hover { color: var(--accent-light); }
    .nav-cta {
      background: var(--accent); color: var(--white) !important;
      padding: 0.45rem 1.1rem; border-radius: 4px;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--accent-light) !important; color: var(--primary) !important; }
 
    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--primary);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 8rem 4rem 4rem;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover;
      opacity: 0.18;
    }
    .hero-inner {
      position: relative; z-index: 1;
      max-width: 680px;
    }
    .hero-badge {
      display: inline-block;
      background: var(--accent); color: var(--white);
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 0.3rem 0.85rem;
      border-radius: 2px; margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900; line-height: 1.1;
      color: var(--white); margin-bottom: 1.5rem;
    }
    .hero h1 em { color: var(--accent-light); font-style: normal; }
    .hero p {
      color: #ccc; font-size: 1.1rem;
      max-width: 480px; margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--accent); color: var(--white);
      padding: 0.9rem 2.2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.95rem;
      text-decoration: none; transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--accent-light); color: var(--primary); transform: translateY(-2px); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.4); color: var(--white);
      padding: 0.9rem 2.2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.95rem;
      text-decoration: none; transition: border-color .2s, background .2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--accent-light); background: rgba(212,136,42,0.15); }
    .hero-stat {
      position: absolute; right: 6rem; bottom: 4rem; z-index: 1;
      text-align: right;
    }
    .hero-stat .number {
      font-family: 'Playfair Display', serif;
      font-size: 4rem; font-weight: 900; color: var(--accent);
      line-height: 1;
    }
    .hero-stat .label { color: #aaa; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
 
    /* ── ABOUT ── */
    .about {
      padding: 6rem 4rem;
      background: var(--bg);
    }
    .about-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 60fr 40fr;
      gap: 4rem; align-items: center;
    }
    .about-text .section-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.7rem;
    }
    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; line-height: 1.25;
      color: var(--primary); margin-bottom: 1.2rem;
    }
    .about-text p { color: var(--text-muted); margin-bottom: 1rem; }
    .about-text .highlight {
      border-left: 3px solid var(--accent);
      padding-left: 1rem; margin: 1.5rem 0;
      font-size: 1.05rem; color: var(--primary); font-weight: 400;
      font-style: italic; font-family: 'Playfair Display', serif;
    }
    .about-img {
      position: relative;
    }
    .about-img img {
      width: 100%; border-radius: 8px;
      object-fit: cover; aspect-ratio: 4/5;
      display: block;
    }
    .about-img::after {
      content: '';
      position: absolute; bottom: -1rem; right: -1rem;
      width: 70%; height: 70%;
      border: 3px solid var(--accent);
      border-radius: 8px; z-index: -1;
    }
 
    /* ── SERVICES ── */
    .services {
      padding: 6rem 4rem;
      background: var(--bg-alt);
    }
    .services-inner { max-width: 1100px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .section-header .section-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.5rem; display: block;
    }
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; color: var(--primary);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: var(--white);
      border-radius: 8px; padding: 2rem;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(44,24,16,0.1);
    }
    .service-icon {
      font-size: 2rem; margin-bottom: 1rem;
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .service-card p { font-size: 0.9rem; color: var(--text-muted); }
 
    /* ── CALLOUT ── */
    .callout {
      padding: 5rem 4rem;
      background: var(--secondary);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .callout::before {
      content: '🔑';
      position: absolute; font-size: 18rem;
      opacity: 0.04; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
    }
    .callout-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .callout h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--white); margin-bottom: 1rem;
    }
    .callout p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }
    .callout .phone {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; font-weight: 700;
      color: var(--accent-light); display: block; margin-bottom: 1.5rem;
      text-decoration: none;
    }
    .callout .phone:hover { color: var(--white); }
 
    /* ── FOOTER ── */
    footer {
      background: var(--primary);
      padding: 3rem 4rem;
      display: flex; flex-wrap: wrap;
      justify-content: space-between; align-items: flex-start;
      gap: 2rem;
    }
    .footer-brand .nav-logo { font-size: 1.3rem; }
    .footer-brand p { color: #888; font-size: 0.85rem; margin-top: 0.5rem; max-width: 220px; }
    .footer-links h4 {
      color: var(--accent-light); font-size: 0.75rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 0.8rem;
    }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 0.4rem; }
    .footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: color .2s; }
    .footer-links a:hover { color: var(--accent-light); }
    .footer-bottom {
      width: 100%;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      color: #666; font-size: 0.8rem;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
    }
 
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      nav ul { display: none; }
      .hero { padding: 7rem 1.5rem 3rem; }
      .hero-stat { display: none; }
      .about, .services, .callout, footer { padding: 4rem 1.5rem; }
      .about-grid { grid-template-columns: 1fr; }
      .about-img { order: -1; }
    }
    
    #cookie-manage,
#cookie-reject {
    background-color: transparent;
    color: #020202;
}
#cookie-banner,
#cookie-preferences {
    width: 100%;
    box-sizing: border-box;
    left: 0;
}
#cookie-banner,
#cookie-icon,
#cookie-preferences {
    display: none;
    position: fixed;
}
#cookie-icon,
#cookie-banner{
  background-color: #f0f0f0;
}

#cookie-prefs-save {
    background-color: #28a745;
}
#cookie-banner {
    bottom: 0;
    color: #ffffff;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}
#cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}
#cookie-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    color: #000000;
}
#cookie-text a {
    color: #000000;
    text-decoration: underline;
}
#cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
#cookie-manage {
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
#cookie-accept,
#cookie-reject {
    padding: 8px 20px;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
#cookie-reject {
    border: 2px solid #000000;
    border-radius: 5px;
    font-weight: 700;
}
#cookie-accept,
.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #de2f1b;
}
#cookie-accept,
#cookie-prefs-save {
    color: #f0f0f0;
    border: none;
    font-weight: 700;
}
#cookie-accept {
    border-radius: 5px;
}
#cookie-manage:hover,
#cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
#cookie-accept:hover {
    background-color: #c02818;
}
#cookie-preferences {
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
#cookie-prefs-inner {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    color: #333;
}
#cookie-prefs-title {
    margin: 0 0 20px;
    font-size: 1.1rem;
    color: #000000;
}
#cookie-prefs-cancel,
#cookie-prefs-save {
    padding: 8px 20px;
    font-family: Arial, sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
}
.cookie-pref-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.cookie-pref-info strong {
    display: block;
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 4px;
}
.cookie-pref-info p {
    font-size: 0.8rem;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}
.cookie-always-on {
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 700;
    white-space: nowrap;
    padding-top: 2px;
    flex-shrink: 0;
}
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}
.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}
#cookie-prefs-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
#cookie-prefs-cancel {
    background: 0 0;
    border: 1px solid #000000;
    border-radius: 5px;
}
#cookie-prefs-save {
    border-radius: 5px;
}
#cookie-prefs-cancel:hover {
    background-color: #f5f5f5;
}
#cookie-icon:hover,
#cookie-prefs-save:hover {
    background-color: #28a745;
}
#cookie-icon {
    bottom: 80px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
    #cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    #cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
