:root{
  --scarlet:#A31E2E;
  --scarlet-deep:#7C1522;
  --ink:#241E1B;
  --ivory:#FBF7F1;
  --paper:#F4EEE4;
  --gold:#B8935A;
  --stone:#7A716A;
  --line: rgba(36,30,27,0.12);
}

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

html{scroll-behavior:smooth;}

body{
  font-family:'Jost',sans-serif;
  color:var(--ink);
  background:var(--ivory);
  line-height:1.65;
  font-weight:400;
  overflow-x:hidden;
}

h1,h2,h3,.brand{
  font-family:'Playfair Display',serif;
}

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

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.72rem;
  color:var(--scarlet);
  font-weight:600;
}

/* --- signature sash divider, echoing the gold runner across every bed in the hotel --- */
.sash{
  position:relative;
  width:86px;
  height:10px;
  margin:18px 0 22px;
}
.sash::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  background:linear-gradient(100deg, var(--gold) 0%, #E6C98A 45%, var(--gold) 100%);
  transform:skewX(-22deg);
  border-radius:2px;
  box-shadow:0 2px 6px rgba(184,147,90,0.35);
}
.sash.center{margin-left:auto;margin-right:auto;}

/* ---------- NAV ---------- */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(251,247,241,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:16px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  font-size:1.5rem;
  font-weight:700;
  color:var(--scarlet);
  letter-spacing:.02em;
}
.brand span{
  display:block;
  font-family:'Jost',sans-serif;
  font-size:.6rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--stone);
  font-weight:500;
}
nav ul{display:flex;gap:38px;}
nav a{
  font-size:.92rem;
  font-weight:500;
  letter-spacing:.02em;
  color:var(--ink);
  position:relative;
  padding-bottom:4px;
}
nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--scarlet);
  transition:width .25s ease;
}
nav a:hover::after{width:100%;}

.nav-toggle{display:none;}
.burger{display:none;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  background:url("images/Hotel_Scarlet.jpeg") center/cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(36,30,27,0.15) 0%, rgba(36,30,27,0.35) 55%, rgba(36,30,27,0.85) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  padding:0 28px 90px;
  color:#fff;
}
.hero-content .eyebrow{color:#E6C98A;}
.hero-content h1{
  font-size:clamp(2.4rem, 6vw, 4.4rem);
  font-weight:700;
  line-height:1.08;
  margin-top:14px;
  max-width:820px;
}
.hero-content p{
  margin-top:20px;
  max-width:520px;
  font-size:1.05rem;
  font-weight:300;
  color:#EDE7DD;
}
.btn{
  display:inline-block;
  margin-top:34px;
  padding:15px 34px;
  background:var(--scarlet);
  color:#fff;
  font-size:.85rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:600;
  border-radius:2px;
  transition:background .25s ease, transform .25s ease;
}
.btn:hover{background:var(--scarlet-deep);transform:translateY(-2px);}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,0.6);
}
.btn.ghost:hover{background:rgba(255,255,255,0.12);}

/* ---------- SECTION generic ---------- */
section{padding:110px 28px;}
.container{max-width:1180px;margin:0 auto;}
.section-head{max-width:640px;margin-bottom:56px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{
  font-size:clamp(1.9rem,3.4vw,2.7rem);
  font-weight:600;
  margin-top:10px;
}
.section-head p{color:var(--stone);margin-top:16px;font-size:1rem;}

/* ---------- HIGHLIGHTS (home) ---------- */
.highlights{
  background:var(--paper);
}
.highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.highlight-card{
  background:var(--ivory);
  padding:38px 30px;
  border:1px solid var(--line);
  border-radius:4px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.highlight-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(36,30,27,0.08);}
.highlight-icon{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--scarlet);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;
  font-size:1.2rem;
  margin-bottom:20px;
}
.highlight-card h3{
  font-family:'Jost',sans-serif;
  font-size:1.1rem;
  font-weight:600;
  margin-bottom:10px;
}
.highlight-card p{color:var(--stone);font-size:.92rem;}

/* ---------- ABOUT ---------- */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.about-img{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  aspect-ratio:4/5;
}
.about-img img{width:100%;height:100%;object-fit:cover;}
.about-text p{
  color:var(--stone);
  margin-bottom:16px;
  font-size:.99rem;
}
.about-text .tagline{
  margin-top:26px;
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:1.3rem;
  color:var(--scarlet-deep);
}

/* ---------- GALLERY ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:16px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:3px;
}
.gallery-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.gallery-item:hover img{transform:scale(1.08);}
.gallery-item .tag{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:16px 18px 14px;
  background:linear-gradient(0deg, rgba(20,15,13,0.82) 0%, rgba(20,15,13,0) 100%);
  color:#fff;
  font-size:.88rem;
  letter-spacing:.03em;
  font-weight:500;
}
.gallery-item.wide{grid-column:span 2;}
.gallery-item.tall{grid-row:span 2;}

/* ---------- CONTACT ---------- */
.contact-wrap{
  background:var(--ink);
  color:#EDE7DD;
}
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:60px;
  align-items:stretch;
}
.contact-info .eyebrow{color:#E6C98A;}
.contact-info h2{color:#fff;}
.contact-list{margin-top:34px;}
.contact-list li{
  display:flex;
  gap:18px;
  padding:22px 0;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.contact-list li:first-child{padding-top:0;}
.ci-icon{
  width:38px;height:38px;flex:none;
  border-radius:50%;
  border:1px solid var(--gold);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;
}
.ci-label{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.7rem;
  color:var(--gold);
  margin-bottom:6px;
}
.ci-value{font-size:1rem;color:#fff;}
.ci-value a{border-bottom:1px solid rgba(255,255,255,0.3);}
.map-frame{
  border-radius:4px;
  overflow:hidden;
  min-height:380px;
  border:1px solid rgba(255,255,255,0.12);
}
.map-frame iframe{width:100%;height:100%;min-height:380px;border:0;filter:grayscale(0.15) contrast(1.05);}

/* ---------- FOOTER ---------- */
footer{
  background:var(--ink);
  color:rgba(255,255,255,0.55);
  text-align:center;
  padding:30px 28px;
  font-size:.82rem;
  border-top:1px solid rgba(255,255,255,0.1);
}
footer .brand{color:#fff;font-size:1.1rem;display:block;margin-bottom:6px;}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .highlight-grid{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .about-img{aspect-ratio:16/10;}
  .contact-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:200px;}
  .gallery-item.wide{grid-column:span 2;}
}

@media (max-width: 720px){
  .nav-wrap{padding:14px 20px;}
  nav ul{
    position:fixed;
    top:64px; right:0;
    flex-direction:column;
    background:var(--ivory);
    width:220px;
    gap:0;
    max-height:0;
    overflow:hidden;
    border-left:1px solid var(--line);
    border-bottom:1px solid var(--line);
    transition:max-height .3s ease;
  }
  nav ul li{padding:16px 24px;border-bottom:1px solid var(--line);}
  .nav-toggle:checked ~ nav ul{max-height:320px;}
  .burger{
    display:block;
    font-size:1.6rem;
    cursor:pointer;
    color:var(--scarlet);
    user-select:none;
  }
  section{padding:80px 20px;}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:170px;}
}
