
:root{
  --ink:#20313b;
  --muted:#596c75;
  --paper:#f4f0e8;
  --cream:#fbf7ef;
  --sand:#dcc4a6;
  --line:rgba(32,49,59,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  line-height:1.75;
}
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  padding:20px clamp(22px,6vw,90px);
  background:rgba(244,240,232,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.brand{
  font-size:.82rem;
  letter-spacing:.18em;
  font-weight:800;
  color:var(--ink);
  text-decoration:none;
}
.nav-links{
  display:flex;
  gap:24px;
  font-size:.94rem;
}
.nav a{color:var(--ink);text-decoration:none}
.double-hero{
  min-height:100svh;
  padding:calc(72px + clamp(20px,4vw,48px)) clamp(18px,5vw,70px) clamp(54px,7vw,90px);
  display:grid;
  align-content:center;
  background:radial-gradient(circle at 50% 15%, #fffaf1 0%, var(--paper) 58%, #ece5da 100%);
}
.hero-images{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:14px;
  max-width:1680px;
  width:100%;
  margin:0 auto;
}
.hero-frame{
  position:relative;
  overflow:hidden;
  min-height:46vh;
  box-shadow:0 22px 60px rgba(29,40,46,.10);
  background:#ddd;
}
.hero-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-frame.interior img{object-position:center center}
.hero-frame.garden img{object-position:center center}
.hero-copy{
  max-width:940px;
  margin:clamp(34px,5vw,56px) auto 0;
  text-align:center;
}
.kicker{
  margin:0 0 8px;
  font-size:.92rem;
  letter-spacing:.24em;
  font-weight:800;
  text-transform:uppercase;
}
h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  font-size:clamp(3rem,6vw,5.5rem);
  line-height:1.02;
}
.hero-copy p{
  max-width:790px;
  margin:24px auto 0;
  font-size:clamp(1.04rem,1.5vw,1.28rem);
  color:var(--ink);
}
.btn{
  display:inline-block;
  margin-top:34px;
  padding:15px 28px;
  border-radius:999px;
  background:var(--sand);
  color:var(--ink);
  text-decoration:none;
  font-weight:750;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.86rem;
}
section{
  padding:clamp(70px,9vw,120px) clamp(22px,7vw,110px);
}
.content{
  max-width:960px;
  margin:0 auto;
}
.lead{
  font-size:clamp(1.22rem,2.1vw,1.52rem);
  line-height:1.85;
  color:var(--muted);
}
.short-line{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,3.3vw,3.1rem);
  line-height:1.25;
  color:#31444d;
  margin:55px 0 30px;
}
h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  font-size:clamp(2.4rem,4vw,4rem);
  line-height:1.08;
  margin:0 0 30px;
}
.full-img{
  margin:64px 0;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(29,40,46,.11);
}
.full-img img{width:100%;display:block}
.two-lists{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  margin-top:48px;
}
.panel{
  background:rgba(255,255,255,.42);
  border:1px solid var(--line);
  border-radius:26px;
  padding:34px;
}
.panel h3{
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.8rem;
  font-weight:500;
}
ul{
  margin:0;
  padding-left:1.1rem;
}
li{margin:.35rem 0}
.booking{
  background:var(--cream);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
footer{
  background:#1f2d34;
  color:white;
  padding:72px clamp(22px,7vw,110px);
}
@media(max-width:780px){
  .site-header{padding:16px 20px}
  .nav-links{display:none}
  .double-hero{
    min-height:auto;
    padding:86px 16px 58px;
  }
  .hero-images{
    grid-template-columns:1fr;
    gap:10px;
  }
  .hero-frame{
    min-height:auto;
    aspect-ratio:16/10;
    border-radius:18px;
  }
  .hero-frame.interior{aspect-ratio:4/3}
  .hero-frame.garden{aspect-ratio:4/3}
  .hero-copy{
    margin-top:30px;
    text-align:left;
    padding:0 4px;
  }
  .hero-copy p{margin-left:0;margin-right:0}
  .btn{width:100%;text-align:center}
  .two-lists{grid-template-columns:1fr;gap:20px}
  .panel{padding:26px}
}
@media(min-width:1200px){
  .hero-frame{height:52vh}
}


/* Requested refinement: bullet list text same size as surrounding body copy */
ul, li{
  font-size:1.08rem;
  line-height:1.8;
}
.panel ul,
.panel li{
  font-size:1.08rem;
}

/* Photo carousel */
.photo-carousel{
  position:relative;
  margin:64px 0;
}
.carousel-viewport{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:0 0 18px;
  -webkit-overflow-scrolling:touch;
}
.carousel-viewport::-webkit-scrollbar{
  height:10px;
}
.carousel-viewport::-webkit-scrollbar-thumb{
  background:rgba(32,49,59,.25);
  border-radius:99px;
}
.carousel-slide{
  flex:0 0 min(82vw, 920px);
  scroll-snap-align:center;
  border-radius:26px;
  overflow:hidden;
  background:#ddd;
  box-shadow:0 24px 70px rgba(29,40,46,.11);
}
.carousel-slide img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}
.carousel-controls{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}
.carousel-controls button{
  border:1px solid rgba(32,49,59,.18);
  background:rgba(255,255,255,.55);
  color:var(--ink);
  border-radius:999px;
  padding:10px 16px;
  cursor:pointer;
  font-weight:700;
}
@media(max-width:780px){
  ul, li{font-size:1.03rem}
  .carousel-slide{
    flex-basis:88vw;
    border-radius:18px;
  }
  .carousel-slide img{
    aspect-ratio:4/3;
  }
}
