:root{
  --cream:#f9f5ec;
  --cream-soft:#fdfbf6;
  --paper:#fffdf8;
  --border:#e3dac6;
  --border-soft:#efe7d4;
  --text:#4a3829;
  --text-muted:#7a6e60;
  --heading:#3a2c1f;
  --brown:#8b6f47;
  --brown-deep:#6b5538;
  --sage:#7c8d6e;
  --sage-deep:#5d6c50;
  --rust:#a85a3a;
  --notice-bg:#f4ead4;
  --notice-border:#dcc88c;
  --notice-text:#5a4517;
  --shadow:0 4px 20px rgba(74,56,41,0.08);
  --shadow-lg:0 12px 40px rgba(74,56,41,0.12);
  --radius:6px;
  --radius-lg:10px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Lora','Georgia',serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.7;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brown-deep);text-decoration:underline;text-decoration-color:rgba(139,111,71,0.3);text-underline-offset:3px;transition:all .2s}
a:hover{color:var(--rust);text-decoration-color:var(--rust)}

h1,h2,h3,h4{font-family:'Playfair Display',Georgia,serif;color:var(--heading);font-weight:600;line-height:1.25}
h1{font-size:clamp(2rem,4.5vw,3.4rem);font-weight:700}
h2{font-size:clamp(1.6rem,3vw,2.2rem);margin-bottom:18px}
h3{font-size:1.3rem;margin-bottom:10px}
p{margin-bottom:16px}
p:last-child{margin-bottom:0}

.container{max-width:1100px;margin:0 auto;padding:0 24px}
.container--narrow{max-width:760px}

/* Header — overlaid transparently on the full-screen hero */
.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:3;
  padding:28px 0 20px;
  background:transparent;
}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.brand{display:flex;flex-direction:column;text-decoration:none}
.brand__name{
  font-family:'Playfair Display',serif;
  font-size:24px;
  font-weight:700;
  color:#fff;
  letter-spacing:.5px;
  text-decoration:none;
  text-shadow:0 1px 12px rgba(0,0,0,.45);
}
.brand__location{
  font-family:'Lora',serif;
  font-size:13px;
  color:rgba(255,255,255,.85);
  letter-spacing:1px;
  text-transform:uppercase;
  margin-top:2px;
  text-shadow:0 1px 10px rgba(0,0,0,.45);
}
.site-header__contact{
  font-size:14px;
  color:rgba(255,255,255,.85);
  text-align:right;
  text-shadow:0 1px 10px rgba(0,0,0,.45);
}
.site-header__contact a{color:#fff;text-decoration:none;font-weight:600}
.site-header__contact a:hover{color:#f2d9b8}
.site-header__phone{display:inline-flex;align-items:center;gap:6px}

/* Hero — full-screen cottage image with overlaid text */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{width:100%;height:100%;object-fit:cover;object-position:center 42%}
.hero__scrim{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(20,14,8,.45) 0%,rgba(20,14,8,0) 28%,rgba(20,14,8,0) 46%,rgba(20,14,8,.74) 100%);
}
.hero__content{
  position:relative;z-index:2;width:100%;
  padding:0 0 64px;
  color:#f9f5ec;
}
.hero__eyebrow{
  font-family:'Lora',serif;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:3px;
  color:#f2d9b8;
  margin-bottom:18px;
  font-style:italic;
  text-shadow:0 1px 10px rgba(0,0,0,.4);
}
.hero h1,.hero__title{color:#fff;max-width:18ch;margin-bottom:22px;line-height:1.18;text-shadow:0 2px 18px rgba(0,0,0,.45)}
.hero__lede{font-size:18px;line-height:1.75;color:rgba(249,245,236,.94);margin-bottom:0;max-width:54ch;text-shadow:0 1px 12px rgba(0,0,0,.4)}

/* Notice band */
.notice{
  background:var(--notice-bg);
  border-top:1px solid var(--notice-border);
  border-bottom:1px solid var(--notice-border);
  padding:38px 0;
}
.notice__inner{display:flex;gap:24px;align-items:flex-start}
.notice__icon{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--notice-border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Playfair Display',serif;
  font-size:22px;
  color:var(--notice-text);
  font-weight:700;
}
.notice__body h2{
  font-size:1.4rem;
  margin-bottom:8px;
  color:var(--notice-text);
}
.notice__body p{
  color:var(--notice-text);
  font-size:16px;
  margin-bottom:0;
}

/* Sections */
.section{padding:80px 0}
.section--cream{background:var(--cream-soft)}
.section__eyebrow{
  font-family:'Lora',serif;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:3px;
  color:var(--rust);
  font-style:italic;
  margin-bottom:14px;
  text-align:center;
}
.section__title{text-align:center;margin-bottom:14px}
.section__intro{
  text-align:center;
  color:var(--text-muted);
  font-size:17px;
  max-width:620px;
  margin:0 auto 50px;
}

/* About — cottage facts */
.about-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  margin-top:34px;
}
.about-text p{margin-bottom:18px;font-size:17px}
.about-photo{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:3/2;
  background:var(--border-soft);
}
.about-photo img{width:100%;height:100%;object-fit:cover}

.facts{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
  margin-top:50px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
.fact{
  background:var(--paper);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  padding:24px 20px;
  text-align:center;
}
.fact__num{
  font-family:'Playfair Display',serif;
  font-size:2.4rem;
  font-weight:700;
  color:var(--brown);
  line-height:1;
  margin-bottom:6px;
}
.fact__label{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--text-muted);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.gallery__item{
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:3/2;
  background:var(--border-soft);
  box-shadow:0 2px 10px rgba(74,56,41,0.06);
  transition:transform .35s ease,box-shadow .35s ease;
}
.gallery__item:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.6,.2,1)}
.gallery__item:hover img{transform:scale(1.06)}

/* Contact */
.contact{
  background:var(--paper);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-lg);
  padding:48px 48px 40px;
  box-shadow:var(--shadow);
  max-width:680px;
  margin:0 auto;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px}
.form-field{display:flex;flex-direction:column;margin-bottom:20px}
.form-field label{
  font-size:13px;
  font-weight:600;
  letter-spacing:.5px;
  color:var(--heading);
  margin-bottom:8px;
  text-transform:uppercase;
}
.form-field label .req{color:var(--rust);margin-left:3px}
.form-field input,
.form-field textarea{
  font-family:'Lora',serif;
  font-size:16px;
  padding:13px 14px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--cream-soft);
  color:var(--text);
  transition:border-color .2s,background .2s;
  width:100%;
}
.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--brown);
  background:#fff;
}
.form-field textarea{resize:vertical;min-height:130px;line-height:1.6}
.form-field--err input,
.form-field--err textarea{border-color:var(--rust);background:#fcf4f0}
.form-field__err{
  font-size:13px;
  color:var(--rust);
  margin-top:6px;
  font-style:italic;
  display:none;
}
.form-field--err .form-field__err{display:block}

.form-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--brown);
  color:#fff;
  border:none;
  font-family:'Lora',serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
  padding:15px 36px;
  border-radius:var(--radius);
  cursor:pointer;
  transition:background .2s,transform .1s;
  min-width:200px;
}
.form-submit:hover{background:var(--brown-deep)}
.form-submit:active{transform:translateY(1px)}
.form-submit:disabled{opacity:.6;cursor:not-allowed}

.form-footer{
  text-align:center;
  font-size:13px;
  color:var(--text-muted);
  margin-top:18px;
}

.form-success{
  display:none;
  text-align:center;
  padding:20px 0;
}
.form-success__icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--sage);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin:0 auto 18px;
  font-family:'Playfair Display',serif;
}
.form-success h3{color:var(--sage-deep);margin-bottom:10px}
.form-success p{color:var(--text-muted)}

.contact--sent .form-success{display:block}
.contact--sent form{display:none}

/* Footer */
.site-footer{
  background:var(--brown-deep);
  color:#e8dec8;
  padding:50px 0 30px;
  font-size:14px;
}
.site-footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:40px;
  margin-bottom:36px;
}
.site-footer h4{
  font-family:'Playfair Display',serif;
  font-size:16px;
  color:#fff;
  margin-bottom:14px;
  font-weight:600;
}
.site-footer p,.site-footer li{color:#cfc1a5;line-height:1.7}
.site-footer ul{list-style:none}
.site-footer a{color:#e8dec8;text-decoration:none}
.site-footer a:hover{color:#fff;text-decoration:underline}
.site-footer__bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:#a89881;
}
.site-footer__bottom a{color:#a89881}

/* Responsive */
@media (max-width:880px){
  .hero__content{padding-bottom:44px}
  .section{padding:56px 0}
  .about-grid{grid-template-columns:1fr;gap:36px}
  .about-photo{max-width:480px;margin:0 auto;aspect-ratio:3/2}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .contact{padding:32px 24px 28px}
  .form-row{grid-template-columns:1fr;gap:0}
  .site-footer__grid{grid-template-columns:1fr;gap:28px}
  .site-header{padding:18px 0}
  .site-header__inner{flex-direction:row;align-items:center;gap:12px}
  .site-header__contact{text-align:right}
  .notice__inner{gap:18px}
  .notice__icon{width:40px;height:40px;font-size:18px}
}
@media (max-width:600px){
  .brand__name{font-size:19px}
  .brand__location{display:none}
  .site-header__contact{font-size:12px}
  .hero__eyebrow{font-size:11px;letter-spacing:2px;margin-bottom:12px}
  .hero h1,.hero__title{font-size:1.75rem;line-height:1.22;margin-bottom:16px;max-width:none}
  .hero__lede{font-size:15px;line-height:1.6}
  .hero__scrim{background:linear-gradient(180deg,rgba(20,14,8,.6) 0%,rgba(20,14,8,.12) 26%,rgba(20,14,8,.18) 52%,rgba(20,14,8,.84) 100%)}
}
@media (max-height:600px) and (orientation:landscape){
  .site-header{padding:12px 0}
  .brand__name{font-size:19px}
  .brand__location{display:none}
  .site-header__contact{font-size:12px}
  .hero__content{padding-bottom:22px}
  .hero__eyebrow{font-size:11px;letter-spacing:2px;margin-bottom:8px}
  .hero h1,.hero__title{font-size:1.5rem;line-height:1.2;margin-bottom:10px;max-width:30ch}
  .hero__lede{font-size:14px;line-height:1.5;max-width:70ch}
}
@media (max-width:480px){
  body{font-size:16px}
  .gallery{grid-template-columns:1fr;gap:10px}
  .facts{grid-template-columns:repeat(2,1fr);gap:12px}
  .fact{padding:18px 14px}
  .fact__num{font-size:1.9rem}
}
