:root{
  --bg:#f3eadf;
  --bg-deep:#eadfce;
  --panel:#fbf7f1;
  --panel-2:rgba(255,255,255,.66);
  --text:#1c1a18;
  --muted:#6f665f;
  --accent:#c1440e;
  --green:#2d5016;
  --dark:#1a1a1a;
  --line:rgba(28,26,24,.08);
  --shadow:0 18px 50px rgba(0,0,0,.08);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, #f8efe3 0%, transparent 32%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}

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

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

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(26,26,26,.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  white-space:nowrap;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
}

.nav a{
  color:rgba(255,255,255,.86);
  font-size:14px;
  font-weight:500;
}

.nav a:hover,
.nav a.active{
  color:#fff;
}

.hero-home{
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding:110px 20px 56px;
  background:
    linear-gradient(rgba(26,26,26,.38), rgba(26,26,26,.62)),
    url("images/DSC_2234.jpg") center/cover no-repeat;
  color:#fff;
}

.page-hero{
  min-height:52vh;
  display:flex;
  align-items:flex-end;
  padding:96px 20px 44px;
  color:#fff;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-inner,
.page-hero-inner,
.page-inner{
  max-width:var(--max);
  margin:0 auto;
  width:100%;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero-home h1,
.page-hero h1{
  margin:0 0 14px;
  font-size:clamp(2.5rem, 6vw, 5.4rem);
  line-height:.94;
  letter-spacing:-.05em;
  max-width:10ch;
}

.hero-home p,
.page-hero p{
  margin:0;
  max-width:58ch;
  font-size:1.05rem;
  line-height:1.8;
  color:rgba(255,255,255,.92);
}

.hero-actions{
  margin-top:26px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:15px;
  transition:.2s ease;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.2);
}

.page-section{
  padding:58px 20px 84px;
}

.grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.card{
  background:var(--panel-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.content-card{
  padding:30px;
}

.content-card h2{
  margin:0 0 12px;
  font-size:1.6rem;
  letter-spacing:-.03em;
}

.content-card p{
  margin:0;
  line-height:1.8;
  color:var(--muted);
}

.feature-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.feature-badge{
  background:rgba(255,255,255,.68);
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  font-size:14px;
}

.image-card{
  padding:14px;
}

.image-card img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius:18px;
}

.caption{
  padding:12px 6px 2px;
  font-size:14px;
  color:var(--muted);
}

.icon-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.icon-item{
  padding:26px 22px;
  text-align:left;
}

.icon{
  font-size:28px;
  margin-bottom:12px;
}

.icon-item h3{
  margin:0 0 8px;
  font-size:1.05rem;
}

.icon-item p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:.97rem;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.price-card{
  padding:28px 24px;
  text-align:center;
  position:relative;
}

.price-card.popular{
  border:2px solid var(--accent);
}

.popular-tag{
  position:absolute;
  top:14px;
  right:14px;
  background:var(--accent);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:7px 10px;
  border-radius:999px;
}

.price-card h3{
  margin:12px 0 10px;
  font-size:1.2rem;
}

.price{
  font-size:2rem;
  font-weight:800;
  letter-spacing:-.04em;
}

.price-note{
  margin-top:10px;
  color:var(--muted);
  line-height:1.7;
}

.note-box{
  margin-top:24px;
  padding:22px 24px;
}

.note-box p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.map-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
}

.map-frame{
  overflow:hidden;
  border-radius:24px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  min-height:420px;
}

.map-frame iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

.quick-facts{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.fact{
  padding:18px 20px;
}

.fact strong{
  display:block;
  margin-bottom:4px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.gallery-grid img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.contact-panel{
  max-width:860px;
  margin:0 auto;
}

.contact-row{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.contact-row:last-child{
  border-bottom:none;
}

.label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:700;
}

.value{
  font-size:1.04rem;
  line-height:1.7;
}

.footer{
  padding:38px 20px 48px;
}

.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding-top:24px;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:24px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}

.footer-title{
  color:var(--text);
  font-weight:700;
  margin-bottom:8px;
}

.footer-bottom{
  margin-top:22px;
  color:var(--muted);
  font-size:14px;
}

.section-title{
  margin:0 0 10px;
  font-size:2rem;
  letter-spacing:-.04em;
}

.section-intro{
  margin:0 0 28px;
  color:var(--muted);
  line-height:1.8;
  max-width:62ch;
}

.atmosphere-band{
  margin-top:34px;
  padding:34px;
  border-radius:28px;
  color:#fff;
  background:
    linear-gradient(rgba(26,26,26,.48), rgba(26,26,26,.62)),
    url("images/DSC_2265.jpg") center/cover no-repeat;
}

.atmosphere-band h3{
  margin:0 0 10px;
  font-size:1.5rem;
}

.atmosphere-band p{
  margin:0;
  max-width:54ch;
  line-height:1.8;
  color:rgba(255,255,255,.9);
}

@media (max-width: 1100px){
  .grid-4,
  .pricing-grid,
  .icon-grid,
  .footer-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .grid-2,
  .map-grid,
  .grid-3,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .icon-grid,
  .pricing-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .nav-wrap{
    align-items:flex-start;
    flex-direction:column;
  }

  .page-hero,
  .hero-home{
    min-height:auto;
    padding-top:110px;
    padding-bottom:50px;
  }

  .hero-home h1,
  .page-hero h1{
    max-width:12ch;
  }

  .image-card img,
  .gallery-grid img{
    min-height:unset;
    height:auto;
  }
}