
    /* ══════════════════════════════════════
       DESIGN SYSTEM
    ══════════════════════════════════════ */
    :root {
      --black:      #0a0a09;
      --black-soft: #121210;
      --black-card: #181816;
      --sage:       #74852F;
      --sage-light: #8fa038;
      --sand:       #c8c2b8;
      --sand-light: #f2ede6;
      --white:      #faf9f7;
      --muted:      #6b6860;
      --border:     rgba(255,255,255,0.08);
      --radius:     10px;
      --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--black);
      color: var(--sand);
      line-height: 1.75;
      font-weight: 300;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.15;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    .container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 14px;
    }

    .btn {
      display: inline-block;
      padding: 13px 34px;
      border-radius: 999px;
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      transition: all 0.28s var(--ease);
      cursor: pointer;
      border: none;
    }
    .btn-sage   { background: var(--sage); color: var(--white); }
    .btn-sage:hover { background: var(--sage-light); }
    .btn-ghost  { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
    .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
    .btn-light  { background: var(--white); color: var(--black); }
    .btn-light:hover { background: var(--sand-light); }

    /* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(10,10,9,0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 28px;
      height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .logo span { color: var(--sage); }

    nav { display: flex; gap: 36px; align-items: center; }
    nav a {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    nav a:hover { color: var(--white); }
    nav a.nav-cta {
      color: var(--sage);
      border: 1px solid var(--sage);
      padding: 7px 18px;
      border-radius: 999px;
    }
    nav a.nav-cta:hover { background: var(--sage); color: var(--white); }

    .menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--white);
      cursor: pointer;
      padding: 4px;
    }

    @media (max-width: 720px) {
      .menu-btn { display: block; }
      nav {
        display: none;
        position: fixed;
        top: 62px; left: 0; right: 0;
        background: var(--black-soft);
        flex-direction: column;
        padding: 28px;
        gap: 22px;
        border-bottom: 1px solid var(--border);
      }
      nav.open { display: flex; }
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding-bottom: 90px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: 
     url('/images/FIREPLACE_RED_bmBASKET_IMPROVED.png') center/cover no-repeat;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(10,10,9,0.95) 20%,
        rgba(10,10,9,0.55) 70%,
        rgba(10,10,9,0.2) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px;
      padding: 7px 18px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 28px;
      backdrop-filter: blur(6px);
    }
    .pill-stars { color: #e8c94a; letter-spacing: 1px; }

    .hero h1 {
      font-size: clamp(3rem, 7.5vw, 5.5rem);
      color: var(--white);
      margin-bottom: 22px;
      font-weight: 600;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--sand);
      font-weight: 400;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      max-width: 500px;
      margin-bottom: 38px;
      font-weight: 300;
    }

    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* ══════════════════════════════════════
       WELCOME
    ══════════════════════════════════════ */
    .welcome {
      padding: 110px 0;
      background: var(--black-soft);
    }

    .welcome-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    @media (max-width: 720px) { .welcome-grid { grid-template-columns: 1fr; gap: 40px; } }

    .welcome-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .welcome h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
      margin-bottom: 22px;
    }

    .welcome p {
      color: var(--sand);
      margin-bottom: 16px;
      font-size: 0.97rem;
    }

    /* ══════════════════════════════════════
       ABOUT
    ══════════════════════════════════════ */
    .about {
      padding: 110px 0;
      background: var(--black);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    @media (max-width: 720px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-visual { order: -1; }
    }

    .about h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
      margin-bottom: 22px;
    }
    .about p { color: var(--sand); margin-bottom: 16px; font-size: 0.97rem; }

    .about-visual { position: relative; padding-bottom: 32px; }

    .about-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .about-tag {
      position: absolute;
      bottom: 0; left: -16px;
      background: var(--sage);
      color: var(--white);
      border-radius: var(--radius);
      padding: 20px 26px;
      font-family: 'Cormorant Garamond', serif;
    }
    .about-tag strong { display: block; font-size: 2.6rem; line-height: 1; }
    .about-tag span { font-size: 0.8rem; opacity: 0.85; font-family: 'Jost', sans-serif; }

    .stats {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 14px;
      margin-top: 36px;
    }
    .stat {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
    }
    .stat strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.1rem;
      color: var(--sage);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat span { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }

    /* ══════════════════════════════════════
       GALLERY
    ══════════════════════════════════════ */
    .gallery {
      padding: 110px 0;
      background: var(--black-soft);
    }

    .gallery-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .gallery h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
    }

    .gallery-track {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding-bottom: 4px;
    }
    .gallery-track::-webkit-scrollbar { display: none; }

    .gallery-track img {
      flex: 0 0 300px;
      height: 240px;
      object-fit: cover;
      border-radius: var(--radius);
      scroll-snap-align: start;
      cursor: pointer;
      transition: opacity 0.25s, transform 0.25s;
      border: 1px solid var(--border);
    }
    .gallery-track img:hover { opacity: 0.8; transform: scale(0.98); }

    .gallery-controls {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .arr {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.22s;
      display: flex; align-items: center; justify-content: center;
    }
    .arr:hover { background: var(--sage); border-color: var(--sage); }

    /* Modal */
    .modal {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.93);
      z-index: 300;
      align-items: center;
      justify-content: center;
    }
    .modal.open { display: flex; }
    .modal img { max-height: 90vh; max-width: 90vw; border-radius: 8px; }
    .modal-x {
      position: absolute; top: 22px; right: 30px;
      color: rgba(255,255,255,0.5); font-size: 2rem;
      background: none; border: none; cursor: pointer;
      transition: color 0.2s;
    }
    .modal-x:hover { color: var(--white); }

    /* ══════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════ */
    .testimonials {
      padding: 110px 0;
      background: var(--black);
    }

    .testimonials h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
      margin-bottom: 8px;
    }
    .testi-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 48px; }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .testi-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: border-color 0.25s, transform 0.25s;
    }
    .testi-card:hover {
      border-color: rgba(116,133,47,0.35);
      transform: translateY(-4px);
    }

    .testi-stars { color: #e8c94a; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-quote { font-size: 0.93rem; color: var(--sand); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
    .testi-meta {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex; align-items: center; gap: 8px;
    }
    .testi-logo { height: 14px; object-fit: contain; opacity: 0.5; }

    /* ══════════════════════════════════════
       SERVICES
    ══════════════════════════════════════ */
    .services {
      padding: 110px 0;
      background: var(--black-soft);
      border-top: 1px solid var(--border);
    }

    .services-head { margin-bottom: 52px; }
    .services h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .svc {
      background: var(--black-card);
      padding: 32px 26px;
      transition: background 0.25s;
    }
    .svc:hover { background: #1e1e1b; }

    .svc-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.8rem;
      color: var(--sage);
      letter-spacing: 0.1em;
      margin-bottom: 16px;
      display: block;
    }

    .svc h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .svc p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
       BLOG
    ══════════════════════════════════════ */
    .blog {
      padding: 110px 0;
      background: var(--black);
    }

    .blog-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .blog h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 22px;
    }

    .blog-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
      display: block;
    }
    .blog-card:hover {
      border-color: rgba(116,133,47,0.35);
      transform: translateY(-5px);
    }

    .blog-card img { width: 100%; height: 190px; object-fit: cover; }

    .blog-body { padding: 22px; }
    .blog-tag {
      display: inline-block;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage);
      border: 1px solid rgba(116,133,47,0.35);
      border-radius: 999px;
      padding: 3px 10px;
      margin-bottom: 12px;
    }
    .blog-card h3 {
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 8px;
      font-weight: 500;
    }
    .blog-card p { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
    .blog-read {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage);
    }

    /* ══════════════════════════════════════
       COVERAGE
    ══════════════════════════════════════ */
    .coverage {
      padding: 110px 0;
      background: var(--black-soft);
      border-top: 1px solid var(--border);
    }

    .coverage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }
    @media (max-width: 720px) { .coverage-grid { grid-template-columns: 1fr; gap: 40px; } }

    .coverage h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
      margin-bottom: 18px;
    }
    .coverage > .container > .coverage-grid > div > p {
      color: var(--sand); margin-bottom: 28px; font-size: 0.97rem;
    }

    .badges { display: flex; flex-direction: column; gap: 10px; }
    .badge {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 13px 18px;
      font-size: 0.85rem;
      color: var(--sand);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }

    .locs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .loc {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 10px 14px;
      font-size: 0.8rem;
      color: var(--sand);
      border-left: 2px solid var(--sage);
      transition: background 0.2s;
    }
    .loc:hover { background: #1a1a18; }
    .loc-all {
      grid-column: span 2;
      background: var(--sage);
      border: none;
      border-left: none;
      color: var(--white);
      text-align: center;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
    .loc-all:hover { background: var(--sage-light); }

    /* ══════════════════════════════════════
       CONTACT
    ══════════════════════════════════════ */
    .contact {
      padding: 120px 0;
      background: var(--black);
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .contact h2 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      color: var(--white);
      margin-bottom: 16px;
    }
    .contact-sub {
      color: var(--muted);
      font-size: 0.97rem;
      margin-bottom: 40px;
    }

    .contact-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .socials a { opacity: 0.4; transition: opacity 0.22s; }
    .socials a:hover { opacity: 1; }
    .socials img { height: 28px; width: auto; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: #060605;
      padding: 24px 28px;
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.2);
      border-top: 1px solid var(--border);
    }
    footer a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
    footer a:hover { color: var(--white); }

    /* ══════════════════════════════════════
       AI CHAT
    ══════════════════════════════════════ */
    #openAI {
      position: fixed;
      bottom: 24px; right: 24px;
      background: var(--sage);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 11px 22px;
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      cursor: pointer;
      z-index: 150;
      box-shadow: 0 4px 24px rgba(116,133,47,0.35);
      transition: background 0.22s;
    }
    #openAI:hover { background: var(--sage-light); }

   #chatbox{
 display:none;
 position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:95%;
 max-width:900px;
  height:85vh;
  max-height:700px;
  flex-direction:column;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  pointer-events:auto;
  z-index:2000;
  transition:all .25s ease;
  backdrop-filter: blur(8px);
}

    #chatbox.open { display: flex; }

    #chat-header {
      background: var(--black);
      border-bottom: 1px solid var(--border);
      color: var(--white);
      padding: 14px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
    }
    #closeChat {
      background: none; border: none;
      color: var(--muted); cursor: pointer;
      font-size: 1rem; transition: color 0.2s;
    }
    #closeChat:hover { color: var(--white); }

    #chatbox iframe{
 flex:1;
  width:100%;
  height:100%;
  border:none;
  display:block;
  
}

    #chat-wrapper{
  position:fixed;
  pointer-events:auto;
  z-index:1000;
}
    
@media (max-width:1020px){
#chatbox{
 right:10px;
 left:10px;
 width:auto;
 top:auto;
 bottom:20px;
 transform:none;
 height:70dvh;
 max-height:none;
 border-radius:10px;


}}
  