:root{
    --forest:#38543a;
    --forest-deep:#2a3f2c;
    --moss:#5c7a4e;
    --sage:#96ab79;
    --sage-light:#c4d1ac;
    --cream:#fbf9f3;
    --paper:#f4f1e8;
    --ink:#2a3a26;
    --ink-soft:#5b6a55;
    --line:#dcd6c4;
    --max:1120px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Jost',sans-serif;
    color:var(--ink);
    background:var(--cream);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  h1,h2,h3{font-family:'Lora',serif;font-weight:600;color:var(--forest-deep);}
  .wrap{max-width:var(--max);margin:0 auto;padding:0 28px;}
  .eyebrow{
    font-family:'Jost',sans-serif;
    letter-spacing:.22em;
    text-transform:uppercase;
    font-size:.78rem;
    font-weight:600;
    color:var(--moss);
  }
  section{position:relative;}
  .visually-hidden{position:absolute;left:-9999px;}

  /* focus visibility */
  a:focus-visible, button:focus-visible{
    outline:2px solid var(--forest);
    outline-offset:3px;
    border-radius:4px;
  }

  /* ---------- Header ---------- */
  header{
    position:sticky;top:0;z-index:50;
    background:rgba(251,249,243,.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 28px;max-width:var(--max);margin:0 auto;
  }
  .brand{display:flex;align-items:center;gap:10px;}
  .brand img{height:42px;width:auto;}
  .brand span{font-family:'Lora',serif;font-weight:600;color:var(--forest-deep);font-size:1.02rem;line-height:1.1;}
  .brand small{display:block;font-family:'Jost',sans-serif;font-size:.62rem;letter-spacing:.14em;color:var(--moss);text-transform:uppercase;}
  .nav ul{display:flex;gap:22px;list-style:none;}
  .nav ul a{font-size:.9rem;color:var(--ink);position:relative;}
  .nav ul a:hover{color:var(--forest);}
  .nav-cta{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--forest);color:#fff;
    padding:10px 20px;border-radius:30px;font-size:.88rem;font-weight:500;
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--forest-deep);}
  .nav-right{display:flex;align-items:center;gap:10px;}

  .menu-toggle{
    display:none;background:none;border:1px solid var(--line);cursor:pointer;
    width:42px;height:42px;border-radius:10px;
    align-items:center;justify-content:center;flex-shrink:0;
  }
  .menu-toggle span{
    position:relative;width:18px;height:2px;background:var(--forest-deep);
    display:block;
  }
  .menu-toggle span::before,.menu-toggle span::after{
    content:"";position:absolute;left:0;width:18px;height:2px;background:var(--forest-deep);
    transition:transform .2s ease,opacity .2s ease;
  }
  .menu-toggle span::before{top:-6px;}
  .menu-toggle span::after{top:6px;}
  .menu-toggle[aria-expanded="true"] span{background:transparent;}
  .menu-toggle[aria-expanded="true"] span::before{top:0;transform:rotate(45deg);}
  .menu-toggle[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg);}

  /* Mobile dropdown panel */
  .mobile-panel{
    display:flex;
    flex-direction:column;
    background:var(--cream);
    border-bottom:1px solid var(--line);
    overflow:hidden;
    max-height:0;
    transition:max-height .25s ease;
  }
  .mobile-panel.open{max-height:480px;}
  .mobile-panel ul{list-style:none;display:flex;flex-direction:column;}
  .mobile-panel ul a{
    display:block;padding:16px 28px;font-size:1rem;color:var(--ink);
    border-bottom:1px solid var(--line);
  }
  .mobile-panel ul a:hover{background:var(--paper);color:var(--forest);}
  .mobile-panel .mobile-cta{padding:18px 28px 22px;}
  .mobile-panel .mobile-cta a{
    display:flex;align-items:center;justify-content:center;gap:8px;
    background:var(--forest);color:#fff;padding:13px 20px;border-radius:30px;
    font-weight:500;font-size:.95rem;
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative;overflow:hidden;
    min-height:clamp(520px,82vh,720px);
    display:flex;align-items:center;
    padding:140px 0 70px;
  }

  .hero-media{
    position:absolute;top:-80px;left:0;right:0;bottom:-80px;z-index:0;
    background:url('../img/hero.webp') center/cover no-repeat;
    will-change:transform;
  }
  .hero-placeholder{
    position:absolute;inset:0;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;
    border:2px dashed rgba(255,255,255,.35);margin:18px;border-radius:18px;
  }
  .hero-placeholder svg{width:54px;height:54px;opacity:.6;}
  .hero-placeholder span{
    color:rgba(255,255,255,.75);font-size:.95rem;text-align:center;max-width:280px;
    padding:0 16px;
  }
  .hero-overlay{
    position:absolute;inset:0;z-index:1;
    background:linear-gradient(180deg, rgba(20,28,17,.35) 0%, rgba(18,26,15,.78) 100%);
  }
  .hero-arc{
    position:absolute;right:-180px;top:-160px;width:680px;height:680px;
    opacity:.18;pointer-events:none;z-index:1;
  }
  @media (prefers-reduced-motion: no-preference){
    .hero-arc{animation:drift 26s ease-in-out infinite;}
  }
  @keyframes drift{
    0%,100%{transform:rotate(0deg) translateY(0);}
    50%{transform:rotate(3deg) translateY(-10px);}
  }
  .hero-content{
    position:relative;z-index:2;max-width:640px;
  }
  .hero h1{
    font-size:clamp(2.1rem,4.2vw,3.2rem);
    line-height:1.15;
    margin:14px 0 18px;
  }
  .hero-title-light{color:#fff;}
  .hero-title-light em{font-style:italic;color:var(--sage-light);}
  .eyebrow-light{color:var(--sage-light);}
  .hero p.lead{
    font-size:1.08rem;color:#fff;max-width:520px;margin-bottom:30px;
  }
  .lead-light{color:rgba(255,255,255,.85);}
  .hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}
  .btn{
    display:inline-flex;align-items:center;gap:8px;
    padding:14px 26px;border-radius:30px;font-weight:500;font-size:.95rem;
    transition:transform .15s ease,background .15s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-primary{background:var(--forest);color:#fff;}
  .btn-primary:hover{background:var(--forest-deep);}
  .btn-ghost{border:1.5px solid var(--moss);color:var(--forest-deep);}
  .btn-ghost:hover{background:var(--paper);}
  .btn-ghost-light{border:1.5px solid rgba(255,255,255,.6);color:#fff;}
  .btn-ghost-light:hover{background:rgba(255,255,255,.12);}

  @media (max-width:600px){
    .hero{min-height:560px;padding:120px 0 60px;}
    .hero-placeholder span{font-size:.85rem;}
  }

  /* ---------- Divider ---------- */
  .leaf-divider{display:flex;justify-content:center;margin:0 auto;width:120px;opacity:.8;}

  /* ---------- Occupancy widget ---------- */
  .occupancy{padding:0 0 70px;margin-top:-30px;position:relative;z-index:5;}
  .occupancy-card{
    background:#fff;border:1px solid var(--line);border-radius:22px;
    padding:36px 40px;
    box-shadow:0 25px 60px -30px rgba(42,63,42,.3);
    display:grid;grid-template-columns:.85fr 1.15fr;gap:40px;align-items:center;
  }
  .occupancy-info h2{font-size:clamp(1.4rem,2.4vw,1.8rem);margin:8px 0 8px;}
  .occupancy-info p{color:var(--ink-soft);font-size:.95rem;}

  .occupancy-bar-track{
    width:100%;height:14px;border-radius:30px;background:var(--paper);
    overflow:hidden;border:1px solid var(--line);
  }
  .occupancy-bar-fill{
    height:100%;width:0%;border-radius:30px;
    background:linear-gradient(90deg,var(--sage) 0%,var(--forest) 100%);
    transition:width 1.1s cubic-bezier(.22,.85,.32,1);
  }

  .occupancy-stats{
    display:flex;justify-content:space-between;gap:16px;margin-top:20px;flex-wrap:wrap;
  }
  .occ-stat{display:flex;flex-direction:column;gap:2px;}
  .occ-num{font-family:'Lora',serif;font-weight:600;font-size:1.7rem;color:var(--forest-deep);}
  .occ-label{font-size:.78rem;color:var(--ink-soft);letter-spacing:.02em;}
  .occ-highlight .occ-num{color:var(--moss);}
  .occ-highlight{
    padding:4px 14px;border-radius:14px;background:var(--paper);
  }

  @media (max-width:900px){
    .occupancy{margin-top:-22px;}
    .occupancy-card{grid-template-columns:1fr;gap:26px;padding:30px 26px;}
  }
  @media (max-width:600px){
    .occupancy-stats{gap:18px;}
    .occ-num{font-size:1.4rem;}
  }

  /* ---------- About ---------- */
  .about{padding:90px 0;background:var(--paper);}
  .about-grid{
    display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;align-items:center;
  }
  .about h2{font-size:clamp(1.7rem,3vw,2.3rem);margin:10px 0 18px;}
  .about p{color:var(--ink-soft);font-size:1.02rem;max-width:520px;}
  .about-figure{
    position:relative;background:var(--cream);border-radius:20px;
    border:1px solid var(--line);
    aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
    overflow:hidden;
  }
  .about-figure svg{width:62%;height:62%;}
  .about-figure img{width:100%;height:100%;object-fit:cover;}

  .values{
    display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:36px;
  }
  .value-pill{
    background:#fff;border:1px solid var(--line);border-radius:14px;
    padding:16px 18px;font-size:.92rem;color:var(--forest-deep);font-weight:500;
    display:flex;align-items:center;gap:10px;
  }
  .value-pill .dot{width:8px;height:8px;border-radius:50%;background:var(--sage);flex-shrink:0;}

  /* ---------- Gallery / Slider ---------- */
  .gallery{padding:90px 0;background:var(--cream);}
  .gallery-head{
    display:flex;justify-content:space-between;align-items:flex-end;gap:20px;
    margin-bottom:36px;flex-wrap:wrap;
  }
  .gallery-head h2{font-size:clamp(1.7rem,3vw,2.3rem);margin:10px 0 0;}
  .gallery-controls{display:flex;gap:10px;}
  .gallery-arrow{
    width:46px;height:46px;border-radius:50%;border:1.5px solid var(--moss);
    background:#fff;display:flex;align-items:center;justify-content:center;
    cursor:pointer;transition:background .2s,border-color .2s;flex-shrink:0;
  }
  .gallery-arrow:hover{background:var(--forest);border-color:var(--forest);}
  .gallery-arrow:hover svg{stroke:#fff;}
  .gallery-arrow svg{width:18px;height:18px;stroke:var(--forest);transition:stroke .2s;}

  .gallery-viewport{overflow:hidden;border-radius:20px;}
  .gallery-track{
    display:flex;gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding-bottom:4px;
  }
  .gallery-track::-webkit-scrollbar{display:none;}
  .gallery-slide{
    position:relative;flex:0 0 calc(50% - 10px);
    scroll-snap-align:start;
    aspect-ratio:16/10;border-radius:18px;overflow:hidden;
    display:flex;align-items:flex-end;
    border:1px solid var(--line);
  }
  .gallery-slide img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  }
  .gallery-caption{
    position:relative;z-index:2;width:100%;
    padding:18px 20px;
    background:linear-gradient(180deg,rgba(0,0,0,0) 0%, rgba(23,33,18,.6) 100%);
    color:#fff;font-size:.95rem;font-weight:500;letter-spacing:.02em;
  }
  .gallery-dots{display:flex;gap:8px;justify-content:center;margin-top:22px;}
  .gallery-dot{
    width:8px;height:8px;border-radius:50%;background:var(--sage-light);
    border:none;cursor:pointer;padding:0;transition:background .2s,transform .2s;
  }
  .gallery-dot.active{background:var(--forest);transform:scale(1.2);}
  .gallery-note{
    text-align:center;font-size:.82rem;color:var(--ink-soft);margin-top:18px;
    font-style:italic;
  }
  .gallery-cta{text-align:center;margin-top:30px;}

  /* ---------- Full Gallery Page ---------- */
  .gallery-page-hero{padding:120px 0 40px;background:var(--paper);}
  .back-link{
    display:inline-flex;align-items:center;gap:6px;
    color:var(--moss);font-size:.9rem;margin-bottom:18px;
  }
  .back-link svg{width:16px;height:16px;stroke:var(--moss);}
  .back-link:hover{color:var(--forest);}
  .back-link:hover svg{stroke:var(--forest);}
  .back-link-light{color:rgba(255,255,255,.85);}
  .back-link-light svg{stroke:rgba(255,255,255,.85);}
  .back-link-light:hover{color:#fff;}
  .back-link-light:hover svg{stroke:#fff;}
  .gallery-page-hero h1{font-size:clamp(2rem,4vw,2.8rem);margin:6px 0 12px;}
  .gallery-page-hero p{color:var(--ink-soft);max-width:560px;}

  .gallery-hero{
    min-height:clamp(360px,52vh,500px);
    padding:130px 0 50px;
  }
  .gallery-hero-media{
	background:url('../img/galerie-hero.webp') center/cover no-repeat;
  }
  .gallery-hero .hero-content h1{font-size:clamp(1.9rem,3.6vw,2.6rem);}
  @media (max-width:600px){
    .gallery-hero{min-height:320px;padding:110px 0 40px;}
  }

  .gallery-category{padding:60px 0;}
  .gallery-category.alt{background:var(--paper);}
  .gallery-category-head{margin-bottom:32px;}
  .gallery-category-head h2{font-size:clamp(1.5rem,2.6vw,2rem);margin-top:8px;}

  .photo-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  }
  @media (max-width:900px){
    .photo-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:600px){
    .photo-grid{grid-template-columns:1fr;}
    .gallery-page-hero{padding:100px 0 30px;}
  }

  @media (max-width:900px){
    .gallery-slide{flex:0 0 78%;}
  }
  @media (max-width:600px){
    .gallery-slide{flex:0 0 88%;aspect-ratio:4/3;}
    .gallery-head{align-items:flex-start;}
  }

  /* ---------- Gallery Lightbox ---------- */
  .gallery-slide{cursor:pointer;}
  .gallery-slide .zoom-hint{
    position:absolute;top:14px;right:14px;z-index:3;
    width:36px;height:36px;border-radius:50%;
    background:rgba(20,28,17,.55);
    display:flex;align-items:center;justify-content:center;
    opacity:0;transition:opacity .2s;
  }
  .gallery-slide .zoom-hint svg{width:16px;height:16px;stroke:#fff;}
  .gallery-slide:hover .zoom-hint{opacity:1;}

  .lightbox{
    position:fixed;inset:0;z-index:200;
    background:rgba(15,20,12,.94);
    display:none;align-items:center;justify-content:center;
    padding:60px 20px;
  }
  .lightbox.open{display:flex;}
  .lightbox-figure{
    position:relative;max-width:min(1100px,92vw);max-height:84vh;
    display:flex;flex-direction:column;align-items:center;
  }
  .lightbox-figure img{
    max-width:100%;max-height:74vh;width:auto;height:auto;
    border-radius:14px;object-fit:contain;
    box-shadow:0 30px 70px -20px rgba(0,0,0,.6);
  }
  .lightbox-caption{
    color:#f1efe4;font-size:.95rem;margin-top:16px;text-align:center;
  }
  .lightbox-close{
    position:absolute;top:-18px;right:-18px;
    width:44px;height:44px;border-radius:50%;border:1.5px solid rgba(255,255,255,.3);
    background:rgba(20,28,17,.8);display:flex;align-items:center;justify-content:center;
    cursor:pointer;
  }
  .lightbox-close svg{width:18px;height:18px;stroke:#fff;}
  .lightbox-close:hover{background:var(--forest);}
  .lightbox-nav{
    position:fixed;top:50%;transform:translateY(-50%);
    width:50px;height:50px;border-radius:50%;border:1.5px solid rgba(255,255,255,.3);
    background:rgba(20,28,17,.6);display:flex;align-items:center;justify-content:center;
    cursor:pointer;z-index:201;
  }
  .lightbox-nav:hover{background:var(--forest);}
  .lightbox-nav svg{width:20px;height:20px;stroke:#fff;}
  .lightbox-prev{left:18px;}
  .lightbox-next{right:18px;}
  .lightbox-counter{
    position:absolute;top:-18px;left:0;
    color:rgba(255,255,255,.6);font-size:.8rem;letter-spacing:.05em;
  }

  @media (max-width:640px){
    .lightbox-close{top:-50px;right:0;}
    .lightbox-counter{top:-50px;}
    .lightbox-nav{width:42px;height:42px;}
    .lightbox-prev{left:8px;}
    .lightbox-next{right:8px;}
  }

  /* ---------- Media sections (Video / Tur 3D) ---------- */
  .media-section{padding:90px 0;}
  .media-section.alt{background:var(--paper);}
  .media-head{max-width:620px;margin:0 auto 40px;text-align:center;}
  .media-head h2{font-size:clamp(1.7rem,3vw,2.3rem);margin:10px 0 14px;}
  .media-head p{color:var(--ink-soft);}
  .media-frame{
    position:relative;width:100%;aspect-ratio:16/9;
    border-radius:20px;overflow:hidden;border:1px solid var(--line);
    background:linear-gradient(135deg,#6c8a5d 0%,#3a4f33 55%,#2a3f2c 100%);
  }
  .media-frame video, .media-frame iframe{
    position:absolute;inset:0;width:100%;height:100%;border:0;display:block;object-fit:cover;
  }
  .media-frame img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  }
  .media-play{
    position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;
    width:78px;height:78px;border-radius:50%;
    background:rgba(20,28,17,.55);border:1.5px solid rgba(255,255,255,.5);
    display:flex;align-items:center;justify-content:center;
    transition:background .2s,transform .2s;
  }
  .media-play svg{width:30px;height:30px;}
  .media-frame:hover .media-play{background:var(--forest);transform:translate(-50%,-50%) scale(1.06);}
  .media-placeholder{
    position:absolute;inset:0;z-index:2;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;
    border:2px dashed rgba(255,255,255,.35);margin:16px;border-radius:16px;
    pointer-events:none;
  }
  .media-placeholder svg{width:52px;height:52px;opacity:.6;stroke:#fff;}
  .media-placeholder span{
    color:rgba(255,255,255,.78);font-size:.92rem;text-align:center;max-width:340px;padding:0 16px;
  }
  .media-note{
    text-align:center;font-size:.82rem;color:var(--ink-soft);margin-top:16px;font-style:italic;
  }

  /* ---------- Services ---------- */
  .services{padding:100px 0;}
  .services-head{text-align:center;max-width:620px;margin:0 auto 50px;}
  .services-head h2{font-size:clamp(1.7rem,3vw,2.3rem);margin:10px 0 14px;}
  .services-head p{color:var(--ink-soft);}
  .grid-services{
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  }
  .service-card{
    background:#fff;border:1px solid var(--line);border-radius:18px;
    padding:30px 26px;transition:border-color .2s,transform .2s;
  }
  .service-card:hover{border-color:var(--sage);transform:translateY(-4px);}
  .service-icon{
    width:52px;height:52px;border-radius:14px;
    background:var(--paper);
    display:flex;align-items:center;justify-content:center;margin-bottom:18px;
  }
  .service-icon svg{width:26px;height:26px;stroke:var(--forest);}
  .service-card h3{font-size:1.08rem;margin-bottom:8px;color:var(--forest-deep);}
  .service-card p{font-size:.92rem;color:var(--ink-soft);}

  /* ---------- Quote band ---------- */
  .band{
    background:var(--forest-deep);color:#f1efe4;
    padding:70px 0;text-align:center;position:relative;overflow:hidden;
  }
  .band .leaf-bg{
    position:absolute;left:-100px;bottom:-120px;width:420px;height:420px;opacity:.18;
  }
  .band blockquote{
    font-family:'Lora',serif;font-style:italic;font-size:clamp(1.2rem,2.4vw,1.6rem);
    max-width:680px;margin:0 auto 14px;line-height:1.5;position:relative;z-index:2;
  }
  .band cite{font-style:normal;font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;color:var(--sage-light);}

  /* ---------- Contact ---------- */
  .contact{padding:100px 0;background:var(--paper);}
  .contact-grid{
    display:grid;grid-template-columns:.95fr 1.05fr;gap:50px;
  }
  .contact h2{font-size:clamp(1.7rem,3vw,2.3rem);margin:10px 0 16px;}
  .contact > .wrap > p{color:var(--ink-soft);max-width:480px;margin-bottom:0;}
  .contact-cards{display:flex;flex-direction:column;gap:16px;margin-top:30px;}
  .contact-card{
    display:flex;gap:16px;align-items:flex-start;
    background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px 20px;
  }
  .contact-card .ic{
    width:40px;height:40px;border-radius:10px;background:var(--paper);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .contact-card .ic svg{width:20px;height:20px;stroke:var(--forest);}
  .contact-card strong{display:block;color:var(--forest-deep);font-size:.95rem;}
  .contact-card span{font-size:.9rem;color:var(--ink-soft);}

  .visit-rules{
    margin-top:24px;background:#fff;border:1px solid var(--line);border-radius:14px;
    padding:20px 22px;
  }
  .visit-rules strong{display:block;color:var(--forest-deep);font-size:.95rem;margin-bottom:10px;}
  .visit-rules ul{list-style:none;display:flex;flex-direction:column;gap:8px;}
  .visit-rules li{
    font-size:.88rem;color:var(--ink-soft);line-height:1.5;padding-left:18px;position:relative;
  }
  .visit-rules li::before{
    content:"";position:absolute;left:0;top:.55em;width:6px;height:6px;border-radius:50%;
    background:var(--sage);
  }

  .map-card{
    border-radius:18px;overflow:hidden;border:1px solid var(--line);
    min-height:380px;background:#fff;
  }
  .map-card iframe{width:100%;height:100%;min-height:380px;border:0;display:block;}

  /* ---------- Footer ---------- */
  footer{
    background:var(--forest-deep);color:#cfd6c4;padding:46px 0 26px;
  }
  .foot-grid{
    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px;
    padding-bottom:26px;border-bottom:1px solid rgba(255,255,255,.12);
  }
  .foot-brand{display:flex;align-items:center;gap:10px;}
  .foot-brand img{height:34px;filter:brightness(0) invert(1);opacity:.92;}
  .foot-brand span{font-family:'Lora',serif;color:#f1efe4;font-size:.98rem;}
  footer nav ul{display:flex;gap:24px;list-style:none;flex-wrap:wrap;}
  footer nav ul a{font-size:.88rem;color:#cfd6c4;}
  footer nav ul a:hover{color:#fff;}
  .foot-bottom{
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
    padding-top:18px;font-size:.8rem;color:#9aa68f;
  }
  .foot-credit{
    text-align:center;padding-top:16px;margin-top:16px;
    border-top:1px solid rgba(255,255,255,.08);
    font-size:.78rem;color:#7e8b73;
  }
  .foot-credit a{color:#a8b89a;font-weight:500;}
  .foot-credit a:hover{color:#fff;}

  /* ---------- Responsive ---------- */
  @media (max-width:1040px){
    .nav ul{gap:16px;}
  }
  @media (max-width:920px){
    .about-grid,.contact-grid{grid-template-columns:1fr;}
    .grid-services{grid-template-columns:repeat(2,1fr);}
    .values{grid-template-columns:1fr 1fr;}
    .nav ul{display:none;}
    .nav-cta.desktop-only{display:none;}
    .menu-toggle{display:flex;}
  }
  @media (max-width:600px){
    .grid-services{grid-template-columns:1fr;}
    .values{grid-template-columns:1fr;}
    .brand small{display:none;}
  }