:root {
  --primary:        #212529;   /* charcoal grey */
  --secondary:      #495057;   /* light graphite */
  --accent:         #D9480F;   /* bright copper orange */
  --accent-light:   #F76707;   /* warm spark orange */
  --bg:             #FCFBFA;   /* warm white */
  --bg-alt:         #F1F0EE;   /* soft sand */
  --text:           #212529;   /* dark charcoal */
  --text-muted:     #868E96;   /* stone grey */
  --white:          #FFFFFF;
  --border:         #E9ECEF;
}
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', 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: var(--primary);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--white); letter-spacing: 0.02em;
    }
    .nav-logo span { color: var(--accent); }
    nav ul { list-style: none; display: flex; gap: 2rem; }
    nav ul a {
      color: rgba(255,255,255,0.7); text-decoration: none;
      font-size: 0.83rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      transition: color .2s;
    }
    .nav-logo img {
        width: 40%;
        height: auto;
    }
    nav ul a:hover { color: var(--accent-light); }
    .nav-cta {
      background: var(--accent) !important; color: var(--primary) !important;
      padding: 0.45rem 1.2rem; border-radius: 3px;
      font-weight: 700 !important; transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--accent-light) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--primary);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      padding-top: 68px;
      overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 5rem 3rem 5rem 4rem;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--accent); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-badge::before { content: ''; display: block; width: 28px; height: 2px; background: var(--accent); }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      font-weight: 700; line-height: 1.1;
      color: var(--white); margin-bottom: 1.5rem;
    }
    .hero h1 em { color: var(--accent); font-style: normal; }
    .hero-left p {
      color: rgba(255,255,255,0.65); font-size: 1.05rem;
      max-width: 420px; margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--accent); color: var(--primary);
      padding: 0.85rem 2rem; border-radius: 3px;
      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); transform: translateY(-2px); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.3); color: var(--white);
      padding: 0.85rem 2rem; border-radius: 3px;
      font-weight: 700; font-size: 0.95rem;
      text-decoration: none; transition: border-color .2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--accent); }

    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-right img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.65;
    }
    .hero-right::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--primary) 0%, transparent 40%);
    }
    .hero-numbers {
      position: absolute; bottom: 2.5rem; left: 2rem; z-index: 2;
      display: flex; gap: 2rem;
    }
    .hero-num { text-align: center; }
    .hero-num .val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; font-weight: 700;
      color: var(--accent); line-height: 1;
    }
    .hero-num .lbl { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }

    /* ── 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;
    }
    .section-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.7rem; display: block;
    }
    .about-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      font-weight: 700; color: var(--primary);
      line-height: 1.25; margin-bottom: 1.2rem;
    }
    .about-text p { color: var(--text-muted); margin-bottom: 1rem; }
    .about-features {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.8rem; margin: 1.5rem 0 2rem;
    }
    .feature-item {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.9rem; font-weight: 600; color: var(--primary);
    }
    .feature-item::before { content: '✓'; color: var(--accent); font-weight: 700; }
    .about-img {
      position: relative;
    }
    .about-img img {
      width: 100%; border-radius: 6px;
      object-fit: cover; aspect-ratio: 4/5; display: block;
    }
    .about-img .badge {
      position: absolute; top: -1rem; right: -1rem;
      background: var(--accent); color: var(--primary);
      padding: 1rem; border-radius: 6px;
      text-align: center; font-weight: 700;
    }
    .about-img .badge strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; display: block; line-height: 1; }
    .about-img .badge span { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

    /* ── 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 h2 {
      font-family: 'Cormorant Garamond', 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(250px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: var(--white);
      border-radius: 6px; padding: 2rem;
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent);
      transition: transform .2s, box-shadow .2s;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(27,42,59,0.1);
    }
    .service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; color: var(--primary);
      margin-bottom: 0.5rem; font-weight: 700;
    }
    .service-card p { font-size: 0.9rem; color: var(--text-muted); }

    /* ── CALLOUT ── */
    .callout {
      padding: 5rem 4rem;
      background: var(--accent);
      text-align: center;
    }
    .callout-inner { max-width: 640px; margin: 0 auto; }
    .callout h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--primary); margin-bottom: 1rem; font-weight: 700;
    }
    .callout p { color: rgba(20,30,40,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
    .callout .phone {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
      color: var(--primary); display: block; margin-bottom: 1.5rem;
      text-decoration: none; line-height: 1;
    }
    .btn-dark {
      background: var(--primary); color: var(--white);
      padding: 0.9rem 2.2rem; border-radius: 3px;
      font-weight: 700; font-size: 0.95rem;
      text-decoration: none; transition: background .2s;
      display: inline-block;
    }
    .btn-dark:hover { background: var(--secondary); }

    /* ── 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.4rem; }
    .footer-brand p { color: #7a95a8; font-size: 0.85rem; margin-top: 0.5rem; max-width: 220px; }
    .footer-links h4 {
      color: var(--accent); 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: #7a95a8; 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.07);
      padding-top: 1.5rem;
      color: #4a6070; 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 { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 5rem 1.5rem 3rem; }
      .hero-right { height: 260px; }
      .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;
        }
    }