
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --display: 'Fraunces'; --body: 'Inter'; 
  --ink: #4a2b3e; --ink-2: #6d2e5f; --accent: #6d2e5f; --accent-ink: #ffffff;
  --bg: #faf4ee; --bg-2: #f4e8dd; --muted: #8a7381; --line: #ecdfd2;
  --card: #ffffff; --card-shadow: 0 10px 26px rgba(109,46,95,.08);
  --radius: 999px; --radius-lg: 24px; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.15; color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tag { display: inline-block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 22px; }
.section-header { margin-bottom: 44px; max-width: 720px; }
.btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
/* nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 18px 0; transition: background .25s ease, box-shadow .25s ease; }
.nav.scrolled { background: var(--bg); box-shadow: 0 2px 18px rgba(0,0,0,.07); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -.01em; }
.nav__logo em { font-style: normal; color: var(--ink); }
.nav__logo span { color: var(--accent); margin-left: 5px; }
.nav__links { display: flex; gap: 30px; list-style: none; }
.nav__links a { font-size: 14.5px; color: var(--ink); opacity: .82; font-weight: 500; }
.nav__links a:hover, .nav__links a.active { opacity: 1; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; }
.nav__cta { padding: 10px 20px; border-radius: var(--radius); background: var(--accent); color: var(--accent-ink); font-size: 14px; font-weight: 600; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--ink); }
.mobile-menu { position: fixed; inset: 0; background: var(--bg); z-index: 49; display: none; padding: 110px 8% 40px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a { font-family: var(--display); font-size: 26px; font-weight: 600; }
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}
/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
/* stats */
.stats { background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stats__number { font-family: var(--display); font-size: clamp(34px, 5vw, 52px); font-weight: 700; }
.stats__number span { font-size: .45em; vertical-align: top; }
.stats__label { color: var(--muted); font-size: 14px; margin-top: 6px; }
@media (max-width: 860px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
/* shared card bits */
.icon-chip { width: 46px; height: 46px; border-radius: var(--radius); background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ink-2); margin-bottom: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); }
/* marquee */
.marquee { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.marquee__track { display: flex; gap: 28px; white-space: nowrap; animation: scroll 30s linear infinite; width: max-content; font-family: var(--display); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
@keyframes scroll { to { transform: translateX(-50%); } }
/* testimonials */
.testimonials { background: var(--bg-2); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 28px; }
.testimonial-card p { font-size: 15px; margin-bottom: 16px; }
.testimonial-card__name { font-weight: 700; font-size: 14px; }
.testimonial-card__role { color: var(--muted); font-size: 13px; }
@media (max-width: 860px) { .testimonials__grid { grid-template-columns: 1fr; } }
/* cta banner */
.cta-banner { background: var(--ink); color: #fff; }
.cta-banner__inner { text-align: center; padding: 70px 0; }
.cta-banner__inner h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-banner__inner p { opacity: .8; margin-bottom: 28px; }
/* page hero (subpages) */
.page-hero { padding: 170px 0 70px; background: var(--bg-2); }
.page-hero__tag { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.page-hero__headline { font-size: clamp(34px, 5.5vw, 56px); margin-bottom: 18px; }
.page-hero__sub { color: var(--muted); max-width: 640px; font-size: 17px; }
/* services page rows */
.service-full-item { display: grid; grid-template-columns: 220px 1fr 300px; gap: 40px; padding: 44px 0; border-top: 1px solid var(--line); }
.service-full-item__num { font-family: var(--display); font-size: 15px; color: var(--muted); letter-spacing: .12em; }
.service-full-item__header h2 { font-size: clamp(22px, 3vw, 30px); margin-top: 8px; }
.service-full-item__list { list-style: none; margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.service-full-item__list li { font-size: 14.5px; color: var(--ink); opacity: .85; padding-left: 18px; position: relative; }
.service-full-item__list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.service-aside-card { background: var(--bg-2); border-radius: var(--radius-lg); padding: 24px; }
.service-aside-card h4 { margin-bottom: 8px; }
.service-aside-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .service-full-item { grid-template-columns: 1fr; gap: 18px; } }
/* about page */
.about-story__grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; }
.about-story__left h2 { font-size: clamp(26px, 3.6vw, 38px); }
.about-story__right p { margin-bottom: 18px; color: var(--ink); opacity: .9; }
@media (max-width: 860px) { .about-story__grid { grid-template-columns: 1fr; } }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { padding: 26px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
/* contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; padding: 80px 0; }
.contact-info h3 { margin-bottom: 10px; }
.contact-info p, .contact-info a { color: var(--muted); font-size: 15px; }
.contact-info a:hover { color: var(--ink); text-decoration: underline; }
.contact-info__block { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius); font-family: var(--body); font-size: 15px; background: var(--bg); color: var(--ink); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-error { color: #c0392b; font-size: 13px; margin-top: 5px; min-height: 17px; }
.form-success { display: none; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin-top: 18px; font-size: 14.5px; }
.form-success.show { display: block; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
/* footer */
.footer { background: var(--ink); color: #fff; padding: 70px 0 30px; }
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand p { opacity: .75; font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer__links h5 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; opacity: .7; flex-wrap: wrap; gap: 8px; }
.footer .nav__logo span { color: var(--accent); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

.hero { padding: 180px 0 90px; text-align: center; background: radial-gradient(900px 420px at 50% -10%, var(--bg-2), transparent); }
.hero__tag { display: inline-block; font-size: 13px; font-weight: 600; color: var(--ink-2); background: var(--bg-2); padding: 8px 20px; border-radius: 999px; margin-bottom: 24px; }
.hero__headline { font-size: clamp(36px, 6.5vw, 64px); font-weight: 500; margin: 0 auto 22px; max-width: 780px; }
.hero__sub { color: var(--muted); font-size: 17px; max-width: 600px; margin: 0 auto 36px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__dots { display: flex; gap: 10px; justify-content: center; margin-top: 46px; }
.hero__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.hero__dots span:first-child { background: var(--accent); }
.services-preview { background: var(--bg); }
.services-list { display: flex; flex-direction: column; gap: 16px; }
.service-row { display: flex; align-items: center; gap: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 30px; box-shadow: var(--card-shadow); }
.service-row__num { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-2); color: var(--ink-2); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; flex-shrink: 0; }
.service-row h3 { font-size: 21px; font-weight: 500; }
.service-row p { color: var(--muted); font-size: 14.5px; flex: 1; }
.service-row__link { font-size: 14px; font-weight: 700; color: var(--ink-2); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 760px) { .service-row { flex-direction: column; align-items: flex-start; gap: 12px; } }

.footer__grid { grid-template-columns: 1.6fr 1fr; }
