:root{
  --bg:#0f0f12;
  --ink:#f5f5f5;
  --muted:#cfcfd6;
  --paper:#f1f0ee;
  --paper2:#e9e6e1;
  --line:rgba(255,255,255,.12);
  --radius:16px;
  --shadow:0 10px 35px rgba(0,0,0,.22);
  --max:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--paper);
  color:#111;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{
  font:inherit;
  background:none;
  border:none;
  color:inherit;
  padding:0;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* Announcement bar */
.announcement-bar{
  background:#efe7d6;
  color:#2b2418;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.announcement-inner{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:8px 22px;
  text-align:center;
}
.announcement-text{
  font-size:13px;
  letter-spacing:.2px;
}
.announcement-close{
  font-size:16px;
  line-height:1;
  cursor:pointer;
  opacity:.7;
}
.announcement-close:hover{opacity:1}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(241,240,238,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.navbar{
  height:68px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  display:block;
  height:34px;
  width:auto;
  max-height:36px;
  object-fit:contain;
}
.nav{
  display:flex;
  gap:22px;
  font-size:14px;
}
.nav a{opacity:.78}
.nav a:hover{opacity:1}
.nav a.active{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:6px;
}
.nav .book-btn{
  padding:10px 14px;
  border:1px solid rgba(0,0,0,.2);
  border-radius:10px;
  opacity:1;
}

/* Buttons */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.65);
  color:var(--ink);
}
.btn:hover{background:rgba(255,255,255,.08)}

/* Hero */
.hero{
  background:var(--bg);
  color:var(--ink);
  padding:90px 0 40px;
  text-align:center;
}
.hero h1{
  font-size:54px;
  line-height:1.05;
  margin:0;
}
.hero p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:14px;
}
.hero .cta{margin-top:22px}

/* Banner */
.banner{
  background:var(--bg);
  padding-bottom:70px;
  text-align:center;
}
.banner .container{
  display:flex;
  justify-content:center;
}
.banner img{
  border-radius:12px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

/* Home-only layout adjustments */
.home-hero .container,
.home-banner .container{
  max-width:980px;
}
.home-banner{
  padding:30px 0 80px;
}
.home-banner img{
  width:100%;
  max-width:820px;
}
.home-hero{
  padding:80px 0 28px;
}
.home-hero h1{
  font-size:44px;
  line-height:1.1;
  font-weight:500;
  letter-spacing:.2px;
}
.home-hero p{
  margin-top:10px;
}
.home-hero .cta{
  margin-top:16px;
}

/* Light section */
.section{
  background:var(--paper2);
  padding:75px 0;
  text-align:center;
}
.section h2{
  font-size:40px;
  margin:0;
}
.section .desc{
  margin-top:12px;
  font-size:14px;
  color:#333;
}

.icon-row{
  margin-top:46px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.icon-card img{
  width:150px;
  height:150px;
  margin:0 auto 16px;
}
.icon-card h3{
  margin:0;
  font-size:20px;
}
.icon-card p{
  margin:10px auto 0;
  font-size:13px;
  color:#444;
  max-width:250px;
}

/* Footer */
.footer{
  background:#eae7e2;
  padding:45px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .6fr .7fr;
  gap:25px;
}
.footer h5{
  margin:0 0 10px;
  font-size:12px;
  text-transform:uppercase;
}
.footer .meta{
  font-size:12px;
  color:#333;
  opacity:.85;
}
.footer a{display:block;font-size:12px;padding:4px 0}
.footer-bottom{
  margin-top:22px;
  border-top:1px solid rgba(0,0,0,.1);
  padding-top:12px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

@media(max-width:980px){
  .hero h1{font-size:42px}
}
@media(min-width:1024px){
  .home-hero h1{
    white-space:nowrap;
    font-size:42px;
    letter-spacing:.1px;
  }
}
@media(max-width:640px){
  .icon-row{grid-template-columns:1fr}
}
