:root {
  --bg: #F2EDE6;
  --bg-alt: #EAE3D8;
  --ink: #1D1F26;
  --muted: #5A5E66;
  --teal: #1B3A44;
  --teal-deep: #15303A;
  --slate: #5E7689;
  --card: #FFFFFF;
  --line: #E0D8CB;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Mulish", system-ui, sans-serif;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.eyebrow { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate); font-weight: 700; }
.btn { display: inline-block; padding: 14px 26px; border-radius: 4px;
  font-weight: 600; font-size: .95rem; transition: opacity .2s, transform .2s; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: #fff; }
.btn--ghost { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(242,237,230,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { font-family: var(--serif); font-size: 1.05rem; line-height: 1.1; }
.nav__logo span { display: block; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--slate); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: .85rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.nav__cta { text-transform: none; letter-spacing: normal; }
.nav__toggle { display: none; width: 28px; height: 20px; position: relative; border: none; cursor: pointer; padding: 0; font-size: 0; color: transparent;
  background-color: transparent;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 28px 3px; background-position: center; background-repeat: no-repeat; }
.nav__toggle::before, .nav__toggle::after { content: ""; position: absolute; left: 0; width: 28px; height: 3px; background: var(--ink); }
.nav__toggle::before { top: 0; }
.nav__toggle::after { bottom: 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,64px); align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin-bottom: 22px; }
.hero__lead { font-size: 1.08rem; color: var(--muted); max-width: 34ch; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats { list-style: none; display: flex; gap: 36px; }
.hero__stats strong { font-family: var(--serif); font-size: 1.8rem; display: block; }
.hero__stats span { font-size: .82rem; color: var(--muted); }
.hero__photo { position: relative; }
.hero__photo img { width: 100%; aspect-ratio: 3 / 4; border-radius: 6px; object-fit: cover; object-position: center top; }
.hero__quote { position: absolute; right: -8px; bottom: 24px; max-width: 230px;
  background: var(--card); padding: 16px 18px; border-radius: 6px; font-size: .8rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.hero__quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700;
  font-size: .72rem; color: var(--slate); }

.why { background: var(--bg-alt); }
.why__title { font-size: clamp(1.7rem,3.2vw,2.5rem); max-width: 20ch; margin: 14px 0 14px; }
.why__lead { color: var(--muted); max-width: 52ch; margin-bottom: 44px; }
.cards4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 26px 22px; }
.fcard h3 { font-size: 1.12rem; margin-bottom: 10px; }
.fcard p { font-size: .92rem; color: var(--muted); }
.why__cta { margin-top: 40px; }

.services__title { font-size: clamp(1.7rem,3.2vw,2.5rem); margin: 14px 0 44px; }
.cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.scard { position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
.scard--featured { background: var(--slate); color: #fff; border-color: var(--slate); }
.scard--featured .scard__tag, .scard--featured ul { color: rgba(255,255,255,.85); }
.scard__num { font-family: var(--serif); font-size: 1.4rem; opacity: .5; }
.scard h3 { font-size: 1.35rem; }
.scard__tag { font-weight: 600; color: var(--slate); }
.scard p { font-size: .92rem; color: var(--muted); }
.scard--featured p { color: rgba(255,255,255,.9); }
.scard ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; }
.scard ul li::before { content: "— "; color: var(--slate); }
.scard--featured ul li::before { color: #fff; }
.scard .btn { margin-top: auto; align-self: flex-start; }
.scard__badge { position: absolute; top: -12px; right: 22px; background: var(--teal);
  color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; }

.process { background: var(--teal); color: #fff; }
.process .eyebrow { color: rgba(255,255,255,.7); }
.process__title { font-size: clamp(1.7rem,3.2vw,2.5rem); margin: 14px 0 48px; max-width: 22ch; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: s; }
.steps li { border-top: 2px solid rgba(255,255,255,.3); padding-top: 18px; }
.steps__n { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.steps h3 { font-size: 1.2rem; margin: 8px 0 10px; }
.steps p { font-size: .9rem; color: rgba(255,255,255,.82); }
.gallery__title { font-size: clamp(1.7rem,3.2vw,2.5rem); margin: 14px 0 8px; }
.gallery__lead { color: var(--muted); margin-bottom: 40px; }
.gallery__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery__grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
.gallery__cta { margin-top: 40px; text-align: center; }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,5vw,60px); align-items: center; }
.about__photo img { width: 100%; border-radius: 8px; object-fit: cover; }
.about__copy h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin: 12px 0 18px; }
.about__copy p { color: var(--muted); margin-bottom: 14px; max-width: 50ch; }
.manifesto { background: var(--teal); color: #fff; }
.manifesto .eyebrow { color: rgba(255,255,255,.7); }
.manifesto__inner { max-width: 760px; }
.manifesto h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); margin: 12px 0 22px; }
.manifesto p { color: rgba(255,255,255,.85); margin-bottom: 16px; }
.manifesto__big { font-family: var(--serif); font-size: clamp(1.8rem,3.4vw,2.6rem); color: #fff !important; margin-top: 28px; }
.manifesto__sign { font-style: italic; color: rgba(255,255,255,.7) !important; }

.testimonials__title { font-size: clamp(1.7rem,3.2vw,2.5rem); margin: 14px 0 44px; }
.tgrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.tcard p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; }
.tcard cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.faq__inner { max-width: 760px; }
.faq h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin: 12px 0 12px; }
.faq__lead { color: var(--muted); margin-bottom: 32px; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600;
  font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; }
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary::after { content: "+"; font-size: 1.4rem; color: var(--slate); transition: transform .2s; }
.acc__item[open] summary::after { content: "−"; }
.acc__item p { padding: 0 0 20px; color: var(--muted); }
.faq__cta { margin-top: 36px; }
.footer { background: var(--teal-deep); color: #fff; padding-block: 56px 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer__brand { font-family: var(--serif); font-size: 1.4rem; }
.footer__sub { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer__contacts { display: flex; flex-direction: column; gap: 6px; }
.footer__contacts .eyebrow { color: rgba(255,255,255,.6); margin-bottom: 6px; }
.footer__contacts a { color: rgba(255,255,255,.9); font-size: .95rem; }
.footer__legal { padding-top: 20px; font-size: .8rem; color: rgba(255,255,255,.5); }

@media (max-width: 980px) {
  .hero__grid, .about__grid { grid-template-columns: 1fr; }
  .hero__photo { order: -1; }
  .cards4, .steps { grid-template-columns: repeat(2,1fr); }
  .cards3, .gallery__grid, .tgrid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px; display: none; }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 0; width: 100%; }
}
@media (max-width: 560px) {
  .cards4, .steps, .gallery__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .footer__inner { flex-direction: column; }
}
