:root{
  --bg:#fff7ee;
  --ink:#2b241f;
  --card:#ffffff;
  --accent:#e36f4c;
  --accent2:#6fa88a;
  --shadow:0 10px 30px rgba(43,36,31,.10);
  --radius:18px;
}
*{box-sizing:border-box}
body{margin:0;font-family:"Source Sans 3",system-ui,sans-serif;background:var(--bg);color:var(--ink);line-height:1.55}
img{max-width:100%;display:block}
a{color:inherit}

.wrap{max-width:1100px;margin:0 auto;padding:22px}

.nav{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;
  gap:12px 16px;padding:14px 0;
}
.brand{
  display:flex;align-items:center;flex:1;min-width:0;height:44px;
  text-decoration:none;color:inherit;line-height:0;
}
.brand-logo{
  display:block;height:40px;width:auto;max-width:min(100%,190px);
  object-fit:contain;object-position:left center;
}
.brand-logo:focus-visible{outline:2px solid var(--accent);outline-offset:4px;border-radius:4px}
.nav-toggle{
  display:none;align-items:center;justify-content:center;flex-shrink:0;
  width:44px;height:44px;margin:0;padding:0;border:0;border-radius:12px;
  background:rgba(43,36,31,.06);color:inherit;cursor:pointer;
}
.nav-toggle:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.nav-toggle-bars,.nav-toggle-bars::before,.nav-toggle-bars::after{
  display:block;width:20px;height:2px;border-radius:1px;background:currentColor;
}
.nav-toggle-bars{position:relative;transition:background .15s ease}
.nav-toggle-bars::before,.nav-toggle-bars::after{content:"";position:absolute;left:0;transition:transform .2s ease,top .2s ease}
.nav-toggle-bars::before{top:-6px}
.nav-toggle-bars::after{top:6px}
.nav.is-open .nav-toggle-bars{background:transparent}
.nav.is-open .nav-toggle-bars::before{top:0;transform:rotate(45deg)}
.nav.is-open .nav-toggle-bars::after{top:0;transform:rotate(-45deg)}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.navlinks{
  display:flex;gap:14px;flex-wrap:wrap;font-weight:600;
  align-items:center;height:44px;line-height:1;
}
.navlinks a{
  display:inline-flex;align-items:center;height:44px;
  opacity:.85;text-decoration:none;padding:0 2px;
}
@media (min-width:721px){
  .nav{flex-wrap:nowrap;gap:24px}
  .brand{flex:0 1 auto}
  .navlinks{flex:1 1 auto;justify-content:flex-end;flex-wrap:nowrap}
}
.navlinks a:hover{opacity:1}
@media (max-width:720px){
  .nav-toggle{display:inline-flex}
  .navlinks{
    display:none;flex-direction:column;align-items:stretch;flex-wrap:nowrap;
    flex-basis:100%;width:100%;gap:4px;padding-top:12px;margin:0;
    border-top:1px solid rgba(43,36,31,.12);
  }
  .nav.is-open .navlinks{display:flex}
  .navlinks a{padding:12px 4px;border-radius:10px}
  .navlinks a:active{background:rgba(43,36,31,.06)}
}

.hero{
  border-radius:calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
  min-height:520px;
  background:#ddd;
}
.hero>img{display:block;position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 38%}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(43,36,31,.12) 0%, rgba(43,36,31,.22) 42%, rgba(43,36,31,.78) 100%);
}
.hero-copy{
  position:relative;z-index:1;
  padding:52px 28px 96px;max-width:640px;color:#fff;
}
.hero-copy h1{
  margin:0 0 10px;font-family:"Source Serif 4",Georgia,serif;font-size:clamp(34px,5vw,52px);line-height:1.05;
}
.hero-copy p{margin:0;opacity:.95;font-size:18px}
.hero-cta{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  display:flex;gap:12px;flex-wrap:wrap;
  padding:0 28px 24px;
}
@media (max-width:640px){
  .hero{min-height:500px}
  .hero-copy{padding:44px 22px 92px}
  .hero-cta{padding:0 22px 20px}
}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:999px;text-decoration:none;font-weight:700;
  border:1px solid transparent;
  transition:transform .14s ease,box-shadow .16s ease,background-color .16s ease;
}
.btn-primary{background:var(--accent);color:#fff}
.btn-ghost{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.35)}
.btn:hover{transform:translateY(-1px);box-shadow:0 6px 12px rgba(43,36,31,.14)}
.btn:active{transform:translateY(0)}

.section{padding:44px 0}
.grid3{display:grid;grid-template-columns:repeat(12,1fr);gap:16px}
.card{
  grid-column:span 4;background:var(--card);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
}
@media (max-width:900px){.card{grid-column:span 6}}
@media (max-width:640px){.card{grid-column:span 12}}
.card picture{display:block}
.card img,.card picture img{height:170px;object-fit:cover;width:100%}
.card .pad{padding:16px 16px 18px}
.card h3{margin:0 0 8px;font-family:"Source Serif 4",Georgia,serif;font-size:22px}
.card p{margin:0;opacity:.9}
.service-prices{margin:0 0 10px}
.service-price{margin:0;font-weight:700;font-size:1.05rem;color:var(--accent)}
.service-price + .service-price{margin-top:4px}
.card .pad > p:not(.service-price){margin-top:0}
.card img,.card picture img{transition:transform .35s ease}
.card:hover img,.card:hover picture img{transform:scale(1.015)}

.strip{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;margin-top:16px}
@media (max-width:900px){.strip{grid-template-columns:repeat(3,1fr)}}
.strip img{border-radius:14px;height:120px;object-fit:cover;box-shadow:0 8px 18px rgba(43,36,31,.12)}
.strip picture{display:block}
.strip picture img{width:100%}
@media (max-width:900px){
  /* Horizontal strip: one full-width slide per “page”, reliable across WebKit */
  .strip{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:12px;
    scroll-snap-type:x mandatory;
    scroll-padding:0;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
    padding-bottom:8px;
    width:100%;
  }
  .strip picture{
    flex:0 0 min(100%,calc(100vw - 44px));
    width:min(100%,calc(100vw - 44px));
    min-width:0;
    max-width:100%;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
  .strip picture img{
    width:100%;
    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:14px;
    box-shadow:0 8px 18px rgba(43,36,31,.12);
  }
}

footer{padding:30px 0 50px;opacity:.75;font-size:14px}

.section-title{font-family:"Source Serif 4",Georgia,serif;font-size:34px;margin:0 0 14px}
.lead-note{margin:0 0 14px;font-size:17px;opacity:.92}
.mini-list{margin:10px 0 0;padding-left:18px}
.mini-list li{margin:6px 0}
.quote-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:16px}
.quote-card{grid-column:span 4;background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}
.quote-card p{margin:0 0 10px}
.quote-card cite{font-style:normal;font-weight:700;opacity:.85}
@media (max-width:900px){.quote-card{grid-column:span 6}}
@media (max-width:640px){.quote-card{grid-column:span 12}}
.sticky-contact{
  position:fixed;left:0;right:0;bottom:0;z-index:40;
  display:none;gap:10px;padding:10px 14px;
  background:rgba(255,247,238,.96);backdrop-filter:blur(6px);
  border-top:1px solid rgba(43,36,31,.12);
}
.sticky-contact a{
  flex:1;display:inline-flex;justify-content:center;align-items:center;
  min-height:46px;border-radius:999px;text-decoration:none;font-weight:700;
  background:var(--accent);color:#fff;
}
.sticky-contact a:last-child{background:#2b241f}
@media (max-width:900px){
  body{padding-bottom:78px}
  .sticky-contact{display:flex}
}

.contact-separator{
  border:none;
  border-top:1px solid #e9e3dc;
  margin:16px 0;
}

.contact-alert{
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid transparent;
}

.contact-alert--success{
  border-color:#a9d9ba;
  background:#edf9f1;
  color:#1f5f3a;
}

.contact-alert--error{
  border-color:#e5b5ad;
  background:#fff1ef;
  color:#7b241c;
}

.contact-form .form-group{
  margin-bottom:12px;
}

.contact-form label{
  display:block;
  margin:0 0 6px;
  font-weight:600;
}

.contact-form__label{
  display:block;
  margin:0 0 8px;
  font-weight:600;
}

/* Star rating: native radios; high→low in DOM + row-reverse shows 1…5 left to right */
.stars{
  display:flex;
  flex-direction:row-reverse;
  justify-content:flex-end;
  gap:4px;
  width:fit-content;
  max-width:100%;
}
.stars__input{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.stars__label{
  margin:0;
  cursor:pointer;
  font-size:clamp(1.65rem,5vw,2rem);
  line-height:1;
  color:#d7cfc5;
  transition:color .12s ease,transform .12s ease;
  user-select:none;
}
.stars__label:hover,
.stars__label:hover ~ .stars__label,
.stars__input:checked ~ .stars__label{
  color:var(--accent);
}
.stars__label:hover{
  transform:scale(1.06);
}
.stars__input:focus-visible + .stars__label{
  outline:2px solid rgba(227,111,76,.45);
  outline-offset:3px;
  border-radius:4px;
}

.contact-form input:not(.stars__input),
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid #d7cfc5;
  border-radius:12px;
  padding:10px 12px;
  font:inherit;
  line-height:1.35;
  background:#fff;
  color:var(--ink);
}

.contact-form textarea{
  resize:vertical;
  min-height:120px;
}

/* Checkbox + consent: do not inherit full-width text field rules */
.contact-form .form-group--consent label.form-consent-label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
  font-weight:600;
  cursor:pointer;
}
.contact-form .form-group--consent input[type="checkbox"]{
  width:auto;
  min-width:1.125rem;
  height:1.125rem;
  margin:0.35em 0 0;
  padding:0;
  flex-shrink:0;
  border-radius:4px;
  accent-color:var(--accent);
  align-self:flex-start;
}
.contact-form .form-consent-text{
  flex:1;
  min-width:0;
  font-weight:600;
  line-height:1.45;
}

.contact-form input:not(.stars__input):focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible{
  outline:2px solid rgba(227,111,76,.35);
  outline-offset:1px;
  border-color:var(--accent);
}

.contact-honeypot{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

.hero-copy{animation:heroIn .5s cubic-bezier(.22,.61,.36,1) both}
@keyframes heroIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:none}
}

.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .42s ease,transform .42s ease;
  transition-delay:var(--reveal-delay,0ms);
}
.reveal.in-view{opacity:1;transform:none}

@media (prefers-reduced-motion: reduce){
  .hero-copy{animation:none}
  .reveal{opacity:1;transform:none;transition:none}
  .btn,.card img,.card picture img{transition:none}
  .btn:hover,.btn:active{transform:none;box-shadow:none}
  .card:hover img,.card:hover picture img{transform:none}
}

.video-stack{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:960px;
  margin:16px auto 0;
}
.video-facade{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:#121212;
  box-shadow:var(--shadow);
}
.video-facade__btn{
  display:block;
  width:100%;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  color:#fff;
  text-align:left;
  font:inherit;
}
.video-facade__thumb{
  position:relative;
  display:block;
  aspect-ratio:16/9;
  background:#222;
}
.video-facade__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.video-facade__play{
  position:absolute;
  left:50%;
  top:50%;
  width:68px;
  height:48px;
  margin:-24px 0 0 -34px;
  border-radius:14px;
  background:rgba(43,36,31,.55);
  transition:transform .2s ease,background .2s ease;
  pointer-events:none;
}
.video-facade__play::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-40%,-50%);
  border-style:solid;
  border-width:11px 0 11px 18px;
  border-color:transparent transparent transparent #fff;
}
.video-facade__btn:hover .video-facade__play,
.video-facade__btn:focus-visible .video-facade__play{
  background:rgba(227,111,76,.92);
  transform:scale(1.04);
}
.video-facade__btn:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:2px;
}
.video-facade__caption{
  display:block;
  padding:12px 14px;
  font-weight:600;
  font-size:16px;
  background:rgba(43,36,31,.52);
}
.video-embed{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:var(--radius);
  overflow:hidden;
}
.video-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.field-error {
  margin: 6px 0 0;
  color: #b42318;
  font-size: 0.875rem;
  font-weight: 600;
}