:root{
  --teal:#0b2926;
  --teal-2:#10302c;
  --bone:#f1e8d6;
  --bone-2:#ece1cc;
  --ink:#0b2926;
  --muted:#5d6b66;
  --accent:#c2892c;
  --accent-soft:#d59a3a;
  --line:rgba(11,41,38,.16);
  --line-dark:rgba(241,232,214,.18);
  --maxw:1120px;
  --nav-h:64px;
  --banner:42px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bone);
  color:var(--ink);
  font-family:"Zilla Slab",Georgia,serif;
  font-size:18px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%}
a{color:inherit}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* ---------- Nav ---------- */
.nav{
  position:sticky;
  top:42px;
  z-index:50;
  background:var(--teal);
  border-bottom:1px solid var(--line-dark);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:var(--nav-h);
  padding-top:10px;
  padding-bottom:10px;
  position:relative;
}
.nav__brand{
  font-weight:700;
  font-size:1.25rem;
  color:var(--bone);
  text-decoration:none;
  letter-spacing:.01em;
}
.nav__links{display:flex;align-items:center;gap:30px}
.nav__links a{
  color:var(--bone);
  text-decoration:none;
  font-size:.98rem;
  font-weight:500;
  transition:color 180ms ease;
  min-height:44px;
  display:inline-flex;
  align-items:center;
}
.nav__links a:hover{color:var(--accent-soft)}
.nav__cta{min-height:44px;padding:12px 22px}
.nav__toggle{
  display:none;
  background:none;
  border:1px solid var(--line-dark);
  color:var(--bone);
  width:44px;height:44px;
  align-items:center;justify-content:center;
  cursor:pointer;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 24px;
  font-family:inherit;
  font-size:.95rem;
  font-weight:600;
  text-decoration:none;
  border:1px solid transparent;
  min-height:44px;
  transition:background 180ms ease,border-color 180ms ease,color 180ms ease;
  border-radius:1px;
}
.btn--filled{background:var(--accent);color:var(--teal);border-color:var(--accent)}
.btn--filled:hover{background:var(--accent-soft);border-color:var(--accent-soft)}
.btn--outline{background:transparent;border:1px solid currentColor;color:inherit}
.btn--outline:hover{background:rgba(241,232,214,.06)}
.btn--block{width:100%}

/* ---------- Eyebrow / titles ---------- */
.eyebrow{
  margin:0 0 10px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent);
}
.eyebrow--on-dark{color:var(--accent-soft)}
.eyebrow--accent{color:var(--accent)}
.section-title{
  margin:0;
  font-weight:700;
  font-size:clamp(2rem,5vw,3.1rem);
  line-height:1.08;
  letter-spacing:0;
  color:var(--ink);
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:var(--teal);
  color:var(--bone);
  overflow:hidden;
  min-height:calc(100svh - var(--nav-h) - var(--banner));
  display:flex;
}
.hero__moon{
  position:absolute;
  width:640px;height:640px;
  top:-120px;right:-160px;
  background:radial-gradient(circle at 42% 40%,rgba(241,232,214,.16),rgba(241,232,214,0) 62%);
  border-radius:50%;
  pointer-events:none;
}
.hero__crescent{
  position:absolute;
  top:60px;right:8%;
  width:clamp(160px,22vw,260px);
  height:auto;
  pointer-events:none;
}
.hero__inner{
  margin-top:auto;
  padding-bottom:clamp(56px,10vh,110px);
  padding-top:clamp(40px,8vh,80px);
  width:100%;
}
.hero h1{
  margin:.2em 0 .35em;
  font-weight:700;
  font-size:clamp(2.8rem,9vw,5.6rem);
  line-height:1.02;
  letter-spacing:0;
  max-width:14ch;
}
.hero__sub{
  margin:0 0 32px;
  max-width:46ch;
  font-size:clamp(1rem,1.5vw,1.18rem);
  color:rgba(241,232,214,.82);
}
.hero__cta{display:flex;flex-wrap:wrap;gap:14px}
.hero__cta .btn--outline{color:var(--bone)}

/* ---------- Trust pills ---------- */
.trust{background:var(--bone);padding:34px 0;border-bottom:1px solid var(--line)}
.trust__row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 12px;
}
.pill{
  display:inline-block;
  padding:8px 14px;
  border:1px solid var(--line);
  color:var(--ink);
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  border-radius:1px;
  background:transparent;
}

/* ---------- Services menu ---------- */
.services{padding:clamp(64px,9vh,110px) 0;background:var(--bone-2)}
.services .wrap{max-width:820px}
.services .section-title{margin-bottom:8px}
.menu{list-style:none;margin:32px 0 0;padding:0}
.menu__item{padding:26px 0;border-bottom:1px solid var(--line)}
.menu__item:first-child{border-top:1px solid var(--line)}
.menu__head{display:flex;justify-content:space-between;align-items:baseline;gap:18px}
.menu__name{font-size:clamp(1.4rem,3.2vw,1.95rem);font-weight:700;color:var(--ink);letter-spacing:0}
.menu__tag{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);white-space:nowrap;font-weight:600}
.menu__desc{margin:6px 0 0;max-width:58ch;color:var(--muted);font-size:1rem}

/* ---------- About ---------- */
.about{padding:clamp(64px,9vh,110px) 0;background:var(--bone)}
.about__inner{display:grid;grid-template-columns:1.4fr 1fr;gap:48px;align-items:center}
.about__text p{margin:.8em 0 0;max-width:52ch}
.about__note{color:var(--muted);font-size:.92rem;border-left:2px solid var(--accent);padding-left:12px;margin-top:24px!important}
.about__motif svg{display:block;width:100%;max-width:280px;margin:0 auto}

/* ---------- Contact ---------- */
.contact{
  background:var(--teal);
  color:var(--bone);
  padding:clamp(64px,10vh,120px) 0;
}
.contact__inner{max-width:680px;margin:0 auto}
.cta__title{
  margin:0;
  font-weight:700;
  font-size:clamp(2.2rem,6vw,3.4rem);
  line-height:1.05;
  color:var(--bone);
}
.cta__sub{
  margin:14px 0 32px;
  color:rgba(241,232,214,.82);
  font-size:1.1rem;
  max-width:48ch;
}
.contact-form{display:flex;flex-direction:column;gap:16px}
.field{display:flex;flex-direction:column;gap:6px}
.field label{font-size:.76rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(241,232,214,.7);font-weight:600}
.field input,.field textarea{
  font-family:inherit;
  font-size:1rem;
  color:var(--ink);
  background:var(--bone);
  border:1px solid transparent;
  padding:13px 14px;
  border-radius:1px;
  width:100%;
}
.field input:focus,.field textarea:focus{outline:2px solid var(--accent);outline-offset:1px}
.contact-form__note{margin:6px 0 0;color:var(--accent-soft);font-size:.92rem;min-height:1.2em}
.contact__site{
  display:inline-block;
  margin-top:26px;
  color:var(--accent-soft);
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid var(--line-dark);
  padding-bottom:2px;
}
.contact__site:hover{color:var(--bone)}

/* ---------- Footer ---------- */
.footer{background:var(--teal-2);color:rgba(241,232,214,.75);padding:56px 0 40px;border-top:1px solid var(--line-dark)}
.footer__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:32px}
.footer__name{margin:0;font-weight:700;color:var(--bone);font-size:1.2rem}
.footer__tag{margin:4px 0 0;font-size:.92rem}
.footer__nav,.footer__contact{display:flex;flex-direction:column;gap:10px}
.footer__nav a,.footer__contact a{color:rgba(241,232,214,.75);text-decoration:none;font-size:.95rem;transition:color 180ms ease}
.footer__nav a:hover,.footer__contact a:hover{color:var(--accent-soft)}
.footer__meta{font-size:.82rem;line-height:1.5}
.footer__copy{margin:8px 0 0;color:rgba(241,232,214,.5)}

/* ---------- Section anchors offset ---------- */
section[id]{scroll-margin-top:calc(var(--banner) + var(--nav-h) + 16px)}

/* ---------- Reveal (JS-applied state) ---------- */
.js .reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.js .reveal.is-visible{opacity:1;transform:none}

/* ---------- Responsive ---------- */
@media (max-width:860px){
  .about__inner{grid-template-columns:1fr;gap:32px}
  .about__motif{order:-1}
  .about__motif svg{max-width:200px}
  .footer__grid{grid-template-columns:1fr 1fr;gap:28px}
  .footer__meta{grid-column:1/-1}
}
@media (max-width:700px){
  .nav__toggle{display:inline-flex}
  .nav__links{
    display:none;
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--teal);
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 24px 20px;
    border-top:1px solid var(--line-dark);
  }
  .nav__links.open{display:flex}
  .nav__links a{padding:14px 0;border-bottom:1px solid var(--line-dark);min-height:48px}
  .nav__links a:last-of-type{border-bottom:0}
  .nav__cta{margin-top:10px;padding:14px 22px}
  .hero__cta .btn{flex:1 1 100%}
  .footer__grid{grid-template-columns:1fr;gap:24px}
}
@media (max-width:380px){
  body{font-size:17px}
  .hero h1{font-size:clamp(2.4rem,11vw,2.8rem)}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .js .reveal{transition:none;opacity:1;transform:none}
}