  :root {
    --ivory: #f9f5ef;
    --warm-white: #fdf9f4;
    --ebony: #1a1410;
    --brown: #5c3d2e;
    --gold: #b8960c;
    --gold-light: #d4b44a;
    --gray: #6b6560;
    --gray-light: #e8e2d9;
    --border: #d6cec3;

    --dark-grey: #2A2B2F;
    --red: #B6000F;
    --light-blue: #CFD6DA;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--warm-white);
    color: var(--ebony);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    background: var(--red);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 24px;
    background-image: url('/media/yiujb4y0/logobg.gif');
    background-repeat: repeat-x;
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 93px;
  }

  /*.nav-brand {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
  }*/

  .nav-brand {
    margin-top: 8px;
  }

  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 18px;
    display: block;
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:hover {
    color: var(--warm-white);
    background: rgba(255,255,255,0.2);
  }

  /* Hamburger */
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 12px 0 20px;
  }

  .mobile-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 12px 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  .mobile-menu a:hover {
    color: var(--warm-white);
    background: rgba(255,255,255,0.2);
  }

  .mobile-menu.open { display: flex; }

  /* HERO */
  .hero {
    background: var(--ebony);
    color: white;
    /* padding: 0px 24px 0px; */
    text-align: center;
    position: relative;
    min-height: 400px;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 30% 50%, rgba(184,150,12,0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 50%, rgba(92,61,46,0.15) 0%, transparent 60%);
  }

  .hero-inner {
    position: relative;
    max-width: 1100px;
    height: 400px;
    margin: 0 auto;
  }

  .slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    letter-spacing: -2px;
  }

  .slide.active {
    opacity: 1;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Slideshow Navigation Dots */
  .slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }

  .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
  }

  .dot.active {
    background: rgba(255, 255, 255, 0.9);
  }

  /* Slideshow Pfeile */
  .slide-prev,
  .slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.25);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
    line-height: 1;
    transition: background 0.2s;
  }

  .slide-prev { left: 1rem; }
  .slide-next { right: 1rem; }
  .slide-prev:hover,
  .slide-next:hover { background: rgba(0,0,0,0.5); }

  .welcome {
    position: absolute;
    width: 100%;
    margin: 48px 0px;
  }  

  .hero-eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); 
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    /*font-family: 'Lato', sans-serif;*/
    font-size: clamp(3.2rem, 6vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.9);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
    margin-bottom: 36px;
  }

  .hero-cta {
    display: inline-block;
    background: var(--light-blue);
    color: var(--ebony);
    text-decoration: none;
    padding: 14px 32px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
  }

  .hero-cta:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-1px);
  }

  /* SECTION SHARED */
  section {
    padding: 70px 24px;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.2;
  }

  .divider {
    width: 48px;
    height: 2px;
    background: var(--red);
    margin-bottom: 32px;
  }

  .divider2 {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
  }  

  /* INTRO */
  .intro {
    background: var(--warm-white);
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .intro-text p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .intro-text p:last-child { margin-bottom: 0; }

  .intro-contact {
    background: var(--ebony);
    color: white;
    padding: 36px;
    border-radius: 2px;
  }

  .intro-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--gold-light);
  }

  .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    align-items: flex-start;
  }

  .contact-icon {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .contact-item a {
    color: var(--gold-light);
    text-decoration: none;
  }

  .contact-item a:hover { text-decoration: underline; }

  .contact-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 20px 0;
  }

  .hours-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  /* SERVICES */
  .services {
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
    margin-top: 8px;
  }

  .service-card {
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .service-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(184,150,12,0.1);
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .service-icon img {
    width: 100%;
    height: auto;
  }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.65;
  }

  /* BRANDS */
  .brands {
    background: var(--warm-white);
  }

  .brands-text {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 600px;
  }

  .brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand-pill {
    background: white;
    border: 1px solid var(--border);
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--brown);
    letter-spacing: 0.05em;
    transition: background 0.2s, border-color 0.2s;
  }

  .brand-pill:hover {
    background: var(--red);
    color: var(--warm-white);
    border-color: var(--ebony);
  }

  /* QUALITY */
  .quality {
    background: var(--ebony);
    color: white;
  }

  .quality .section-title { color: white; }

  .quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 8px;
  }

  .quality-item {
    border-left: 2px solid var(--light-blue);
    padding-left: 20px;
  }

  .quality-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-blue);
    margin-bottom: 8px;
  }

  .quality-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
  }

  /* FOOTER */
  footer {
    background: #0e0b08;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 28px 24px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 10px;
  }

  footer a:hover { color: var(--gold-light); }

  .footer-links {
    margin-top: 10px;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }

    .intro-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    section { padding: 50px 20px; }

    .hero { /* padding: 60px 20px 50px; */ }
  }

  @media (max-width: 480px) {
    .intro-contact { padding: 24px 20px; }
    .service-card { padding: 24px 20px; }
  }

  /* Cookie Consent */

.termsfeed-com---nb-simple {
    box-shadow: 8px 8px 8px 8px #666666;
    top: 15% !important;
    left: 25% !important;
    bottom: unset !important;
    border: 2px solid #B6000F !important;
    background-color: white !important;
}

.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-nb-reject,
.termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: #B6000F !important;
}