/* =========================================================
   Lacle Maison
   Palette: bottle green on cool limestone, brass hairlines
   Type: Bodoni Moda (display) / Instrument Sans (everything else)
   ========================================================= */

:root{
  --ink:#101614;
  --bottle:#1C3B32;
  --bottle-deep:#0E211B;
  --limestone:#E9EAE5;
  --paper:#FBFBF9;
  --brass:#B08D57;
  --mist:#C9D2CE;

  --rule:rgba(16,22,20,.14);
  --rule-light:rgba(233,234,229,.20);

  --shell:1200px;
  --gap:clamp(1.5rem,4vw,3rem);

  --display:"Bodoni Moda","Didot","Times New Roman",serif;
  --sans:"Instrument Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--limestone);
  color:var(--ink);
  font-family:var(--sans);
  font-size:clamp(1rem,.96rem + .2vw,1.0625rem);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

.shell{
  width:100%;
  max-width:var(--shell);
  margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,2.5rem);
}

.skip{
  position:absolute;left:-9999px;top:0;z-index:100;
  background:var(--bottle);color:var(--paper);
  padding:.75rem 1.25rem;font-size:.875rem;
}
.skip:focus{left:0}

:where(a,button,select,input,textarea,summary):focus-visible{
  outline:2px solid var(--brass);
  outline-offset:3px;
}

/* ---------- shared type ---------- */

.display{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(2.75rem,1.6rem + 5vw,5.25rem);
  line-height:.98;
  letter-spacing:-.02em;
  margin:0 0 1.25rem;
}
.display--sm{
  font-size:clamp(2rem,1.35rem + 2.6vw,3.25rem);
  line-height:1.06;
  max-width:20ch;
}

.eyebrow{
  font-size:.6875rem;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(16,22,20,.55);
  margin:0 0 1.25rem;
  display:flex;
  align-items:center;
  gap:.75rem;
}
.eyebrow::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--brass);
  opacity:.5;
  max-width:4rem;
}
.eyebrow--light{color:rgba(233,234,229,.6)}

.label{
  font-size:.6875rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  margin:0;
}
.label--dim{color:rgba(233,234,229,.5);margin-bottom:.85rem}

.lede{
  font-size:clamp(1.0625rem,1rem + .35vw,1.25rem);
  line-height:1.55;
  max-width:46ch;
  color:rgba(16,22,20,.78);
  margin:0 0 2rem;
}
.lede--tight{margin-bottom:0}

.fineprint{
  font-size:.8125rem;
  line-height:1.5;
  color:rgba(16,22,20,.55);
  margin:1rem 0 0;
}
.fineprint--light{color:rgba(233,234,229,.55)}

/* ---------- masthead ---------- */

.masthead{
  position:sticky;top:0;z-index:50;
  background:rgba(233,234,229,.86);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--rule);
}
.masthead__row{
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;
  min-height:74px;
}

.wordmark{
  display:flex;align-items:center;gap:.7rem;
  text-decoration:none;color:inherit;
}
.wordmark__name{
  font-family:var(--display);
  font-size:1.375rem;
  letter-spacing:.01em;
  line-height:1;
}
.wordmark__mark{
  width:1px;height:20px;background:var(--brass);opacity:.6;
}
.wordmark__place{
  font-size:.625rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(16,22,20,.5);
}

.nav{display:flex;align-items:center;gap:clamp(1rem,2.4vw,2rem)}
.nav a{
  color:rgba(16,22,20,.72);
  text-decoration:none;
  font-size:.875rem;
  transition:color .2s var(--ease);
}
.nav a:hover{color:var(--ink)}
.nav__cta{
  border:1px solid var(--bottle);
  border-radius:2px;
  padding:.55rem 1.1rem;
  color:var(--bottle) !important;
  font-weight:500;
}
.nav__cta:hover{background:var(--bottle);color:var(--paper) !important}

/* ---------- hero ---------- */

.hero{padding:clamp(2.5rem,5vw,4rem) 0 clamp(3rem,7vw,6rem)}
.hero__grid{
  display:grid;
  grid-template-columns:1fr minmax(360px,470px);
  gap:clamp(2.5rem,6vw,5rem);
  align-items:center;
}
.hero__copy .lede{margin-bottom:1.75rem}

.hero__proof{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:.55rem;
}
.hero__proof li{
  font-size:.9375rem;
  color:rgba(16,22,20,.72);
  padding-left:1.4rem;
  position:relative;
}
.hero__proof li::before{
  content:"";
  position:absolute;left:0;top:.62em;
  width:.5rem;height:1px;background:var(--brass);
}

/* ---------- estimator ---------- */

.estimator{
  background:var(--paper);
  border:1px solid var(--rule);
  border-top:2px solid var(--bottle);
  padding:clamp(1.5rem,3vw,2.25rem);
  box-shadow:0 24px 60px -32px rgba(16,22,20,.35);
}
.estimator__head{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:1rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--rule);
}
.estimator__note{
  margin:0;font-size:.75rem;
  color:rgba(16,22,20,.5);
  letter-spacing:.04em;
}

.price{
  padding:1.15rem 0 1rem;
  text-align:center;
  border-bottom:1px solid var(--rule);
  position:relative;
}
.price__currency{
  font-family:var(--display);
  font-size:clamp(1.5rem,3vw,2rem);
  vertical-align:top;
  position:relative;top:.55rem;
  color:rgba(16,22,20,.45);
  margin-right:.15rem;
}
.price__figure{
  font-family:var(--display);
  font-weight:500;
  font-size:clamp(3.75rem,9vw,5.5rem);
  line-height:1;
  letter-spacing:-.03em;
  font-variant-numeric:tabular-nums;
  color:var(--bottle);
}
.price__unit{
  margin:.5rem 0 0;
  font-size:.6875rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(16,22,20,.5);
}
.price__strike{
  margin:.35rem 0 0;
  font-size:.8125rem;
  color:rgba(16,22,20,.45);
}
.price__strike s{text-decoration-thickness:1px}
.price__strike b{color:var(--brass);font-weight:600}

.controls{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.9rem 1.25rem;
  padding:1.2rem 0;
  border-bottom:1px solid var(--rule);
}

.stepper__label{
  display:block;
  font-size:.6875rem;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(16,22,20,.55);
  margin-bottom:.55rem;
}

.stepper__ctrl{
  display:flex;align-items:center;justify-content:space-between;
  border:1px solid var(--rule);
  padding:.3rem;
}
.round{
  width:2rem;height:2rem;
  border:none;background:transparent;
  font-family:var(--sans);
  font-size:1.125rem;line-height:1;
  color:var(--bottle);
  cursor:pointer;
  transition:background .18s var(--ease),color .18s var(--ease);
}
.round:hover:not(:disabled){background:var(--bottle);color:var(--paper)}
.round:disabled{opacity:.25;cursor:not-allowed}
.stepper__value{
  font-family:var(--display);
  font-size:1.25rem;
  font-variant-numeric:tabular-nums;
}

.select,
.input{
  width:100%;
  font-family:var(--sans);
  font-size:.9375rem;
  color:var(--ink);
  background:var(--paper);
  border:1px solid var(--rule);
  border-radius:0;
  padding:.68rem .75rem;
  appearance:none;
}
.select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231C3B32' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right .75rem center;
  padding-right:2rem;
  cursor:pointer;
}

.addons{border-bottom:1px solid var(--rule)}
.addons__summary{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;
  padding:.95rem 0;
  cursor:pointer;
  list-style:none;
}
.addons__summary::-webkit-details-marker{display:none}
.addons__summary .stepper__label{margin:0}
.addons__count{
  font-size:.75rem;
  color:rgba(16,22,20,.45);
  display:flex;align-items:center;gap:.5rem;
}
.addons__count::after{
  content:"";
  width:.5rem;height:.5rem;
  border-right:1px solid var(--bottle);
  border-bottom:1px solid var(--bottle);
  transform:translateY(-2px) rotate(45deg);
  transition:transform .25s var(--ease);
}
.addons[open] .addons__count::after{transform:translateY(1px) rotate(-135deg)}
.addons[open] .addons__count{color:var(--brass)}
.addons__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:.35rem .9rem;
  padding-bottom:1rem;
}
.addon{
  display:flex;align-items:center;gap:.5rem;
  font-size:.8125rem;
  color:rgba(16,22,20,.75);
  cursor:pointer;
  padding:.2rem 0;
}
.addon input{
  appearance:none;
  width:.95rem;height:.95rem;
  border:1px solid var(--rule);
  background:var(--paper);
  cursor:pointer;
  flex:none;
  transition:background .15s var(--ease),border-color .15s var(--ease);
}
.addon input:checked{
  background:var(--bottle);
  border-color:var(--bottle);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23FBFBF9' fill='none' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;
}
.addon span{flex:1}
.addon b{font-weight:500;color:rgba(16,22,20,.5)}

/* ---------- buttons ---------- */

.btn{
  display:block;width:100%;
  text-align:center;text-decoration:none;
  font-family:var(--sans);font-size:.9375rem;font-weight:500;
  letter-spacing:.02em;
  padding:.95rem 1.5rem;
  border:1px solid transparent;
  border-radius:0;
  cursor:pointer;
  margin-top:1.2rem;
  transition:background .2s var(--ease),color .2s var(--ease),transform .2s var(--ease);
}
.btn--solid{background:var(--bottle);color:var(--paper)}
.btn--solid:hover{background:var(--bottle-deep);transform:translateY(-1px)}
.btn--brass{background:var(--brass);color:var(--bottle-deep);font-weight:600}
.btn--brass:hover{background:#c29d63;transform:translateY(-1px)}
.btn:disabled{opacity:.5;cursor:wait;transform:none}

/* ---------- generic section ---------- */

.section{padding:clamp(4rem,9vw,7.5rem) 0}
.section--dark{
  background:var(--bottle);
  color:var(--limestone);
}
.section--dark .display{color:var(--limestone)}

/* ---------- services ---------- */

.services{border-top:1px solid var(--rule)}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(255px,1fr));
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
  margin-top:2.5rem;
}
.card{
  background:var(--limestone);
  padding:clamp(1.5rem,2.5vw,2rem);
  display:flex;flex-direction:column;
  transition:background .3s var(--ease);
}
.card:hover{background:var(--paper)}
.card__title{
  font-family:var(--display);
  font-size:1.5rem;font-weight:400;
  line-height:1.15;
  margin:0 0 .4rem;
  min-height:2.3em;          /* keeps all four card bodies on one baseline */
}
.card__sub{
  font-size:.875rem;
  color:rgba(16,22,20,.6);
  margin:0 0 1.35rem;
  min-height:2.6em;
}
.card__list{
  list-style:none;padding:0;margin:0 0 1.5rem;
  display:flex;flex-direction:column;gap:.5rem;
  flex:1;
}
.card__list li{
  font-size:.875rem;line-height:1.45;
  color:rgba(16,22,20,.8);
  padding-left:1.1rem;position:relative;
}
.card__list li::before{
  content:"";position:absolute;left:0;top:.6em;
  width:.4rem;height:1px;background:var(--brass);
}
.card__price{
  font-family:var(--display);
  font-size:1.75rem;
  margin:0;
  padding-top:1rem;
  border-top:1px solid var(--rule);
  color:var(--bottle);
}
.card__price span{
  font-family:var(--sans);
  font-size:.6875rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(16,22,20,.45);
  margin-right:.4rem;
  vertical-align:middle;
}

/* ---------- assurance ---------- */

.assure{
  display:grid;
  grid-template-columns:repeat(2,1fr);   /* 2x2, not 3+1 with an orphan */
  gap:clamp(1.75rem,4vw,3rem);
  margin-top:3rem;
}
.assure__item h3{
  font-family:var(--sans);
  font-size:.875rem;font-weight:600;
  letter-spacing:.02em;
  margin:0 0 .7rem;
  padding-top:.9rem;
  border-top:1px solid var(--rule-light);
  color:var(--paper);
}
.assure__item p{
  margin:0;
  font-size:.9375rem;line-height:1.6;
  color:rgba(233,234,229,.72);
}

/* ---------- area ---------- */

.area{background:var(--paper)}
.area__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,4rem);
  align-items:center;
}
.area__list{
  list-style:none;padding:0;margin:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
}
.area__list li{
  background:var(--paper);
  padding:1rem .9rem;
  font-size:.875rem;
  font-weight:500;
  transition:background .25s var(--ease),color .25s var(--ease);
}
.area__list li:hover{background:var(--bottle);color:var(--paper)}

/* ---------- faq ---------- */

.faq__list{margin-top:2.5rem;border-top:1px solid var(--rule)}
.qa{border-bottom:1px solid var(--rule)}
.qa summary{
  cursor:pointer;
  list-style:none;
  padding:1.35rem 2.5rem 1.35rem 0;
  font-size:1.0625rem;
  font-weight:500;
  position:relative;
}
.qa summary::-webkit-details-marker{display:none}
.qa summary::after{
  content:"";
  position:absolute;right:.5rem;top:50%;
  width:.7rem;height:.7rem;
  border-right:1px solid var(--bottle);
  border-bottom:1px solid var(--bottle);
  transform:translateY(-60%) rotate(45deg);
  transition:transform .25s var(--ease);
}
.qa[open] summary::after{transform:translateY(-30%) rotate(-135deg)}
.qa p{
  margin:0;padding:0 3rem 1.5rem 0;
  color:rgba(16,22,20,.72);
  max-width:62ch;
}

/* ---------- booking ---------- */

.book__grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:clamp(2.5rem,6vw,5rem);
  align-items:start;
}

.summary{
  border:1px solid var(--rule-light);
  border-left:2px solid var(--brass);
  padding:1.15rem 1.35rem;
  margin:1.75rem 0 0;
}
.summary__line{
  margin:0 0 .5rem;
  font-size:.8125rem;letter-spacing:.06em;
  color:rgba(233,234,229,.65);
  text-transform:uppercase;
}
.summary__price{
  margin:0;
  font-family:var(--display);
  font-size:2.25rem;line-height:1;
  color:var(--paper);
}
.summary__price small{
  font-family:var(--sans);
  font-size:.625rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(233,234,229,.5);
  margin-left:.5rem;
}

.form{display:flex;flex-direction:column;gap:1.1rem;color-scheme:dark}
.form__two{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.form .stepper__label{color:rgba(233,234,229,.6)}
.form .input{
  background:rgba(251,251,249,.06);
  border-color:var(--rule-light);
  color:var(--limestone);
}
.form .input::placeholder{color:rgba(233,234,229,.35)}
.form .input:focus{background:rgba(251,251,249,.12)}
.form select.input{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23E9EAE5' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .75rem center;
  padding-right:2rem;
}
.form .input[aria-invalid="true"]{border-color:#E0785F}
.form textarea.input{resize:vertical;min-height:5rem}

.form__status{
  margin:0;font-size:.875rem;min-height:1.4em;
  color:rgba(233,234,229,.75);
}
.form__status[data-tone="ok"]{color:#9FD5B4}
.form__status[data-tone="bad"]{color:#E0785F}

.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ---------- footer ---------- */

.footer{
  background:var(--bottle-deep);
  color:rgba(233,234,229,.8);
  padding:clamp(3rem,6vw,4.5rem) 0 1.75rem;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid var(--rule-light);
}
.wordmark__name--footer{
  font-family:var(--display);
  font-size:1.5rem;
  color:var(--limestone);
  margin:0 0 .5rem;
}
.footer__tag{margin:0;font-size:.875rem;color:rgba(233,234,229,.55);max-width:28ch}
.footer__col p{margin:0 0 .5rem;font-size:.875rem}
.footer__col a{color:rgba(233,234,229,.8);text-decoration:none}
.footer__col a:hover{color:var(--brass)}
.footer__base{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;
  padding-top:1.75rem;
}
.footer__base p{margin:0;font-size:.75rem;color:rgba(233,234,229,.45)}

/* ---------- motion ----------
   Above the fold animates with CSS only, so the hero is never
   blank while JavaScript loads. Below the fold uses the observer.
   -------------------------------------------------------------- */

@keyframes rise{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:none}
}
.hero__copy{animation:rise .75s var(--ease) both}
.estimator{animation:rise .75s .1s var(--ease) both}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.reveal.is-in{opacity:1;transform:none}

/* ---------- responsive ---------- */

@media (max-width:940px){
  /* On a phone the price has to come before the supporting copy,
     otherwise the one thing the page promises is a full swipe away.
     display:contents lifts the copy children into the grid so the
     estimator can be ordered between them. */
  .hero__grid{grid-template-columns:1fr;gap:0}
  .hero__copy{display:contents}
  .hero__copy .eyebrow{order:1}
  .hero__copy .display{order:2}
  .hero__copy .lede{order:3;margin-bottom:1.5rem}
  .estimator{order:4}
  .hero__proof{order:5;margin-top:2.25rem}

  .assure{grid-template-columns:1fr}
  .area__grid{grid-template-columns:1fr}
  .book__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr 1fr}
}

@media (max-width:680px){
  .nav a:not(.nav__cta){display:none}
  .wordmark__place,.wordmark__mark{display:none}
  .controls{grid-template-columns:1fr}
  .addons__grid{grid-template-columns:1fr}
  .form__two{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr;gap:2rem}
  .card__sub{min-height:0}
  .qa p{padding-right:0}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.001ms !important;
    transition-duration:.001ms !important;
  }
  .reveal{opacity:1;transform:none}
}
