:root{
  --bg: #fbf7ea;
  --bg2:#f4eddc;
  --text:#2b241d;
  --muted:#5b5046;
  --primary:#d7883c;
  --primary2:#7e4029;
  --card:#ffffffcc;
  --border:#e7dcc7;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1100px;
  --focus: 0 0 0 4px rgba(215,136,60,.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 400px at 20% 0%, rgba(215,136,60,.25), transparent 60%),
    radial-gradient(900px 380px at 90% 10%, rgba(126,64,41,.15), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:18px;
  top:18px;
  width:auto;
  height:auto;
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  box-shadow:var(--shadow);
  outline:none;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,247,234,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.header__inner--stacked{
  flex-direction:column;
  justify-content:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand--centered{
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:14px;
}

.brand__logo{
  width:44px;
  height:44px;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}

.brand__logo--large{
  width:88px;
  height:88px;
  border-radius:24px;
  box-shadow:0 14px 32px rgba(0,0,0,.15);
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand__text--centered{
  align-items:center;
}

.brand__name{
  font-weight:800;
  letter-spacing:.2px;
}

.brand__name--large{
  font-size:2rem;
  font-weight:900;
}

.brand__sub{
  color:var(--muted);
  font-weight:600;
  font-size:.92rem;
}

.brand__sub--large{
  color:var(--primary2);
  font-size:1.2rem;
  font-weight:800;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:650;
}

.nav a:hover{color:var(--text)}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.nav-toggle:focus{
  outline:none;
  box-shadow:var(--shadow), var(--focus);
}

.nav-toggle__bar{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:4px 0;
  border-radius:2px;
}

.sr-only{
  position:absolute;
  left:-9999px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), #f1b15c);
  color:#1a120c;
  font-weight:800;
  text-decoration:none;
  border:0;
  box-shadow:0 10px 24px rgba(215,136,60,.22);
  cursor:pointer;
}

.btn:hover{transform:translateY(-1px)}

.btn:focus{
  outline:none;
  box-shadow:var(--shadow), var(--focus);
}

.btn--ghost{
  background:transparent;
  border:1px solid var(--border);
  box-shadow:none;
  color:var(--text);
}

.btn--small{
  padding:10px 12px;
  border-radius:12px;
}

.btn--full{width:100%}

.hero{padding:34px 0 22px}

.hero__inner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.hero__content h1{
  margin:0 0 16px;
}

.hero__headline{
  font-size:clamp(1.45rem, 2vw, 1.9rem);
  line-height:1.18;
  font-weight:800;
}

.lead{
  color:var(--muted);
  font-size:1.05rem;
  margin:0 0 18px;
  max-width:60ch;
}

.lead--mission{
  background:rgba(255,255,255,.58);
  border:1px solid rgba(215,136,60,.30);
  border-radius:16px;
  padding:16px;
  color:var(--text);
  box-shadow:var(--shadow);
}

.lead--owner{
  font-size:1.35rem;
  color:var(--primary2);
  margin-top:8px;
  font-weight:900;
}

.lead--ratio{
  font-size:1.08rem;
  color:var(--text);
  margin-top:2px;
  font-weight:800;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 10px;
}

.hero__badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.badge{
  background:#fff;
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:.92rem;
}

.hero__card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.hero__cardTitle{margin:0 0 6px}

.hero__cardText{
  margin:0 0 14px;
  color:var(--muted);
}

.hero__cardGrid{
  display:grid;
  gap:12px;
  margin:12px 0 14px;
}

.hero__cardGrid .value a{
  display:block;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.label{
  color:var(--muted);
  font-weight:700;
  font-size:.92rem;
}

.value{font-weight:900}

.hint{
  color:var(--muted);
  font-size:.86rem;
}

.trust{padding:10px 0 28px}

.trust__inner{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.trust__item{
  background:rgba(255,255,255,.65);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
}

.trust__title{
  font-weight:900;
  margin-bottom:4px;
}

.trust__text{color:var(--muted)}

.section{padding:44px 0}

.section--alt{
  background:linear-gradient(180deg, rgba(244,237,220,.75), rgba(244,237,220,.25));
}

.section__header{margin-bottom:18px}

.section__header h2{
  margin:0 0 6px;
  font-size:1.9rem;
}

.section__header p{
  margin:0;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.card{
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}

.card h3{margin:0 0 8px}

.card p{
  margin:0 0 10px;
  color:var(--muted);
}

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.list li{margin:6px 0}

.two-col{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:start;
}

.aside-card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  position:sticky;
  top:78px;
}

.checklist{
  margin:10px 0 0;
  padding:0;
  list-style:none;
}

.checklist li{
  padding-left:28px;
  margin:10px 0;
  position:relative;
  color:var(--muted);
  font-weight:650;
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(215,136,60,.18);
  color:var(--primary2);
  font-weight:900;
}

.divider{
  height:1px;
  background:var(--border);
  margin:14px 0;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.step{
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  display:flex;
  gap:12px;
}

.step__num{
  width:38px;
  height:38px;
  border-radius:14px;
  background:rgba(215,136,60,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  color:var(--primary2);
}

.step__body h3{margin:0 0 6px}

.step__body p{
  margin:0;
  color:var(--muted);
}

.faq details{
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:12px 14px;
  box-shadow:var(--shadow);
  margin:10px 0;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
}

.faq p{
  color:var(--muted);
  margin:10px 0 0;
}

.virtual-tour__actions{
  margin:16px 0 18px;
}

.tour-gallery{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:12px;
}

.tour-gallery__item{
  display:block;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:var(--shadow);
}

.tour-gallery__item img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.contact-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(360px, .85fr);
  gap:18px;
  align-items:start;
}

.contact-info{
  min-width:0;
}

.contact-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin:16px 0 0;
}

.contact-cards .mini-card:nth-child(1){
  grid-column:1;
}

.contact-cards .mini-card:nth-child(3){
  grid-column:2;
  grid-row:1;
}

.contact-cards .mini-card:nth-child(2){
  grid-column:1 / -1;
  grid-row:2;
}

.mini-card{
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:12px 14px;
  min-width:0;
  overflow:hidden;
}

.contact-value{
  font-weight:900;
  line-height:1.4;
  display:block;
}

.contact-value a{
  display:block;
}

.contact-value--email{
  display:block;
  margin-top:6px;
  font-size:.9rem;
  line-height:1.5;
}

.contact-value--email a{
  display:block;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.hours-card{
  margin-top:20px;
}

.hours-card p{
  margin:0 0 10px;
  color:var(--muted);
}

.form-card{
  min-width:0;
}

.form-card h3{
  margin-top:0;
}

.form-card label{
  display:block;
  margin:10px 0;
  color:var(--muted);
  font-weight:750;
}

input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font:inherit;
  color:var(--text);
}

.form-card input,
.form-card select,
.form-card textarea{
  appearance:none;
  -webkit-appearance:none;
  background-image:none;
}

.form-card textarea{
  min-height:150px;
  resize:vertical;
}

input:focus, select:focus, textarea:focus{
  outline:none;
  box-shadow:var(--focus);
  border-color:rgba(215,136,60,.6);
}

.small{font-size:.9rem}
.muted{color:var(--muted)}

.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  background:rgba(251,247,234,.7);
}

.footer__inner{
  display:grid;
  grid-template-columns:1.3fr .7fr 1fr;
  gap:14px;
  align-items:start;
}

.footer__brand{font-weight:1000}
.footer__muted{color:var(--muted)}

.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer__links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:750;
}

.footer__links a:hover{color:var(--text)}

.footer__copy{
  color:var(--muted);
  text-align:right;
}

@media (max-width: 1100px){
  .contact-cards{
    grid-template-columns:1fr;
  }

  .contact-cards .mini-card:nth-child(1),
  .contact-cards .mini-card:nth-child(2),
  .contact-cards .mini-card:nth-child(3){
    grid-column:auto;
    grid-row:auto;
  }
}

@media (max-width: 920px){
  .hero__inner,
  .two-col,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .brand__logo--large{
    width:74px;
    height:74px;
  }

  .brand__name--large{
    font-size:1.6rem;
  }

  .brand__sub--large{
    font-size:1rem;
  }

  .aside-card{position:static}
  .grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .steps{grid-template-columns:1fr}
  .trust__inner{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}
  .footer__copy{text-align:left}
  .tour-gallery{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav{
    position:absolute;
    right:18px;
    top:66px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    width:min(320px, calc(100vw - 36px));
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
  }

  .nav[data-open="true"]{display:flex}
  .nav a{padding:10px 12px;border-radius:12px}
  .grid{grid-template-columns:1fr}
}