:root{
  --bg:#fbf7ef;
  --text:#1f2523;
  --muted:#6c706b;
  --line:#e4d8c8;
  --accent:#8b5e3c;
  --accent-dark:#5d3d27;
  --card:#fffaf3;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:18px clamp(18px,4vw,56px);
  background:rgba(251,247,239,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.brand{
  font-family:Georgia,serif;
  font-size:1.35rem;
  color:var(--accent-dark);
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
}

nav{display:flex;gap:20px;flex-wrap:wrap;align-items:center}
nav a,.site-footer a{color:var(--text);text-decoration:none}
nav a:hover,.site-footer a:hover{color:var(--accent)}

.lang-switch{display:flex;gap:6px}
.lang-switch button{
  border:1px solid var(--line);
  background:var(--card);
  color:var(--text);
  border-radius:999px;
  padding:7px 10px;
  cursor:pointer;
  font-weight:700;
}
.lang-switch button.active{
  background:var(--accent);
  color:var(--white);
  border-color:var(--accent);
}

.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
  padding:80px clamp(18px,5vw,72px) 54px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.76rem;
  font-weight:700;
  color:var(--accent);
}

h1,h2,h3{line-height:1.08;margin:0 0 18px}
h1{
  font-family:Georgia,serif;
  font-size:clamp(2.45rem,6vw,5.6rem);
  max-width:980px;
}
h2{
  font-family:Georgia,serif;
  font-size:clamp(2rem,4vw,3.6rem);
}
h3{font-size:1.05rem}

.lead{
  font-size:1.18rem;
  max-width:760px;
  color:var(--muted);
}

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

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:13px 22px;
  font-weight:700;
  text-decoration:none;
  border:1px solid var(--accent);
  cursor:pointer;
}

.button.primary{background:var(--accent);color:var(--white)}
.button.secondary{color:var(--accent-dark);background:transparent}

.hero-card,.booking-box,.features article,.cards article,.faq details,.parking{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 18px 45px rgba(60,39,25,.08);
}

.hero-card{padding:18px}
.hero-card img{
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:22px;
}
.hero-card ul{margin:18px 0 0;padding-left:22px}

.trust-strip{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  padding:12px 18px 44px;
}
.trust-strip span{
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 15px;
  color:var(--muted);
  background:#fff7ed;
}

.section{padding:72px clamp(18px,5vw,72px)}
.two-col{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:44px;
}
.features,.cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.features article,.cards article{padding:22px}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.gallery-grid img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--line);
}

.photo-gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.photo-gallery img{
  width:100%;
  height:310px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid var(--line);
  background:var(--card);
}

.location{background:#fff3e3}
.parking{margin:40px clamp(18px,5vw,72px);padding:38px}

.booking-box{
  margin:40px clamp(18px,5vw,72px);
  padding:38px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:36px;
}
.booking-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.booking-form label{
  display:flex;
  flex-direction:column;
  font-weight:700;
  gap:6px;
}
.booking-form input,.booking-form select,.booking-form textarea{
  border:1px solid var(--line);
  border-radius:14px;
  padding:13px;
  font:inherit;
  background:var(--white);
}
.booking-form textarea{
  min-height:110px;
  grid-column:1/-1;
}
.booking-form button{grid-column:1/-1}
.microcopy{
  grid-column:1/-1;
  color:var(--muted);
  font-size:.92rem;
  margin:0;
}
.faq details{
  padding:22px;
  margin-top:12px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.site-footer{
  border-top:1px solid var(--line);
  padding:36px clamp(18px,5vw,72px);
  text-align:center;
  color:var(--muted);
}

@media (max-width:900px){
  .site-header{align-items:flex-start;flex-direction:column}
  .hero,.two-col,.booking-box{grid-template-columns:1fr}
  nav{gap:12px}
  .photo-gallery{grid-template-columns:1fr}
  .features,.cards,.gallery-grid,.booking-form{grid-template-columns:1fr}
  .hero-card img{height:340px}
  h1{font-size:2.55rem}
}

@media (max-width:520px){
  .hero{padding-top:50px}
  .button{width:100%}
  .photo-gallery img,.gallery-grid img{height:260px}
}
