:root {
  --ink: #191c1d;
  --ink-soft: #4f5354;
  --paper: #ffffff;
  --wash: #f5f3ef;
  --wash-2: #ece9e3;
  --gold: #b88634;
  --gold-dark: #95691f;
  --line: #ddd9d1;
  --max: 1200px;
  --shadow: 0 24px 65px rgba(22, 24, 24, 0.09);
  --shadow-soft: 0 14px 38px rgba(22, 24, 24, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -80px;
  padding: 12px 18px; background: var(--ink); color: white;
}
.skip-link:focus { top: 16px; }
.eyebrow {
  margin: 0 0 14px; color: var(--gold-dark); font-size: .76rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow--light { color: #d7a956; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(2.6rem, 5vw, 5.2rem); font-weight: 720; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.4vw, 3.35rem); font-weight: 690; }
h3 { margin-bottom: 12px; font-size: 1.25rem; }

.site-header {
  position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(25,28,29,.1);
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
}
.header-inner { min-height: 100px; display: flex; align-items: center; gap: 24px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.brand--header { width: 245px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(17px, 2vw, 32px); margin-left: auto; }
.main-nav a { position: relative; font-size: .85rem; font-weight: 650; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px;
  background: var(--gold); transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language { display: flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 700; }
.language a { padding: 0; color: #7b7d7d; }
.language .language__active { color: var(--ink); }
.nav-language { display: none; }
.header-phone { min-height: 42px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--line); border-radius: 2px; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.header-phone svg, .button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 25px; border: 1px solid transparent; border-radius: 2px; cursor: pointer;
  font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: white; box-shadow: 0 10px 25px rgba(184,134,52,.2); }
.button--gold:hover { background: var(--gold-dark); box-shadow: 0 14px 32px rgba(149,105,31,.26); }
.button--outline { border-color: var(--gold); color: var(--gold-dark); background: white; }
.button--dark { color: white; background: var(--ink); }
.button--dark:hover { background: #303435; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { min-height: 720px; display: grid; align-items: stretch; background: var(--wash); }
.hero .shell { width: min(100%, 1440px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.hero-copy { padding: clamp(80px, 8vw, 138px) clamp(32px, 6vw, 92px); align-self: center; }
.hero-lead { max-width: 590px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.6vw, 1.32rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.language-proof { display: flex; align-items: center; gap: 10px; margin: 26px 0 0; font-size: .82rem; font-weight: 650; }
.language-proof span { color: var(--gold); font-size: 1.3rem; }
.hero-media { position: relative; min-height: 680px; overflow: hidden; background: #d9d2c7; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__badge {
  position: absolute; z-index: 1; right: 28px; bottom: 28px; padding: 16px 20px;
  border-left: 3px solid var(--gold); background: rgba(255,255,255,.93); box-shadow: var(--shadow);
}
.hero-media__badge span, .hero-media__badge strong { display: block; }
.hero-media__badge span { font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; }

.trust { border-bottom: 1px solid var(--line); background: white; }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust article { display: flex; align-items: center; gap: 14px; padding: 22px 26px; border-right: 1px solid var(--line); }
.trust article:first-child { border-left: 1px solid var(--line); }
.line-icon {
  flex: 0 0 52px; width: 52px; height: 52px; color: var(--ink); fill: none;
  stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round;
}
.trust strong, .trust small { display: block; }
.trust strong { font-size: .88rem; }
.trust small { color: var(--ink-soft); font-size: .7rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 54px; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 430px; margin-bottom: 5px; color: var(--ink-soft); }
.section-heading--compact { align-items: center; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { min-height: 440px; border: 1px solid var(--line); background: white; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__image { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--wash-2); }
.service-card__image img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__body { padding: 28px 30px 30px; }
.service-card__body > span { display: block; margin-bottom: 18px; color: var(--gold); font-weight: 800; letter-spacing: .08em; }
.service-card p { color: var(--ink-soft); }
.service-card a, .audience-card a, .text-link { color: var(--gold-dark); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-card a { display: inline-block; margin-top: 12px; }

.audiences { background: var(--wash); }
.center-heading { max-width: 790px; margin: 0 auto 54px; text-align: center; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 430px; background: white; box-shadow: 0 18px 55px rgba(24,25,24,.07); overflow: hidden; }
.audience-image { min-height: 430px; overflow: hidden; }
.audience-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.audience-card:hover .audience-image img { transform: scale(1.035); }
.audience-content { padding: 42px 34px; align-self: center; }
.audience-label { margin-bottom: 8px; color: var(--gold-dark); font-size: .71rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.audience-content ul { margin: 24px 0 30px; padding: 0; list-style: none; color: var(--ink-soft); }
.audience-content li { position: relative; padding: 7px 0 7px 18px; border-bottom: 1px solid #edeae4; font-size: .86rem; }
.audience-content li::before { content: ""; position: absolute; left: 0; top: 17px; width: 5px; height: 5px; background: var(--gold); }

.promise-grid { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 560px; }
.promise-visual {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 520px; overflow: hidden; color: white; background: var(--ink);
}
.promise-visual::after {
  content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(184,134,52,.32); border-radius: 50%;
}
.sun-orbit {
  position: relative; z-index: 1; width: 180px; height: 180px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 32px rgba(184,134,52,.06), 0 0 0 64px rgba(184,134,52,.035);
}
.sun-orbit span { color: var(--gold); font-size: 5rem; font-weight: 800; line-height: 1; }
.promise-visual p { position: relative; z-index: 1; margin: 44px 0 0; text-align: center; color: #e8e5de; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.promise-copy { padding: 34px clamp(28px, 6vw, 88px); align-self: center; }
.promise-copy > h2 { max-width: 640px; }
.promise-list { margin-top: 38px; }
.promise-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.promise-list b { color: var(--gold); font-size: .9rem; }
.promise-list h3 { margin-bottom: 5px; font-size: 1rem; }
.promise-list p { margin: 0; color: var(--ink-soft); font-size: .89rem; }

.process { padding: 92px 0; color: white; background: #222526; }
.process-heading { max-width: 760px; margin-bottom: 48px; }
.process-heading h2 { margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.process-grid article { padding: 36px 30px 4px; border-right: 1px solid rgba(255,255,255,.2); }
.process-grid article:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.process-grid b { color: #d6a34c; font-size: 1.8rem; font-weight: 500; }
.process-grid h3 { margin: 20px 0 10px; font-size: 1rem; }
.process-grid p { color: #c9cbca; font-size: .83rem; }

.projects { background: white; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { border: 1px solid var(--line); background: white; overflow: hidden; }
.project-card > img { aspect-ratio: 4 / 3; object-fit: cover; }
.project-card > div { padding: 28px; }
.project-card small { display: block; margin-bottom: 12px; color: var(--gold-dark); font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.project-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .88rem; }
blockquote { margin: 54px 0 0; padding: 36px 42px; border: 1px solid var(--line); background: var(--wash); text-align: center; }
blockquote .stars { margin-bottom: 12px; color: var(--gold); letter-spacing: .25em; }
blockquote p { max-width: 820px; margin: 0 auto 12px; font-size: 1.05rem; }
blockquote cite { color: var(--ink-soft); font-size: .72rem; font-style: normal; }

.areas { padding: 86px 0; background: var(--wash); }
.areas-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.areas h2 { max-width: 760px; }
.areas p:last-child { margin-bottom: 0; color: var(--ink-soft); font-weight: 650; }
.area-mark { position: relative; height: 180px; border-bottom: 2px solid rgba(184,134,52,.65); transform: rotate(-4deg); }
.area-mark::before, .area-mark::after { content: ""; position: absolute; border: 2px solid rgba(184,134,52,.7); border-radius: 50%; }
.area-mark::before { width: 160px; height: 86px; left: 10%; bottom: -18px; border-right-color: transparent; border-bottom-color: transparent; transform: rotate(22deg); }
.area-mark::after { width: 190px; height: 105px; right: 8%; bottom: -28px; border-left-color: transparent; border-bottom-color: transparent; transform: rotate(-16deg); }
.area-mark span { position: absolute; z-index: 1; bottom: -7px; width: 12px; height: 12px; border: 3px solid var(--wash); border-radius: 50%; background: var(--gold); }
.area-mark span:nth-child(1) { left: 8%; }.area-mark span:nth-child(2) { left: 29%; }.area-mark span:nth-child(3) { left: 50%; }.area-mark span:nth-child(4) { left: 72%; }.area-mark span:nth-child(5) { left: 91%; }

.guides { padding: 92px 0; border-bottom: 1px solid var(--line); }
.guides-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.guide-list { border-top: 1px solid var(--line); }
.guide-list a { display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.guide-list span, .guide-list b { color: var(--gold-dark); }

.contact-cta { padding: 96px 0; background: #ece7dc; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); align-items: start; gap: clamp(54px, 8vw, 110px); }
.contact-cta h2 { max-width: 820px; }
.contact-intro > p:not(.eyebrow):not(.contact-email) { max-width: 650px; color: var(--ink-soft); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact-cta .button { min-width: 190px; }
.contact-email { margin: 24px 0 0; color: var(--ink-soft); font-size: .86rem; }
.contact-email a { color: var(--gold-dark); font-weight: 750; }
.contact-form { padding: clamp(28px, 4vw, 46px); background: white; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink); font-size: .74rem; font-weight: 750; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form input:not([type="checkbox"]):not([type="file"]),
.contact-form textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cbc6bc; border-radius: 0;
  color: var(--ink); background: #fbfaf8; font: inherit; font-size: .92rem; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 128px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,52,.13); }
.file-field span { color: var(--ink-soft); font-size: .68rem; font-weight: 500; }
.file-field input { padding: 12px; border: 1px dashed #bbb5aa; background: #fbfaf8; font: inherit; font-size: .78rem; }
.privacy-field { grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.45; }
.privacy-field input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--gold-dark); }
.privacy-field a { color: var(--gold-dark); text-decoration: underline; }
.privacy-summary { display: grid; gap: 5px; margin: 0 0 18px; padding: 15px 16px; border-left: 3px solid var(--gold); color: var(--ink-soft); background: #f6f3ed; font-size: .7rem; line-height: 1.5; }
.privacy-summary strong { color: var(--ink); font-size: .72rem; }
.privacy-summary a { color: var(--gold-dark); text-decoration: underline; }
.contact-form .button { width: 100%; }
.contact-form > small { display: block; margin-top: 13px; color: var(--ink-soft); text-align: center; font-size: .69rem; }

.site-footer { padding: 58px 0 20px; color: #e9e8e3; background: #1d2021; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; }
.brand--footer { width: min(300px, 100%); }
.footer-grid > div:first-child > p { max-width: 360px; margin: 14px 0 0; color: #bfc1bf; font-size: .82rem; }
.footer-grid h2 { margin: 12px 0 17px; color: white; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid > div:not(:first-child) p { display: block; margin: 7px 0; color: #c8cac7; font-size: .78rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #929592; font-size: .68rem; }
.footer-bottom a { color: #bfc1bf; text-decoration: underline; text-underline-offset: 3px; }

.legal-page { background: #f7f5f0; }
.legal-hero { padding: 78px 0 66px; color: white; background: #202324; }
.legal-hero .eyebrow { color: #d4aa62; }
.legal-hero h1 { max-width: 830px; margin-bottom: 18px; color: white; }
.legal-hero__lead { max-width: 760px; margin: 0; color: #d2d3d0; font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.65; }
.legal-meta { margin-top: 24px; color: #aeb1ae; font-size: .76rem; }
.legal-content { padding: 74px 0 100px; }
.legal-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 58px; background: #d9d2c6; border: 1px solid #d9d2c6; }
.legal-summary-grid article { padding: 24px; background: white; }
.legal-summary-grid small { display: block; margin-bottom: 8px; color: var(--gold-dark); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-summary-grid strong { color: var(--ink); font-size: .92rem; line-height: 1.4; }
.legal-layout { display: grid; grid-template-columns: minmax(210px, .38fr) minmax(0, 1fr); align-items: start; gap: clamp(42px, 7vw, 100px); }
.legal-aside { position: sticky; top: 120px; padding: 28px; border-top: 3px solid var(--gold); background: white; box-shadow: var(--shadow-soft); }
.legal-aside h2 { margin: 0 0 12px; font-size: 1.05rem; }
.legal-aside p { margin: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.6; }
.legal-aside a { color: var(--gold-dark); font-weight: 750; }
.legal-sections { display: grid; gap: 42px; }
.legal-section { padding-bottom: 38px; border-bottom: 1px solid #d9d2c6; }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin: 0 0 16px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.legal-section h3 { margin: 22px 0 8px; font-size: 1rem; }
.legal-section p, .legal-section li { color: var(--ink-soft); font-size: .9rem; line-height: 1.72; }
.legal-section p { margin: 0 0 13px; }
.legal-section ul { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 20px; }
.legal-section a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }

/* Service pages */
.service-page { background: var(--paper); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 38px; color: #777b7b; font-size: .72rem; font-weight: 650; }
.breadcrumbs a { color: var(--gold-dark); }
.breadcrumbs--light { color: #b9bcba; }
.breadcrumbs--light a { color: #e0b765; }
.service-hero { overflow: hidden; background: var(--wash); }
.service-hero-grid { width: min(100%, 1440px); display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.service-hero-copy { align-self: center; padding: 58px clamp(32px, 6vw, 92px) 76px; }
.service-hero h1 { max-width: 760px; font-size: clamp(2.65rem, 4.6vw, 4.75rem); }
.service-hero-lead { max-width: 670px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.45vw, 1.25rem); }
.service-hero-media { position: relative; min-height: 650px; overflow: hidden; background: #d8d2c8; }
.service-hero-media > img { height: 100%; object-fit: cover; }
.service-image-label { position: absolute; right: 28px; bottom: 28px; max-width: calc(100% - 56px); padding: 16px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.service-image-label small, .service-image-label strong { display: block; }
.service-image-label small { margin-bottom: 2px; color: var(--gold-dark); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-image-label strong { font-size: .85rem; }
.service-proof { color: white; background: var(--ink); }
.service-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-proof-grid article { min-height: 148px; display: flex; align-items: center; gap: 22px; padding: 28px clamp(22px, 2.5vw, 38px); border-right: 1px solid rgba(255,255,255,.14); }
.service-proof-grid article:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.service-proof-grid article div { display: grid; gap: 6px; }
.service-proof-grid strong { color: white; font-size: .92rem; font-weight: 650; line-height: 1.35; }
.service-proof-grid span { color: #bfc1bf; font-size: .76rem; line-height: 1.45; }
.proof-icon { width: 46px; height: 46px; flex: 0 0 auto; color: #d6a34c; stroke-width: 1.65; }
.service-intro-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(60px, 9vw, 130px); }
.service-intro-grid h2 { max-width: 600px; }
.prose p, .editorial-copy > p { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.service-features { background: var(--wash); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-grid article { position: relative; min-height: 270px; overflow: hidden; padding: 38px 40px 40px; border: 1px solid #ded8ce; background: white; box-shadow: 0 14px 40px rgba(24,26,26,.055); }
.feature-grid article::before { content: ""; position: absolute; top: 0; left: 0; width: 82px; height: 3px; background: var(--gold); }
.feature-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.feature-icon { width: 70px; height: 70px; display: grid; place-items: center; color: #c18a2e; }
.feature-icon .service-icon { width: 60px; height: 60px; stroke-width: 1.65; }
.feature-number { color: #e4ded4; font-size: 3rem; font-weight: 500; line-height: .9; letter-spacing: -.05em; }
.feature-grid h3 { margin: 0 0 13px; font-size: 1.25rem; }
.feature-grid p { max-width: 570px; margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.editorial-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(55px, 9vw, 130px); }
.service-editorial aside { padding: 42px; border-top: 4px solid var(--gold); background: var(--ink); color: white; }
.service-editorial aside h2 { font-size: clamp(1.8rem, 2.7vw, 2.75rem); }
.check-list { margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 27px; border-top: 1px solid rgba(255,255,255,.15); color: #d5d6d3; font-size: .86rem; }
.check-list li::before { content: "✓"; position: absolute; left: 1px; color: #d6a34c; font-weight: 800; }
.editorial-copy { align-self: center; }
.local-note { margin-top: 34px; padding: 24px 26px; border-left: 3px solid var(--gold); background: var(--wash); }
.local-note strong { display: block; margin-bottom: 5px; }
.local-note p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.service-process { padding: 94px 0; color: white; background: #222526; }
.service-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.service-process-grid article { min-height: 260px; padding: 34px 28px 20px; border-right: 1px solid rgba(255,255,255,.18); }
.service-process-grid article:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.service-process-grid b { color: #d6a34c; font-size: 1.3rem; font-weight: 600; }
.process-step-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.process-icon { width: 54px; height: 54px; color: #e0ad54; stroke-width: 1.65; }
.service-process-grid h3 { margin-top: 28px; color: white; font-size: 1.08rem; }
.service-process-grid p { color: #c7c9c6; font-size: .9rem; line-height: 1.6; }
.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(55px, 9vw, 120px); }
.faq-layout > div:first-child > p:last-child { max-width: 390px; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 23px 4px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-dark); font-size: 1.4rem; line-height: 1; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 34px 24px 4px; color: var(--ink-soft); font-size: .88rem; }
.related-services { background: var(--wash); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card { display: flex; min-height: 460px; overflow: hidden; flex-direction: column; border: 1px solid var(--line); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.related-card__image { display: block; height: 190px; overflow: hidden; background: #d8d2c8; }
.related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.related-card:hover .related-card__image img { transform: scale(1.025); }
.related-card__body { display: flex; flex: 1; flex-direction: column; padding: 28px 30px 30px; }
.related-card__body > span { color: var(--gold); font-weight: 800; }
.related-card h3 { margin: 22px 0 10px; }
.related-card p { color: var(--ink-soft); font-size: .82rem; }
.related-card b { margin-top: auto; padding-top: 14px; color: var(--gold-dark); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.service-audience-links { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; margin-top: 34px; padding: 24px 28px; border-left: 3px solid var(--gold); background: white; }
.service-audience-links span { margin-right: auto; color: var(--ink-soft); font-size: .76rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.service-audience-links a { color: var(--gold-dark); font-size: .8rem; font-weight: 750; }
.service-cta-band { padding: 82px 0; color: white; background: var(--ink); }
.service-cta-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr); align-items: center; gap: 70px; }
.service-cta-grid h2 { max-width: 790px; color: white; }
.service-cta-grid p:not(.eyebrow) { max-width: 720px; margin: 0; color: #c8cac7; }
.service-cta-grid > div:last-child { display: grid; gap: 16px; justify-items: start; }
.service-cta-phone { color: white; font-size: 1.2rem; font-weight: 750; letter-spacing: .04em; }
.services-hub-hero { padding: 90px 0 96px; color: white; background: var(--ink); }
.services-hub-hero h1 { max-width: 940px; color: white; }
.services-hub-hero > .shell > p:last-child { max-width: 760px; margin: 0; color: #d0d2cf; font-size: 1.08rem; }
.service-grid--hub .service-card { min-height: 525px; }
.service-grid--hub .service-card__body h2 { font-size: 1.4rem; }
.service-grid--hub .service-card__body p { font-size: .84rem; }
.hub-principles { background: var(--wash); }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principles-grid article { padding: 34px; background: white; }
.principle-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.principle-icon { width: 56px; height: 56px; color: #c18a2e; stroke-width: 1.65; }
.principles-grid b { color: #ddd7cd; font-size: 2.5rem; font-weight: 500; line-height: 1; }
.principles-grid h3 { margin: 0 0 12px; font-size: 1.08rem; }
.principles-grid p { margin: 0; color: var(--ink-soft); font-size: .83rem; }

/* Audience pages */
.audience-hero .service-hero-media > img { object-position: center; }
.audience-services { background: white; }
.audience-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-service-card { min-height: 470px; display: flex; overflow: hidden; flex-direction: column; border: 1px solid var(--line); background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }
.audience-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.audience-service-card__image { height: 190px; display: block; overflow: hidden; background: #d8d2c8; }
.audience-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.audience-service-card:hover .audience-service-card__image img { transform: scale(1.025); }
.audience-service-card__body { flex: 1; display: flex; flex-direction: column; padding: 29px 30px 31px; }
.audience-service-card small { color: var(--gold-dark); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.audience-service-card h3 { margin: 18px 0 11px; font-size: 1.2rem; }
.audience-service-card p { margin: 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.65; }
.audience-service-card b { margin-top: auto; padding-top: 24px; color: var(--gold-dark); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.audience-crosslink { padding: 66px 0; color: white; background: #303435; border-bottom: 1px solid rgba(255,255,255,.12); }
.audience-crosslink-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 60px; }
.audience-crosslink h2 { margin-bottom: 12px; color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.audience-crosslink p:not(.eyebrow) { max-width: 760px; margin: 0; color: #c8cac7; }
.audience-crosslink .button--outline { color: white; border-color: rgba(255,255,255,.45); }

.preview-toast {
  position: fixed; z-index: 200; right: 22px; bottom: 22px; max-width: min(390px, calc(100% - 44px));
  padding: 15px 18px; color: white; background: var(--ink); border-left: 3px solid var(--gold);
  box-shadow: var(--shadow); opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.preview-toast.is-visible { opacity: 1; transform: translateY(0); }
.whatsapp-float {
  position: fixed; z-index: 150; right: 22px; bottom: 22px; min-height: 54px; display: flex; align-items: center; gap: 10px;
  padding: 0 20px; border-radius: 30px; color: white; background: #1f9d55; box-shadow: 0 14px 34px rgba(18,98,52,.28);
  font-size: .75rem; font-weight: 800; letter-spacing: .04em; transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #188347; }
.whatsapp-float svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.preview-toast { bottom: 90px; }

@media (max-width: 1120px) {
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .77rem; }
  .language { display: flex; }
  .header-cta { display: none; }
  .header-phone { width: 38px; min-width: 38px; height: 38px; min-height: 38px; justify-content: center; padding: 0; border-radius: 50%; }
  .header-phone span { display: none; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-image { min-height: 290px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 80px 0; }
  .header-inner { min-height: 84px; justify-content: space-between; }
  .brand--header { width: 230px; }
  .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
  .main-nav {
    position: fixed; inset: 84px 0 auto; display: grid; gap: 0; padding: 18px 24px 28px;
    background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .2s ease;
  }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .header-actions .language { display: none; }
  .nav-language { display: flex; align-items: center; justify-content: flex-start; gap: 8px; padding-top: 18px; font-size: .9rem; font-weight: 800; }
  .nav-language a { padding: 4px 0; border: 0; color: var(--ink-soft); }
  .nav-language .language__active { color: var(--gold-dark); }
  .header-cta { display: none; }
  .hero-grid, .promise-grid, .areas-grid, .guides-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 76px 16px 64px; }
  .hero-media { min-height: 480px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust article:nth-child(3) { border-left: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .project-grid { grid-template-columns: 1fr; }
  .audience-card { grid-template-columns: 1.05fr .95fr; }
  .promise-copy { padding-top: 64px; padding-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.2); border-top: 1px solid rgba(255,255,255,.2); }
  .process-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
  .areas-grid { gap: 48px; }
  .guides-grid { gap: 30px; }
  .contact-grid { gap: 46px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .legal-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-grid, .service-intro-grid, .editorial-grid, .faq-layout, .service-cta-grid { grid-template-columns: 1fr; }
  .service-hero-copy { padding: 54px 16px 64px; }
  .service-hero-media { min-height: 500px; }
  .service-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .service-proof-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); }
  .service-proof-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.18); border-top: 1px solid rgba(255,255,255,.18); }
  .service-process-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .related-grid { grid-template-columns: 1fr; }
  .audience-service-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-crosslink-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-cta-grid { gap: 36px; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.28rem, 11vw, 3.35rem); }
  h2 { font-size: 2rem; }
  .brand--header { width: 205px; }
  .hero { min-height: 0; }
  .hero-copy { padding-top: 58px; }
  .hero-media { min-height: 370px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .trust article, .trust article:first-child, .trust article:nth-child(3) { border: 0; border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card__body { padding: 25px; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-image { min-height: 270px; }
  .audience-content { padding: 32px 25px; }
  .promise-visual { min-height: 430px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article:first-child, .process-grid article:nth-child(3), .process-grid article:nth-child(4) { border: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .process-grid article:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
  blockquote { padding: 28px 22px; }
  .area-mark { height: 135px; }
  .contact-buttons { display: grid; margin-top: 28px; }
  .contact-cta .button { width: 100%; min-width: 0; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .legal-summary-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .service-hero-copy { padding: 42px 16px 56px; }
  .service-hero-media { min-height: 430px; }
  .service-editorial aside { padding: 34px 28px; }
  .service-cta-grid > div:last-child { justify-items: stretch; }
  .service-cta-phone { text-align: center; }
  .service-audience-links { display: grid; gap: 14px; }
  .audience-service-grid { grid-template-columns: 1fr; }
  .audience-service-card { min-height: 0; }
  .audience-crosslink .button { width: 100%; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .preview-toast { right: 16px; bottom: 82px; max-width: calc(100% - 32px); }
}

@media (max-width: 620px) {
  .breadcrumbs { margin-bottom: 28px; }
  .service-hero h1 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .service-hero-media { min-height: 340px; }
  .service-image-label { right: 18px; bottom: 18px; max-width: calc(100% - 36px); }
  .service-proof-grid, .feature-grid, .service-process-grid, .principles-grid { grid-template-columns: 1fr; }
  .service-proof-grid article, .service-proof-grid article:first-child, .service-proof-grid article:nth-child(3) { min-height: 116px; padding: 23px 6px; border: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .service-proof-grid article:first-child { border-top: 0; }
  .proof-icon { width: 42px; height: 42px; }
  .feature-grid { gap: 16px; }
  .feature-grid article { min-height: 0; padding: 30px 26px 32px; }
  .feature-card-head { margin-bottom: 24px; }
  .feature-icon { width: 62px; height: 62px; }
  .feature-icon .service-icon { width: 54px; height: 54px; }
  .feature-number { font-size: 2.5rem; }
  .service-process-grid article, .service-process-grid article:first-child, .service-process-grid article:nth-child(3), .service-process-grid article:nth-child(4) { min-height: 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .related-card { min-height: 0; }
  .related-card__image { height: 180px; }
  .services-hub-hero { padding: 62px 0 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
