/* =========================================================
   Damp Technology — editorial bluey-grey + bone
   ========================================================= */
:root {
  --ink:     #16232e;   /* deep slate blue */
  --navy:    #1f3140;
  --slate:   #33485a;
  --steel:   #5c7182;   /* muted blue-grey */
  --stone:   #8a99a5;
  --paper:   #f6f3ec;   /* warm bone — light base */
  --paper-2: #efeadf;
  --cool:    #e9edf0;   /* cool pale blue-grey */
  --line:    #ddd6c9;   /* hairline on paper */
  --line-2:  #d3dade;   /* hairline on cool */
  --text:    #2a3742;
  --muted:   #61707b;
  --brass:   #a3854f;   /* restrained heritage accent */
  --brass-2: #8c7040;

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 3.05rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1.1rem; }
::selection { background: var(--ink); color: var(--paper); }

.wrap { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 1.6rem; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; fill: currentColor; }
.btn--dark   { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--slate); }
.btn--light  { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); }
.btn--lg { padding: 1.15rem 2rem; font-size: .84rem; }

.textlink {
  font-family: "Manrope", sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  position: relative; padding-bottom: 4px; color: var(--ink);
}
.textlink::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; opacity: .35; transition: opacity .3s var(--ease); }
.textlink:hover::after { opacity: 1; }
.textlink--light { color: var(--paper); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,243,236,.72);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.header.is-stuck { border-color: var(--line); background: rgba(246,243,236,.86); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.35rem 0; }

.brand { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: "Fraunces", serif; font-weight: 500; font-size: 1.5rem; color: var(--ink); letter-spacing: -.01em; }
.brand__est { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); font-weight: 600; margin-top: .18rem; }

.nav { display: flex; gap: 2.1rem; }
.nav a { font-weight: 500; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); position: relative; padding: .35rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--brass); transition: width .3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1.3rem; }
.header__phone { font-family: "Fraunces", serif; font-size: 1.2rem; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; transition: color .3s var(--ease); }
.header__phone:hover { color: var(--brass-2); }
.header__email-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: none; border-radius: 50%; background: var(--ink); color: var(--paper); transition: background .3s var(--ease); }
.header__email-btn svg { width: 20px; height: 20px; fill: currentColor; }
.header__email-btn:hover { background: var(--brass); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; padding: 10px; }
.hamburger span { height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.hamburger.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Contact dropdown ---------- */
.contact { position: relative; display: inline-flex; }
.contact__toggle { gap: .55rem; }
.contact__chev { width: .85em; height: .85em; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .25s var(--ease); opacity: .7; }
.contact.is-open .contact__chev { transform: rotate(180deg); }
.contact__menu {
  position: absolute; top: calc(100% + .6rem); right: 0; z-index: 120;
  width: 264px; padding: .4rem;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(22,35,46,.16);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.contact--up .contact__menu { top: auto; bottom: calc(100% + .6rem); left: 0; right: auto; transform: translateY(6px); }
.contact.is-open .contact__menu { opacity: 1; visibility: visible; transform: none; }
.contact__opt { display: flex; align-items: center; gap: .9rem; padding: .85rem .9rem; color: var(--ink); transition: background .2s var(--ease); }
.contact__opt:hover { background: var(--paper-2); }
.contact__opt svg { width: 20px; height: 20px; fill: var(--brass); flex: none; }
.contact__opt span { display: flex; flex-direction: column; line-height: 1.3; }
.contact__opt strong { font-family: "Manrope", sans-serif; font-weight: 600; font-size: .95rem; }
.contact__opt small { font-size: .8rem; color: var(--muted); }
.contact__opt + .contact__opt { border-top: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(90vh, 820px); display: flex; color: var(--paper); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(.85) contrast(1.02); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,24,32,.9) 0%, rgba(15,24,32,.72) 40%, rgba(15,24,32,.32) 75%, rgba(15,24,32,.15) 100%),
    linear-gradient(0deg, rgba(15,24,32,.55), rgba(15,24,32,0) 40%);
}
.hero__body {
  position: relative; z-index: 2;
  width: min(100% - 3rem, var(--maxw)); margin-inline: auto;
  padding-left: clamp(0.75rem, 4.5vw, 4rem);
  flex: 1; display: flex; flex-direction: column;
}
.hero__content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 0; max-width: 640px; }
.hero__title { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 300; color: #fff; margin-bottom: 1.5rem; letter-spacing: -.02em; }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.8; color: #dbe1e6; max-width: 520px; margin-bottom: 2.3rem; font-weight: 400; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.7rem; }

.hero__facts { display: flex; border-top: 1px solid rgba(255,255,255,.16); }
.hfact { padding: 1.4rem 2.2rem; border-left: 1px solid rgba(255,255,255,.13); }
.hfact:first-child { padding-left: 0; border-left: none; }
.hfact__num { display: block; font-family: "Fraunces", serif; font-weight: 400; font-size: 1.55rem; color: #fff; letter-spacing: -.01em; }
.hfact__plus { color: var(--brass); font-size: .68em; margin-left: 1px; }
.hfact__label { display: block; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--stone); margin-top: .3rem; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: 0 30px 60px rgba(22,35,46,.16); }
.about__stamp {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--paper); color: var(--ink);
  font-family: "Fraunces", serif; text-align: center; line-height: 1.05;
  padding: 1rem 1.2rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line);
}
.about__stamp b { display: block; font-size: 1.9rem; font-weight: 500; letter-spacing: 0; color: var(--brass-2); margin-top: .1rem; }
.checklist { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .95rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--slate); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 15px; height: 8px;
  border-left: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(-45deg);
}

/* ---------- Section intro ---------- */
.section-intro { max-width: 640px; margin: 0 0 clamp(2.8rem, 5vw, 4rem); }
.section-intro h2 { margin: 0; }
.section-intro__lead { margin: 1.1rem 0 0; color: var(--muted); font-size: 1.1rem; }
.section-intro--center { margin-inline: auto; text-align: center; }
.section-intro--center .section-intro__lead { margin-inline: auto; }

/* Heading-to-text rhythm in text columns */
.about__text h2, .problems__text h2, .why__text h2, .cta h2 { margin-bottom: 1.3rem; }
.about__text > p, .problems__text > p, .why__text > p { font-size: 1.06rem; }

/* ---------- Services ---------- */
.services { background: var(--cool); }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.feature {
  background: var(--ink); color: var(--paper);
  padding: clamp(2.2rem, 3.5vw, 3.2rem);
  display: flex; flex-direction: column; height: 100%;
}
.feature__tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #cbb488; margin: 0 0 1.4rem; font-weight: 600; }
.feature__title { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 400; margin-bottom: 1rem; }
.feature__desc { color: #c6cfd6; line-height: 1.75; margin-bottom: auto; }
.feature__foot { display: flex; align-items: baseline; gap: .8rem; margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); }
.feature__foot-num { font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--brass); }
.feature__foot-label { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); }

.svc-list { list-style: none; margin: 0; padding: 0; }
.svc { display: flex; gap: 1.4rem; padding: 1.7rem 0; border-top: 1px solid var(--line-2); align-items: baseline; }
.svc:first-child { padding-top: 0; border-top: none; }
.svc:last-child { padding-bottom: 0; }
.svc__no { font-family: "Fraunces", serif; font-size: 1rem; color: var(--brass); min-width: 1.6rem; }
.svc h3 { font-size: 1.28rem; margin-bottom: .35rem; }
.svc p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Problems ---------- */
.problems { background: var(--paper); }
.problems__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.findings { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 0; }
.findings li { position: relative; padding: .85rem 0 .85rem 1.7rem; border-bottom: 1px solid var(--line); color: var(--slate); }
.findings li:first-child { border-top: 1px solid var(--line); }
.findings li::before { content: ""; position: absolute; left: 0; top: 1.3em; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.problems__media { margin: 0; }
.problems__media img { aspect-ratio: 3/4; object-fit: cover; width: 100%; box-shadow: 0 30px 60px rgba(22,35,46,.16); }
.problems__media figcaption { margin-top: 1rem; font-size: .84rem; font-style: italic; color: var(--muted); font-family: "Fraunces", serif; }

/* ---------- Process ---------- */
.process { background: var(--cool); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line-2); }
.step { padding: 2.4rem 1.8rem; border-left: 1px solid var(--line-2); }
.step:first-child { border-left: none; padding-left: 0; }
.step:last-child { padding-right: 0; }
.step__no { display: block; font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--brass); margin-bottom: 1rem; letter-spacing: .05em; }
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Standards / promise ---------- */
.standard { background: var(--paper); }
.promise { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(2rem, 4vw, 3.5rem); }
.promise li { position: relative; padding: 1.35rem 0 1.35rem 2rem; border-top: 1px solid var(--line); color: var(--slate); font-size: 1.02rem; }
.promise li::before {
  content: ""; position: absolute; left: 0; top: 1.95rem; width: 15px; height: 8px;
  border-left: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(-45deg);
}

/* ---------- Why ---------- */
.why { background: var(--ink); color: var(--paper); }
.why__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.why__media { margin: 0; }
.why__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.why h2 { color: #fff; font-weight: 300; }
.why__text > p { color: #c6cfd6; line-height: 1.8; }
.why__points { margin: 2.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2.2rem; }
.why__points div { padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.14); }
.why__points dt { font-family: "Fraunces", serif; font-size: 1.12rem; color: #fff; margin-bottom: .3rem; }
.why__points dd { margin: 0; font-size: .9rem; color: var(--stone); line-height: 1.6; }

/* ---------- CTA ---------- */
.cta { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; padding: clamp(4rem, 7vw, 6rem) 0; }
.cta__text { max-width: 600px; }
.cta h2 { margin-bottom: 1rem; }
.cta__text p { margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.cta__contact { display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.cta__label { font-family: "Manrope", sans-serif; font-weight: 600; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-2); }
.cta__phone { font-family: "Fraunces", serif; font-size: clamp(2.1rem, 5.5vw, 3.1rem); color: var(--ink); letter-spacing: -.02em; line-height: 1; transition: color .3s var(--ease); }
.cta__phone:hover { color: var(--brass-2); }
.cta__email { margin-top: .3rem; font-size: .95rem; color: var(--muted); }
.cta__email:hover { color: var(--brass-2); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--stone); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem 5rem; padding-bottom: 3.5rem; }
.brand__name--footer { color: #fff; }
.footer .brand__est { color: var(--steel); }
.footer__blurb { margin-top: 1.2rem; font-size: .92rem; max-width: 280px; line-height: 1.7; }
.footer__legal { margin-top: 1rem; font-size: .78rem; letter-spacing: .03em; line-height: 1.7; color: var(--steel); }
.footer__col h4 { color: #fff; font-family: "Manrope", sans-serif; font-weight: 600; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; font-size: .95rem; }
.footer__col a:hover { color: #fff; }
.footer__phone { display: block; font-family: "Fraunces", serif; font-size: 1.75rem; color: #fff; letter-spacing: -.01em; }
.footer__phone:hover { color: var(--brass); }
.footer__or { margin-top: .6rem; font-size: 1.02rem; line-height: 1.5; }
.footer__or > span { color: var(--steel); margin-right: .1rem; }
.footer__email { font-family: "Manrope", sans-serif; font-weight: 600; color: #fff; letter-spacing: .01em; word-break: break-word; transition: color .3s var(--ease); }
.footer__email:hover { color: var(--brass); }
.footer__hours { font-size: .9rem; margin: .7rem 0 1.4rem; line-height: 1.7; }
.footer__btns { display: flex; gap: .7rem; flex-wrap: wrap; }
.footer__btns .btn--outline { color: var(--paper); border-color: rgba(255,255,255,.28); }
.footer__btns .btn--outline:hover { border-color: #fff; }
.footer__btns .btn--dark { background: var(--brass); color: var(--ink); }
.footer__btns .btn--dark:hover { background: #b8975c; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; font-size: .8rem; letter-spacing: .04em; color: var(--steel); }
.footer__credit { color: var(--stone); border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.footer__credit:hover { color: #fff; border-color: var(--brass); }

/* ---------- Mobile contact bar ---------- */
.callbar { position: fixed; left: .75rem; right: .75rem; bottom: .75rem; z-index: 90; display: none; gap: .6rem; }
.callbar__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; padding: 1rem; color: var(--paper); box-shadow: 0 14px 30px rgba(22,35,46,.35); }
.callbar__btn svg { width: 1.15em; height: 1.15em; fill: currentColor; }
.callbar__btn--msg { background: var(--slate); }
.callbar__btn--call { background: var(--brass-2); }
.callbar__btn--email { background: var(--ink); }

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 330px);
    background: var(--paper); flex-direction: column; gap: 0; padding: 6rem 2rem 2rem;
    box-shadow: -20px 0 50px rgba(22,35,46,.14); transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .hamburger { display: flex; }
  .about__grid, .problems__grid, .why__grid, .services__grid { grid-template-columns: 1fr; }
  .about__media, .why__media { max-width: 460px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .promise { grid-template-columns: 1fr 1fr; }
  .step { border-left: none; padding-left: 0; padding-right: 0; padding-bottom: 2rem; border-top: 1px solid var(--line-2); }
  .step:first-child, .step:nth-child(2) { border-top: 1px solid var(--line-2); }
  .header__phone, .header__email-btn { display: none; }
  .hfact { padding: 1.4rem 1.6rem; }
}

@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 5rem; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .steps, .why__points, .promise { grid-template-columns: 1fr; }
  .why__points div:first-child { border-top: none; padding-top: 0; }
  .hero { min-height: auto; }
  .hero__content { padding: 3.5rem 0 2.5rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .contact, .hero__cta .contact__toggle { width: 100%; justify-content: center; }
  .hero__cta .textlink { text-align: center; }
  .hero__facts { display: grid; grid-template-columns: 1fr 1fr; border-top: none; }
  .hfact { padding: 1.1rem 0; border-left: none; border-top: 1px solid rgba(255,255,255,.14); }
  .hfact:nth-child(2) { padding-left: 1.2rem; border-left: 1px solid rgba(255,255,255,.14); }
  .hfact:nth-child(4) { padding-left: 1.2rem; border-left: 1px solid rgba(255,255,255,.14); }
  .callbar { display: flex; }
  .cta .contact, .cta .contact__toggle { width: 100%; justify-content: center; }
  .about__stamp { left: 12px; bottom: 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer__bottom-inner { justify-content: flex-start; flex-direction: column; gap: .3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
