@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Serif+Display:ital@0;1&display=swap');

:root{
    --deep-green:#023E32;
    --deep-green-2:#0a2e29;
    --gold:#b8894a;
    --gold-light:#cf9f5f;
    --cream:#FAF7F2;
    --cream-2:#efe8d9;
    --ink:#1c2b28;
    --gray:#5c6663;
    --white:#ffffff;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;overflow-x:hidden;}
  body{
     font-family: "Be Vietnam Pro", sans-serif;
    color:var(--ink);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.serif{
    font-family: "DM Serif Display", serif;
  }
  a{text-decoration:none;color:inherit;}
  img{display:block;max-width:100%;}
  ul{list-style:none;}
  .container{
    max-width:1280px;
    margin:0 auto;
    padding:0 clamp(20px, 4vw, 15px);
  }
  .eyebrow{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2.5px;
    font-weight:600;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:14px;
  }
  /* .eyebrow::after{
    content:"";
    display:block;
    height:1px;
    width:60px;
    background:var(--gold);
    opacity:.6;
  } */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 15px;
    font-size:10px;
    letter-spacing:1.6px;
    font-weight:400;
    text-transform:uppercase;
    border-radius:2px;
    cursor:pointer;
    transition:all .25s ease;
    border:1px solid transparent;
    white-space:nowrap;
  }
  .btn-solid{
    background:var(--deep-green);
    color:var(--white);
  }
  .btn-solid:hover{background:var(--deep-green-2);}
  .btn-outline{
    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold);
  }
  .btn-outline:hover{background:var(--gold);color:var(--white);}
  .btn-outline-light{
    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold-light);
  }
  .btn-outline-light:hover{background:var(--gold);color:var(--deep-green-2);}

  /* HEADER */
  header{
    position:sticky;top:0;z-index:100;
    /* background:var(--cream); */
    /* border-bottom:1px solid rgba(184,137,74,.25); */
    max-width:100%;width:100%;
  }
  .nav-wrap{
    display:flex;align-items:center;justify-content:space-between;
    padding:16px 0;
    max-width:1280px;margin:0 auto;
    position:relative;
    gap:16px;
  }
  .logo{
    display:flex;align-items:center;gap:14px;max-width:60px;width:100%;flex-shrink:0;
  }
  .logo .k-letter{
    font-family:'Playfair Display',serif;
    font-size:clamp(26px, 4vw, 34px);
    font-weight:700;
    color:var(--gold);
  }
  .logo .divider{width:1px;height:34px;background:var(--gold);opacity:.5;flex-shrink:0;}
  .logo-text-main{
    font-family:'Playfair Display',serif;
    font-size:clamp(16px, 2.4vw, 20px);
    letter-spacing:2px;
    color:var(--deep-green);
    font-weight:700;
    line-height:1.1;
    white-space:nowrap;
  }
  .logo-text-sub{
    font-size:clamp(7.5px, 1.4vw, 9.5px);
    letter-spacing:2.4px;
    color:var(--gold);
    font-weight:500;
    white-space:nowrap;
  }
  nav ul{display:flex;gap:clamp(16px, 2.2vw, 34px);align-items:center; }
  nav a{
    font-size:12px;
    letter-spacing:.5px;
    font-weight:500;
    color:var(--ink);
    position:relative;
    padding-bottom:6px;
    white-space:nowrap;
    text-transform: uppercase;
  }
  nav a.active{color:var(--deep-green);font-weight:600;}
  nav a.active::after{
    content:"";position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--gold);
  }
  .nav-right{display:flex;align-items:center;gap:16px;flex-shrink:0;}
  .lang{display:flex;align-items:center;gap:5px;font-size:13px;color:var(--ink);cursor:pointer;flex-shrink:0;}
  .menu-toggle{
    display:none;background:none;border:none;font-size:22px;cursor:pointer;color:var(--deep-green);
    z-index:210;line-height:1;padding:4px;position:relative;width:32px;height:32px;
  }
  .menu-toggle .icon-close{display:none;}
  .menu-toggle.open .icon-menu{display:none;}
  .menu-toggle.open .icon-close{display:inline;}

  .nav-overlay{
    display:none;
    position:fixed;inset:0;
    background:rgba(10,30,26,.45);
    z-index:190;
    opacity:0;
    transition:opacity .25s ease;
  }
  .nav-overlay.show{display:block;opacity:1;}

  .mobile-nav-panel{
    position:fixed;top:0;right:0;bottom:0;
    width:min(320px, 84vw);
    background:var(--cream);
    z-index:200;
    box-shadow:-12px 0 40px rgba(0,0,0,.18);
    padding:28px 28px 40px;
    transform:translateX(100%);
    transition:transform .3s ease;
    overflow-y:auto;
    display:flex;
    flex-direction:column;
  }
  .mobile-nav-panel.show{transform:translateX(0);}
  .mobile-nav-head{margin-bottom:36px;}
  .mobile-nav-list{display:flex;flex-direction:column;gap:4px;margin-bottom:30px;}
  .mobile-nav-list li a{
    display:block;padding:14px 4px;font-size:16px;font-weight:500;color:var(--ink);
    border-bottom:1px solid rgba(184,137,74,.18);
  }
  .mobile-nav-list li a.active{color:var(--deep-green);font-weight:700;}
  .mobile-consult{justify-content:center;width:100%;margin-bottom:22px;}
  .mobile-lang{display:flex;align-items:center;gap:6px;font-size:14px;color:var(--ink);}
  body.nav-locked{overflow:hidden;}

  /* HERO */
  .hero{
    position:relative;
    min-height:640px;
    overflow:hidden;
    display:flex;
    align-items:center;
    flex-direction:column;
  }
  .hero-inner{
    position:relative;z-index:2;
    width:100%;
    max-width:1280px;
    margin:0 auto;
    /* padding:0 clamp(20px, 4vw, 48px); */
  }
  .hero-bg{
    width: 100%;
    height: 100%;
    position:absolute;inset:0;
    background:url("../images/hero-bg.png") no-repeat;
    background-size:contain;
    background-position:top right;
  }
  .hero-fade{
    position:absolute;inset:0;
    background:linear-gradient(90deg, var(--cream) 19%, var(--cream) 48%, rgba(247,242,233,.85) 56%, rgba(247,242,233,.25) 67%, rgba(247,242,233,0) 100%);
  }
  .hero-content{
    position:relative;z-index:2;
    max-width:460px;
    padding:55px 0;
  }
  .hero-content .eyebrow{margin-bottom:22px;}
  .hero-content h1{
    font-size:50px;
    line-height:1.15;
    color:var(--deep-green);
    font-weight:500;
    margin-bottom:22px;
  }
  .hero-content h1 em{
    color:var(--gold);
    font-style:italic;
    font-weight:500;
  }
  .hero-rule{
    width:70px;height:2px;background:var(--gold);margin-bottom:24px;
  }
  .hero-content p{
    font-size:15.5px;
    line-height:1.75;
    color:var(--gray);
    max-width:460px;
    margin-bottom:36px;
  }
  .hero-btns{display:flex;gap:16px;flex-wrap:wrap;}

  /* STATS BAR */
  .stats{
    background:var(--deep-green);
    color:var(--white);
    position: absolute;left:50%; top: 553px;width:100%;
    transform:translateX(-50%);
    z-index: 1;

  }
  .stats-inner{
    max-width:1280px;margin:0 auto;
    display:grid;grid-template-columns:repeat(4,1fr);
    padding:40px 0;
  }
  .stat{
    display:flex;align-items:center;gap:20px;
    padding:0 26px;
    position:relative;
    /* justify-content: space-evenly; */
  }
  .stat:not(:first-child){border-left:1px solid rgba(255,255,255,.15);}
  .stat-icon{
    width:70px;height:70px;flex-shrink:0;
    color:var(--gold-light);
  }
  .stat-icon svg{width:100%;height:100%;}
  .stat-num{
    font-family: "DM Serif Display", serif;
    font-size:55px;font-weight:500;line-height:1;letter-spacing:2px;
  }
  .stat-label{font-size:13px;letter-spacing:.5px;margin-top:6px;color:rgba(255,255,255,.85);font-family: "Be Vietnam Pro", sans-serif; margin-bottom:10px;}
  .stat-sub{font-size:13px;color:rgba(255,255,255,.55);margin-top:2px; font-family: "Be Vietnam Pro", sans-serif;}

  /* WHAT WE DO */
  .whatwedo{
    padding:100px 0 40px;
  }
  .wwd-grid{
    display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap: 20px;
    max-width:1280px;margin:44px auto 0;
  }
  .wwd-left{grid-column:1; max-width:364px; width:100%}
  .wwd-right{grid-column:2 / -1;display:flex;grid-template-columns:repeat(3,1fr); text-align:center;}
  .wwd-left h2{
    font-size:34px;color:var(--deep-green);line-height:1.25;margin:16px 0 20px;font-weight:200;
  }
  .wwd-left p{color:var(--gray);font-size:14.5px;line-height:1.75;margin-bottom:28px;}
  .service-card{
    max-width:212px;
    width:100%;
    background:transparent;
    padding:6px 20px 6px;
    border-left:1px solid rgba(184,137,74,.18);
  }
  .service-icon{
    width:70px;height:70px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:22px;
    color:var(--gold);
    margin:0 auto 22px;
  }
  .service-icon svg{width:24px;height:24px;}
  .service-card h3{
    font-family: "Be Vietnam Pro", sans-serif; font-size:14px;text-transform:uppercase;color:var(--deep-green);
    font-weight:700;margin-bottom:14px;line-height:1.4;
  }
  .service-card p{font-size:14.5px;color:var(--gray);line-height:1.7;}

  /* FEATURED PROPERTIES */
  .featured{
    max-width: 96%; width: 100%;margin:0 auto;
    background:var(--white);
    /* padding:90px 48px; */
    position:relative;
    /* max-width:1350px;margin:0 auto;width:    100%; */
  }
  .featured-head{
    display:flex;justify-content:space-between;align-items:flex-end;
    max-width:1280px;margin:0 auto 40px;
  }
  .featured-head .eyebrow{margin-bottom:0;}
  .view-all{
    font-size:13px;font-weight:600;letter-spacing:1px;color:var(--deep-green);
    display:flex;align-items:center;gap:8px;text-transform:uppercase;
  }
  .prop-grid{
    max-width:1280px;margin:0 auto;
    display:grid;grid-template-columns:repeat(4,1fr);gap:26px;
    position:relative;
  }
  .prop-card{
    background:var(--white);
    border:1px solid #eee2cf;
    border-radius:4px;
    overflow:hidden;
    transition:box-shadow .25s ease, transform .25s ease;
  }
  .prop-card:hover{box-shadow:0 18px 34px rgba(13,59,52,.12);transform:translateY(-4px);}
  .prop-img{position:relative;height:190px;overflow:hidden;}
  .prop-img img{width:100%;height:100%;object-fit:cover;}
  .prop-badge{
    position:absolute;top:0;left:0;
    background:var(--deep-green);color:var(--white);
    font-size:10.5px;letter-spacing:1.5px;font-weight:600;
    padding:5px 12px;border-radius:2px;text-transform:uppercase;
  }
  .prop-body{padding:20px;}
  .prop-body h3{font-size:18px;color:var(--deep-green);font-weight:500;margin-bottom:6px;}
  .prop-body .prop-sub{font-size:12.5px;color:var(--gray);margin-bottom:18px;}
  .prop-foot{display:flex;justify-content:space-between;align-items:center;}
  .prop-price{font-size:13px;color:var(--ink);}
  .prop-price span{color:var(--gold);font-weight:600;}
  .prop-arrow{
    width:36px;height:36px;border:1px solid var(--gold);border-radius:50%;
    display:flex;align-items:center;justify-content:center;color:var(--gold);
    transition:all .2s ease;
  }
  .prop-card:hover .prop-arrow{background:var(--gold);color:var(--white);}
  .carousel-nav{
    position:absolute;right:-20px;top:40%;
    width:44px;height:44px;background:var(--white);border-radius:50%;
    box-shadow:0 6px 20px rgba(0,0,0,.12);
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;color:var(--deep-green);
  }

  /* TRUST BAR */
  .trust{
    padding:30px 0;
  }
  .trust-title{
    text-align:center;
    display:flex;align-items:center;justify-content:center;gap:18px;
    color:var(--gold);font-size:15px;letter-spacing:2.5px;font-weight:600;
    text-transform:uppercase;margin-bottom:30px;
  }
  .trust-title::before,.trust-title::after{
    content:"";width:70px;height:1px;background:var(--gold);opacity:.6;
  }
  .trust-grid{
    max-width:1280px;margin:0 auto;
    display:grid;grid-template-columns:repeat(4,1fr);gap:40px;
  }
  .brd-none{
    border:none !important;
  }
  .trust-item{display:flex;gap:12px;align-items:flex-start; border-left:1px solid rgba(184,137,74,.18);padding-left:20px;}
  .trust-icon{width:60px;height:60px;color:var(--gold);flex-shrink:0;}
  .trust-icon svg{width:100%;height:100%;}
  .trust-item h4{font-size:14px;color:var(--deep-green);font-weight:700;letter-spacing:.3px;margin-bottom:8px;text-transform:uppercase;}
  .trust-item p{font-size:13px;color:var(--gray);line-height:1.6;}

  /* FOOTER */
  footer{
    background:var(--deep-green);
    color:rgba(255,255,255,.85);
    padding:40px 48px 0;
  }
  .footer-grid{
    max-width:1280px;margin:0 auto;
    display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  .footer-logo{display:flex;align-items:center;gap:14px;margin-bottom:20px;max-width:100px;width:100%;flex-shrink:0;}
  .footer-logo .k-letter{font-family:'Playfair Display',serif;font-size:30px;color:var(--gold-light);font-weight:700;}
  .footer-logo .divider{width:1px;height:30px;background:var(--gold-light);opacity:.5;}
  .footer-logo-text-main{font-family:'Playfair Display',serif;font-size:18px;letter-spacing:2px;color:var(--white);font-weight:700;}
  .footer-logo-text-sub{font-size:9px;letter-spacing:3px;color:var(--gold-light);}
  .footer-about p{font-size:13.5px;line-height:1.8;color:rgba(255,255,255,.65);margin-bottom:24px;max-width:320px;}
  .socials{display:flex;gap:12px;}
  .socials a{
    width:36px;height:36px;border:1px solid var(--gold-light);border-radius:50%;
    display:flex;align-items:center;justify-content:center;color:var(--gold-light);
    transition:all .2s ease;
  }
  .socials a:hover{background:var(--gold-light);color:var(--deep-green);}
  .socials svg{width:16px;height:16px;}
  .footer-col{
        border-left: 1.5px solid #0a5a3594;
        padding-left: 50px;
  }

  .footer-col h4{
    font-size:13.5px;letter-spacing:1.5px;text-transform:uppercase;color:var(--white);
    font-weight:700;margin-bottom:22px;
  }
  .footer-col ul li{margin-bottom:13px;}
  .footer-col ul a{font-size:13.5px;color:rgba(255,255,255,.7);transition:color .2s;}
  .footer-col ul a:hover{color:var(--gold-light);}
  .footer-contact li{
    display:flex;gap:12px;font-size:13.5px;color:rgba(255,255,255,.75);margin-bottom:16px;align-items:flex-start;
  }
  .footer-contact svg{width:16px;height:16px;color:var(--gold-light);flex-shrink:0;margin-top:2px;}
  .footer-cta{margin-top:12px;}
  .bottom-bar{
    max-width:1280px;margin:0 auto;
    display:flex;justify-content:space-between;align-items:center;
    padding:26px 0;
    font-size:12.5px;color:rgba(255,255,255,.55);
    flex-wrap:wrap;gap:10px;
  }
  .bottom-bar a{margin-left:22px;color:rgba(255,255,255,.55);}
  .bottom-bar a:hover{color:var(--gold-light);}

  #button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}


  /* ============ RESPONSIVE ============ */

  /* Large laptops / small desktops: tighten nav gaps before anything breaks */
  @media (max-width:1180px){
    nav ul{gap:16px;}
    nav a{font-size:12.5px;}
    .nav-right{gap:12px;}
    .hero-content{max-width:56%;padding:0 10px;}
  }

  /* Tablets landscape */
  @media (max-width:1024px){
    .wwd-grid{        display: flex;
        flex-direction: column;}
    .wwd-left{grid-column:1 / -1;margin-bottom:20px;}
    .prop-grid{grid-template-columns:1fr 1fr;}
    .stats-inner{grid-template-columns:1fr 1fr;row-gap:30px;}
    .stat:nth-child(3){border-left:none;}
    .trust-grid{grid-template-columns:1fr 1fr;row-gap:36px;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .hero-content{max-width:62%;}
    .hero-content h1{font-size:44px;}
  }

  /* Below this, nav links no longer fit: switch to the drawer menu */
  @media (max-width:900px){
    nav, .consult-desktop, .lang{display:none;}
    .menu-toggle{display:flex;align-items:center;justify-content:center;}
    .hero{min-height:auto;}
    .hero-content{max-width:100%;padding:56px 10px;}
    .hero-content h1{font-size:38px;}
    .hero-fade{background:linear-gradient(180deg, var(--cream) 42%, rgba(247,242,233,.72) 68%, rgba(247,242,233,.3) 100%);}
    .hero-bg{
      opacity: 1;
        background-position: right top;
        background-size: cover;
    }
    .service-card{
      max-width: inherit;
      border-left: none;
    }
    .trust-item, .footer-col{
      border-left: none;
    }
    .footer-col{
      padding-left: 0;
    }
    .whatwedo{padding:70px 24px 60px;}
    .featured{padding:64px 24px;}
    .trust{padding:56px 24px;}
    .container,.whatwedo,.featured,.trust,footer{padding-left:22px;padding-right:22px;position:static; left:0; transform:translateX(0);}

  }

  /* Tablets portrait / large phones */
  @media (max-width:768px){
    .nav-wrap{padding:14px 20px;}
    .wwd-grid{grid-template-columns:1fr 1fr;gap:24px;}
    .prop-grid{
      grid-template-columns:none;
      grid-auto-flow:column;
      grid-auto-columns:78%;
      overflow-x:auto;
      gap:18px;
      padding-bottom:8px;
      -webkit-overflow-scrolling:touch;
    }
    .carousel-nav{display:flex;}
    .featured-head{flex-direction:column;align-items:flex-start;gap:14px;}
    .trust-grid{grid-template-columns:1fr 1fr;gap:30px;}
    .footer-grid{grid-template-columns:1fr 1fr;gap:34px;}
    .hero-content h1{font-size:34px;}
    .stats-inner{padding:34px 24px;}
    .wwd-left h2 {font-size: 26px;}
  }

  /* Phones */
  @media (max-width:640px){
    .container,.whatwedo,.featured,.trust,footer{padding-left:22px;padding-right:22px;position:static; left:0; transform:translateX(0);}
    .nav-wrap{padding:14px 18px;}
    .wwd-grid,.trust-grid,.footer-grid{grid-template-columns:1fr;display:flex;flex-direction:column;gap:28px; }
    .wwd-right{
        flex-direction:column;align-items:flex-start;gap:28px;
    }
    .prop-grid{grid-auto-columns:86%;}
    .carousel-nav{right:6px;width:38px;height:38px;}
    .stats-inner{grid-template-columns:1fr;padding:28px 22px;}
    .stat{border-left:none !important;border-top:1px solid rgba(255,255,255,.15);padding-top:18px;}
    .stat:first-child{border-top:none;padding-top:0;}
    .stat-icon{width:38px;height:38px;}
    .stat-num{font-size:26px;}
    .bottom-bar{flex-direction:column;align-items:flex-start;gap:8px;}
    .bottom-bar a{margin-left:0;margin-right:20px;}
    .hero-content{padding:44px 0; margin: 0 30px; }
    .hero-content h1{font-size:30px;line-height:1.2;}
    .hero-content p{font-size:14.5px;}
    .hero-btns{
      flex-direction:column;
      align-items:stretch;
      .btn-outline{
            color: #ffffff;
                background: #be9055;
      }
    }
    .hero-btns .btn{justify-content:center;}
    .footer-grid{gap:38px;}
    .footer-about p{max-width:none;}
  }

  /* Small phones */
  @media (max-width:400px){
    .logo-text-sub{letter-spacing:1.6px;}
    .nav-wrap{padding:12px 16px;}
    .hero-content{padding:36px 0;}
    .hero-content h1{font-size:26px;}
    .eyebrow{font-size:11.5px;gap:10px;}
    .eyebrow::after{width:36px;}
    .btn{padding:13px 22px;font-size:12px;}
    .whatwedo,.featured,.trust,footer{padding-left:16px;padding-right:16px;}
    .service-icon{width:46px;height:46px;}
    .prop-body{padding:16px;}
    .prop-grid{grid-auto-columns:92%;}
    .trust-title::before,.trust-title::after{width:34px;}
  }

  /* Reduced motion preference */
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition-duration:0.001ms !important;animation-duration:0.001ms !important;}
  }
























  .wrap{
    max-width:1280px;
    margin:0 auto;
    padding:40px 0;
  } 
 
  .head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:36px;
    gap:24px;
    flex-wrap:wrap;
  }
 
  .eyebrow{
    display:flex;
    align-items:center;
    gap:18px;
  }
 
  .eyebrow span{
    font-family:'Inter',sans-serif;
    font-weight:700;
    font-size:12.5px;
    letter-spacing:0.22em;
    color:var(--gold);
    text-transform:uppercase;
    white-space:nowrap;
  }
 
  .eyebrow i{
    display:block;
    width:64px;
    height:1px;
    background:var(--gold);
  }
 
  .view-all{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.04em;
    color:var(--forest);
    text-decoration:none;
    text-transform:uppercase;
    border-bottom:1px solid transparent;
    transition:border-color .25s ease, gap .25s ease;
  }
  .view-all:hover{ border-color:var(--forest); gap:12px; }
  .view-all svg{ width:15px; height:15px; }
 
  /* ---------- Slider ---------- */
  .slider-region{
    position:relative;
  }
 
  .slider-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding-bottom:8px;
    margin:0 -4px;
    padding-left:4px;
    padding-right:4px;
    -webkit-overflow-scrolling:touch;
  }
  .slider-track::-webkit-scrollbar{ display:none; }
  .slider-track{ scrollbar-width:none; -ms-overflow-style:none; }
 
  .card{
    flex:0 0 calc(25% - 18px);
    scroll-snap-align:start;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    /* transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease; */
    background: var(--white);
    border: 1px solid #eee2cf;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .card:hover{
    transform:translateY(-2px);
    /* box-shadow:0 22px 40px -20px #eee2cf; */
    box-shadow:0 18px 34px rgba(13,59,52,.12);transform:translateY(-4px);
    /* border-color:var(--gold-soft); */
  }
 
  .card-media{
    position:relative;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
    background:var(--forest-deep);
  }
  .card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
  }
  .card:hover .card-media img{ transform:scale(1); }
 
 
  .card-body{
    padding:20px 20px 22px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
  }
 
  .card-body h3{
    font-family:'Playfair Display',serif;
    font-weight:600;
    font-size:19px;
    margin:0;
    line-height:1.25;
    color:var(--forest-deep);
  }
 
  .card-body p{
    margin:0;
    font-size:13px;
    color:var(--muted);
    line-height:1.4;
  }
 
  .card-footer{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
 
  .price{
    font-size:13px;
    color:var(--ink);
  }
  .price b{
    color:var(--gold);
    font-weight:700;
    font-size:14px;
  }
 
  .goto{
    width:34px;
    height:34px;
    border:1px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    background:transparent;
    cursor:pointer;
    transition:background .25s ease, color .25s ease;
    flex-shrink:0;
  }
  .goto:hover{ background:var(--gold); color:var(--white); }
  .goto svg{ width:15px; height:15px; }
 
  /* ---------- Nav arrow ---------- */
  .nav-btn{
    position:absolute;
    top:38%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid var(--line);
    background:var(--white);
    box-shadow:0 10px 24px -10px rgba(15,51,39,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
    color:var(--forest-deep);
    transition:background .25s ease, color .25s ease, border-color .25s ease;
  }
  .nav-btn:hover{ background:var(--forest); color:var(--white); border-color:var(--forest); }
  .nav-btn:disabled{ opacity:0.35; cursor:default; }
  .nav-btn:disabled:hover{ background:var(--white); color:var(--forest-deep); border-color:var(--line); }
  .nav-btn svg{ width:18px; height:18px; }
  .nav-prev{ left:-23px; }
  .nav-next{ right:-23px; }
 
  /* ---------- Dots ---------- */
  .dots{
    display:none;
    justify-content:center;
    gap:8px;
    margin-top:28px;
  }
  .dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--line);
    border:none;
    padding:0;
    cursor:pointer;
    transition:background .25s ease, width .25s ease;
  }
  .dot.active{ background:var(--gold); width:20px; border-radius:4px; }
 
  /* ---------- Responsive ---------- */
  @media (max-width:1024px){
    .card{ flex:0 0 calc(50% - 12px); }
    .wrap{ padding:48px 24px 64px; }
  }
 
  @media (max-width:640px){
    .card{ flex: 0 0 calc(100% - 12px); }
    .wrap{ padding:40px 20px 56px; }
    .head{ margin-bottom:24px; }
    .eyebrow i{ width:36px; }
    .nav-btn{ display:none; }
    .dots{ display:flex; }
    .slider-track{ scroll-padding-left:20px; }
  }