
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --wine:#a3303f;
  --wine-dark:#7d2531;
  --gold:#c49a25;
  --gold-light:#e4c86a;
  --cream:#fbf8f2;
  --soft:#f4eee5;
  --ink:#292525;
  --muted:#66615e;
  --white:#fff;
  --line:#e7ddd1;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(1160px,92%);margin:auto}

/* ---------- ATTRACTIVE LIGHT HEADER ---------- */
.topbar{
  background:linear-gradient(90deg,#8f2938,#a3303f,#8f2938);
  color:#fff;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.topbar .container{
  min-height:44px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.topbar .location,
.topbar .phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
}
.topbar .location span:first-child,
.topbar .phone span:first-child{
  width:25px;
  height:25px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  font-size:13px;
}
.topbar a{color:#fff}
.topbar a:hover{color:#f6df8c}
.navbar{
  position:sticky;
  top:0;
  width:100%;
  z-index:50;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  box-shadow:0 5px 22px rgba(65,42,25,.08);
}
.nav-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
}
.brand img{
  width:68px;
  height:68px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid var(--gold);
  box-shadow:0 3px 12px rgba(0,0,0,.10);
}
.brand-title{
  font-family:"Playfair Display",Georgia,serif;
  font-size:21px;
  line-height:1.1;
  color:var(--wine);
  font-weight:700;
}
.brand-sub{
  margin-top:4px;
  font-size:10px;
  letter-spacing:3.5px;
  color:#777;
  text-transform:uppercase;
}
.menu{
  display:flex;
  gap:28px;
  align-items:center;
  font-size:14px;
  font-weight:700;
}
.menu a{
  position:relative;
  padding:10px 0;
  color:#413c39;
}
.menu a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s;
}
.menu a:hover:after,.menu a.active:after{width:100%}
.menu a:hover,.menu a.active{color:var(--wine)}
.menu .book-btn{
  color:#fff;
  background:var(--wine);
  padding:12px 20px!important;
  border-radius:30px;
  box-shadow:0 5px 14px rgba(163,48,63,.22);
}
.menu .book-btn:hover{background:var(--wine-dark);color:#fff}
.menu .book-btn:after{display:none}

.mobile-toggle{
  display:none;
  color:var(--wine);
  background:none;
  border:0;
  font-size:28px;
  cursor:pointer;
}

/* ---------- HERO ---------- */
.hero{
  min-height:680px;
  position:relative;
  background:url("../images/hero.webp") center/cover no-repeat;
  color:#fff;
  display:flex;
  align-items:center;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(25,20,16,.48),rgba(25,20,16,.10) 68%,rgba(25,20,16,.02));
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:720px;
}
.eyebrow{
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#f3d778;
  font-weight:700;
  margin-bottom:16px;
}
.hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(45px,7vw,78px);
  line-height:1.04;
  font-weight:600;
  margin-bottom:18px;
  text-shadow:0 2px 15px rgba(0,0,0,.22);
}
.hero p{
  font-size:18px;
  max-width:610px;
  color:#fff;
  margin-bottom:30px;
  text-shadow:0 1px 8px rgba(0,0,0,.3);
}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-block;
  padding:13px 24px;
  border-radius:30px;
  font-weight:700;
  font-size:14px;
  transition:.25s;
}
.btn-primary{
  background:var(--wine);
  color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}
.btn-primary:hover{background:var(--wine-dark);transform:translateY(-1px)}
.btn-outline{
  border:1px solid rgba(255,255,255,.85);
  color:#fff;
  background:rgba(255,255,255,.10);
}
.btn-outline:hover{background:#fff;color:var(--wine)}
.btn-light{background:#fff;color:var(--wine)}
.btn-light:hover{background:#fff7e8}

/* ---------- SECTIONS ---------- */
.section{padding:90px 0}
.section-soft{background:var(--cream)}
.section-head{text-align:center;max-width:700px;margin:0 auto 48px}
.kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:3px;
  color:var(--wine);
  font-weight:700;
}
.section h2{
  font-family:"Playfair Display",Georgia,serif;
  color:#302b29;
  font-size:clamp(32px,4vw,48px);
  line-height:1.15;
  margin:9px 0 16px;
}
.section-head p{color:var(--muted)}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.split-img{
  height:520px;
  overflow:hidden;
  border-radius:12px;
  box-shadow:0 16px 40px rgba(68,45,27,.13);
}
.split-img img{width:100%;height:100%;object-fit:cover}
.copy h2{
  font-family:"Playfair Display",Georgia,serif;
  color:#302b29;
  font-size:45px;
  line-height:1.15;
  margin:10px 0 18px;
}
.copy p{color:var(--muted);margin-bottom:18px}
.link{color:var(--wine);font-weight:700}
.link:hover{text-decoration:underline}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.feature{
  background:#fff;
  padding:30px;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:0 7px 22px rgba(66,45,30,.05);
}
.feature-icon{
  width:45px;height:45px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:#fbf2d8;
  color:var(--wine);
  font-size:19px;
  margin-bottom:15px;
}
.feature h3{
  font-family:"Playfair Display",Georgia,serif;
  color:#302b29;
  font-size:23px;
  margin-bottom:8px;
}
.feature p{color:var(--muted);font-size:14px}

.rooms{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(66,45,30,.06);
}
.card-img{height:245px;overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.45s}
.card:hover .card-img img{transform:scale(1.04)}
.card-body{padding:22px}
.card-body h3{
  font-family:"Playfair Display",Georgia,serif;
  color:#302b29;
  font-size:24px;
  margin-bottom:7px;
}
.card-body p{color:var(--muted);font-size:14px}

/* ---------- GALLERY ---------- */
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:170px;
  gap:12px;
}
.gallery figure{overflow:hidden;border-radius:9px}
.gallery img{width:100%;height:100%;object-fit:cover;transition:.4s}
.gallery figure:hover img{transform:scale(1.04)}
.g1{grid-column:span 6;grid-row:span 2}
.g2,.g3,.g4,.g5{grid-column:span 3}
.g6{grid-column:span 6}

/* ---------- CTA / FOOTER ---------- */
.cta{
  background:linear-gradient(120deg,var(--wine),#b74755);
  color:#fff;
  padding:70px 0;
}
.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}
.cta h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:42px;
  line-height:1.15;
}
.cta p{opacity:.9;margin-top:8px}

.footer{
  background:#24201f;
  color:#ddd;
  padding:60px 0 25px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:50px;
}
.footer h3{
  font-family:"Playfair Display",Georgia,serif;
  color:#fff;
  font-size:22px;
  margin-bottom:14px;
}
.footer p,.footer a{color:#bbb;font-size:14px}
.footer-links{display:grid;gap:10px}
.footer-links a{display:flex;align-items:flex-start;gap:8px}
.footer-links a span{color:#f0d477}
.footer a:hover{color:#f1d77b}
.footer-address{
  margin-top:18px;
  padding:14px 16px;
  border-left:3px solid var(--gold);
  background:rgba(255,255,255,.035);
  border-radius:0 7px 7px 0;
}
.footer-address strong{display:block;color:#fff;margin-bottom:5px}
.footer-address p{margin:0;color:#aaa;line-height:1.6}
.map-wrap{
  margin-top:32px;
  overflow:hidden;
  border-radius:12px;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(66,45,30,.10);
}
.map-wrap iframe{
  width:100%;
  height:400px;
  border:0;
  display:block;
}
.contact-note{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
}
.copyright{
  border-top:1px solid #403b39;
  margin-top:45px;
  padding-top:20px;
  color:#999;
  font-size:12px;
  display:flex;
  justify-content:space-between;
}

/* ---------- INNER PAGES ---------- */
.page-hero{
  min-height:390px;
  background:linear-gradient(rgba(48,30,25,.34),rgba(48,30,25,.34)),url("../images/hero.webp") center/cover;
  display:flex;
  align-items:end;
  color:#fff;
  padding:0 0 60px;
}
.page-hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:58px;
  line-height:1.1;
}
.page-hero p{opacity:.95}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}
.contact-box{
  padding:32px;
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:12px;
}
.contact-item{margin-bottom:22px}
.contact-item strong{display:block;margin-bottom:4px;color:#302b29}
.form{display:grid;gap:14px}
.form input,.form textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:5px;
  font:inherit;
}
.form textarea{min-height:150px;resize:vertical}

/* ---------- MOBILE ---------- */
@media(max-width:850px){
  .topbar .container{justify-content:center}
  .topbar .right{display:none}
  .nav-inner{min-height:76px}
  .mobile-toggle{display:block}
  .menu{
    display:none;
    position:absolute;
    top:76px;
    left:4%;
    width:92%;
    background:#fff;
    padding:18px 20px;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    border:1px solid var(--line);
    border-radius:0 0 12px 12px;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
  }
  .menu.open{display:flex}
  .menu a{width:100%}
  .menu .book-btn{width:auto;margin-top:5px}
  .brand img{width:58px;height:58px}
  .hero{min-height:650px}
  .split,.contact-grid{grid-template-columns:1fr;gap:35px}
  .features,.rooms{grid-template-columns:1fr 1fr}
  .split-img{height:390px}
  .cta-inner{flex-direction:column;align-items:flex-start}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .brand-title{font-size:18px}
  .brand-sub{font-size:9px;letter-spacing:2.5px}
  .hero h1{font-size:47px}
  .hero p{font-size:16px}
  .section{padding:65px 0}
  .features,.rooms{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr;grid-auto-rows:150px}
  .g1,.g2,.g3,.g4,.g5,.g6{grid-column:span 1;grid-row:span 1}
  .g1{grid-column:span 2}
  .g6{grid-column:span 2}
  .footer-grid{grid-template-columns:1fr}
  .copyright{display:block}
  .copyright span{display:block;margin-bottom:6px}
  .page-hero{min-height:330px}
  .page-hero h1{font-size:46px}
}
