*{ margin:0; padding:0; box-sizing:border-box; }

  html{ scroll-behavior:smooth; }

  body{
    font-family:'Poppins', sans-serif;
    background:#FFEBCE;
    color:#4A3F35;
    line-height:1.6;
    overflow-x:hidden;
  }

  h1,h2{
    font-family:'Playfair Display', serif;
    color:#40352B;
    font-weight:800;
  }

  img { 
    max-width:100%; 
    display:block; 
  }

  .visually-hidden{
    position:absolute;
    width:1px; height:1px;
    padding:0; margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

  a{ color:inherit; text-decoration:none; }

  body.menu-open{ overflow:hidden; }

  a:focus-visible,
  button:focus-visible{
    outline:2px solid #40352B;
    outline-offset:3px;
    border-radius:4px;
  }

  .container{
    max-width:1300px;
    margin:0 auto;
    padding:0 40px;
  }

  /* ---------- Header ---------- */
  header{
    background:#CCA47F;
    padding:22px 0;
  }

  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .logo-link{
    display:flex;
    align-items:center;
  }

  .logo-text{
    font-family:'Playfair Display', serif;
    font-weight:800;
    font-size:1.5rem;
    color:#40352B;
  }

  nav ul{
    display:flex;
    gap:36px;
    list-style:none;
    align-items:center;
  }

  nav a{
    font-family:'Playfair Display', serif;
    font-size:1.05rem;
    font-weight:700;
    color:#40352B;
    position:relative;
    transition:opacity .2s ease;
  }

  nav a:hover{ opacity:0.65; }

  nav a.nav-cta{
    font-family:'Poppins', sans-serif;
    font-weight:500;
    background:#40352B;
    color:#FFEBCE;
    padding:10px 24px;
    border-radius:8px;
    font-size:0.95rem;
  }

  nav a.nav-cta:hover{ opacity:0.85; }

  nav a[aria-current="page"]{
    text-decoration:underline;
    text-underline-offset:5px;
  }

  .menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
  }

  .menu-toggle span{
    width:24px;
    height:2px;
    background:#40352B;
    display:block;
    transition:transform .3s ease, opacity .3s ease;
  }

  .menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2){ opacity:0; }
  .menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero{
    width:100%;
    height:50vh;
    overflow:hidden;
    position:relative;
  }

  .hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 40%;
  }

  .hero .placeholder-img{
    width:100%;
    height:100%;
    border-radius:0;
    border-width:0;
    aspect-ratio:auto;
    position:relative;
  }

  .hero .placeholder-img span{
    position:absolute;
    bottom:18px;
    right:22px;
    font-size:0.75rem;
    opacity:0.6;
  }

  .hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-align:center;
    padding:0 24px;
    background:linear-gradient(180deg, rgba(30,22,15,0.18), rgba(30,22,15,0.4));
  }

  .hero-overlay .eyebrow{
    color:#FFEBCE;
    letter-spacing:3px;
    font-size:0.8rem;
    font-weight:500;
    text-transform:uppercase;
  }

  .hero-overlay .brand{
  font-family:'Playfair Display', serif;
  font-weight:800;
font-size:clamp(1.3rem, 3vw, 2rem);
  color:#ffffff;

  }

  .hero-overlay .hero-title{
    font-family:'Playfair Display', serif;
    font-weight:800;
    font-size:clamp(2rem, 4.5vw, 3.2rem);
    color:#ffffff;
    max-width:700px;
  }

  .hero-overlay .hero-sub{
    color:#FFEBCE;
    font-size:1.05rem;
    max-width:480px;
  }

  .hero-overlay .hero-btn{
    margin-top:8px;
  }

  /* ---------- Sections ---------- */
  .section{
    padding:90px 0;
  }

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

  .row.reverse .col-text{ order:2; }
  .row.reverse .col-image{ order:1; }

  .col-image img{
    width:100%;
    aspect-ratio: 1 / 0.99;
    object-fit:cover;
    border-radius:14px;
    transition:transform .4s ease, box-shadow .4s ease;
  }

  .col-image img:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 30px rgba(64,53,43,0.18);
  }

  .eyebrow-name{
    font-family:'Playfair Display', serif;
    font-weight:800;
    font-size:1.1rem;
    color:#40352B;
    margin-bottom:14px;
  }

  h2{
    font-size:clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom:22px;
    letter-spacing:0.5px;
  }

  .col-text p{
    margin-bottom:18px;
    font-size:1rem;
    color:#4A3F35;
    max-width:460px;
  }

  .col-text p:last-child{ margin-bottom:0; }

  .cta-line{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-top:24px;
}

.cta-line .cta-lead{
  font-weight:600;
  color:#40352B;
}

.cta-line .btn{
  margin-top:14px;
}

  /* Booking section */
  .booking .col-text{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .btn{
    display:inline-block;
    margin-top:28px;
    background:#CCA47F;
    color:#40352B;
    font-weight:500;
    font-size:0.95rem;
    padding:14px 38px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    width:fit-content;
    transition:transform .2s ease, box-shadow .2s ease;
  }

  .btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(64,53,43,0.25);
  }

  .btn.small{
    padding:10px 26px;
    font-size:0.85rem;
    margin-top:0;
  }

  /* ---------- Page header (Services / Products) ---------- */
  .page-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
  }

  .page-header h2{ margin-bottom:16px; }

  .page-header p{
    font-size:1.05rem;
    color:#4A3F35;
  }

  /* ---------- Placeholder image ---------- */
  .placeholder-img{
    width:100%;
    aspect-ratio:1/1;
    background:#F5E3C6;
    border:2px dashed rgba(64,53,43,0.25);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:12px;
    color:#7a6b5a;
    overflow:hidden;
    position:relative;
  }

  .placeholder-img img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .placeholder-img span{
    font-size:0.8rem;
    font-weight:500;
    color:#7a6b5a;
  }

  /* ---------- Services page ---------- */
  .service-category{
    margin-bottom:64px;
  }

  .service-category:last-child{ margin-bottom:0; }

  .service-category h2{
    font-size:1.6rem;
    margin-bottom:8px;
  }

  .service-category .category-note{
    color:#5C4B3B;
    margin-bottom:26px;
    font-size:0.95rem;
  }

  .service-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:22px 0;
    border-bottom:1px solid rgba(64,53,43,0.15);
  }

  .service-category .service-item:last-child{ border-bottom:none; }

  .service-info h3{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:1.05rem;
    color:#40352B;
    margin-bottom:4px;
  }

  .service-info p{
    font-size:0.88rem;
    color:#5C4B3B;
  }

  .service-meta{
    display:flex;
    align-items:center;
    gap:22px;
    flex-shrink:0;
  }

  .service-price{
    font-weight:600;
    color:#40352B;
    min-width:64px;
    text-align:right;
  }

  /* ---------- Products page ---------- */
  .product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:36px;
  }

  .product-card{
    background:#FFF6E9;
    border-radius:14px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform .3s ease, box-shadow .3s ease;
  }

  .product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(64,53,43,0.15);
  }

  .product-card .placeholder-img{
    border-radius:0;
    border:none;
  }

  .product-info{
    padding:18px 20px 22px;
    display:flex;
    flex-direction:column;
    gap:6px;
    flex:1;
  }

  .product-info h3{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:1rem;
    color:#40352B;
  }

  .product-info p{
    font-size:0.85rem;
    color:#5C4B3B;
  }

  .product-price{
    font-weight:700;
    color:#40352B;
    margin-top:auto;
    padding-top:10px;
  }

  .product-info .btn{
    align-self:center;
    margin-top:14px;
  }

  /* ---------- Footer ---------- */
  footer{
    background:#CCA47F;
    padding:64px 0 40px;
    margin-top:40px;
  }

  .footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
    text-align:center;
  }

  .footer-grid h3{
    font-family:'Playfair Display', serif;
    font-size:1.15rem;
    margin-bottom:20px;
    color:#000000;
  }

  .footer-grid ul{ list-style:none; }

  .contact-list li{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:14px;
    font-size:0.95rem;
    font-weight:500;
    color:#000000;
  }

  .contact-list svg{ width:16px; height:16px; flex-shrink:0; }

  .footer-links li{
    margin-bottom:12px;
    font-size:0.95rem;
    font-weight:500;
    color:#000000;
  }

  .footer-links a{
    transition:opacity .2s ease;
  }

  .footer-links a:hover{
    opacity:0.65;
  }

.social-icons{
  display:flex;
  gap:2px;
  justify-content:center;
}

.social-icons a{
  width:54px;
  height:54px;
  background:none;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.social-icons svg{
  width:32px;
  height:32px;
}
  
  .social-icons a:hover{
    transform:translateY(-3px);
    opacity:0.65;
  }



  /* ---------- Responsive ---------- */
  @media (max-width:860px){
    .container{ padding:0 24px; }

    nav ul{
      position:fixed;
      inset:0;
      width:100%;
      height:100vh;
      background:#FFEBCE;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:32px;
      opacity:0;
      visibility:hidden;
      transform:translateY(-16px);
      transition:opacity .3s ease, transform .3s ease, visibility .3s;
      z-index:200;
    }

    nav ul.open{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    nav ul li a{
      font-size:1.3rem;
    }

    .menu-toggle{
      display:flex;
      position:relative;
      z-index:250;
    }

    .row, .row.reverse{
      grid-template-columns:1fr;
      gap:32px;
    }

    .col-image{ order:-1; }
    .col-text{ order:2; }

    .col-text p{ max-width:100%; }

  .cta-line{
  align-items:center;
}

.cta-line .cta-lead{
  align-self:center;
  text-align:center;
}

    .section{ padding:56px 0; }

    .footer-grid{
      grid-template-columns:1fr;
      gap:36px;
    }
  }

  @media (max-width:600px){
    .hero{ height:250px; min-height:0; }

    .col-image img{
      height:250px;
      aspect-ratio:auto;
      border-radius:10px;
    }

    .logo-text
    { 
      font-size:1.2rem; 
    }

    .section{ padding:44px 0; }

    .product-grid{
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }

    .service-item{
      flex-direction:column;
      align-items:flex-start;
      gap:12px;
    }

    .service-meta{
      width:100%;
      justify-content:space-between;
    }
  }