:root {
  --ink: #050505;
  --paper: #fff;
  --muted: #5e5e5e;
  --line: #e5e5e5;
  --soft: #fafafa;
  --serif: "Times New Roman", Times, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --site-width: 1200px;
  --gutter: 24px;
  --section: 112px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.42; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { background: none; border: 0; cursor: pointer; }

.skip-link { background: var(--ink); color: var(--paper); left: 16px; padding: 12px 16px; position: fixed; top: -80px; z-index: 1000; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

.navbar { align-items: center; backdrop-filter: blur(8px); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); display: flex; height: 90px; left: 0; position: fixed; right: 0; top: 0; z-index: 100; }
.nav-container { align-items: center; display: flex; justify-content: space-between; margin: 0 auto; max-width: var(--site-width); padding: 0 var(--gutter); position: relative; width: 100%; z-index: 102; }
.nav-brand { font-size: 1.34rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; position: relative; z-index: 102; }
.nav-desktop { align-items: center; display: flex; gap: 28px; }
.nav-link { font-size: .98rem; font-weight: 500; position: relative; white-space: nowrap; }
.nav-link::after { background: var(--ink); bottom: -5px; content: ""; height: 1px; left: 0; position: absolute; transition: width .25s ease; width: 0; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown summary { align-items: center; cursor: pointer; display: flex; gap: 7px; list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary svg { fill: none; height: 8px; stroke: currentColor; stroke-width: 1.5; transition: transform .2s; width: 12px; }
.nav-dropdown[open] summary svg { transform: rotate(180deg); }
.nav-dropdown-panel { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; left: -22px; min-width: 235px; padding: 13px 0; position: absolute; top: 34px; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.nav-dropdown-panel a { font-size: .93rem; padding: 11px 22px; }
.nav-dropdown-panel a:hover { background: var(--soft); }
.nav-cta, .button-primary, .submit-btn { align-items: center; background: var(--ink); border: 1px solid var(--ink); color: var(--paper); display: inline-flex; font-size: .75rem; font-weight: 700; gap: 13px; justify-content: center; letter-spacing: .11em; padding: 15px 20px; text-transform: uppercase; transition: background .25s, color .25s, transform .25s; }
.nav-cta:hover, .button-primary:hover, .submit-btn:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.nav-cta { padding: 13px 17px; }
.arrow-icon { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; width: 18px; }
.menu-toggle-btn { display: none; height: 40px; position: relative; width: 40px; z-index: 102; }
.menu-toggle-btn span { background: var(--ink); height: 1.5px; left: 7px; position: absolute; transition: transform .25s, top .25s; width: 26px; }
.menu-toggle-btn span:first-child { top: 14px; }
.menu-toggle-btn span:last-child { top: 24px; }
.menu-toggle-btn[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.menu-toggle-btn[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.mobile-menu { background: var(--paper); display: flex; flex-direction: column; gap: 21px; height: calc(100dvh - 90px); left: 0; overflow: auto; padding: 34px 24px 40px; position: fixed; right: 0; top: 90px; z-index: 101; }
.mobile-menu[hidden] { display: none; }
.mobile-menu > a:not(.nav-cta) { font-family: var(--serif); font-size: 1.9rem; line-height: 1.05; }
.mobile-menu-label { color: #888; font-size: .68rem; letter-spacing: .14em; margin-bottom: -10px; margin-top: 5px; text-transform: uppercase; }
.mobile-menu .nav-cta { margin-top: 8px; width: fit-content; }
.language-row { align-items: center; display: flex; gap: 13px; }
.mobile-menu .language-row { border-top: 1px solid var(--line); margin-top: auto; padding-top: 24px; }
.language-row button, .language-row a, .language-row span { color: #8a8a8a; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.language-row button, .language-row a { border-bottom: 1px solid transparent; padding: 4px 0; transition: border-color .2s, color .2s; }
.language-row button:hover, .language-row a:hover, .language-row button:focus-visible, .language-row a:focus-visible { border-color: currentColor; color: var(--ink); }
.language-row button[aria-pressed="true"], .language-row a[aria-pressed="true"] { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.language-status { background: var(--ink); bottom: 24px; color: var(--paper); font-size: .84rem; left: 50%; max-width: min(460px, calc(100% - 36px)); padding: 14px 18px; position: fixed; text-align: center; transform: translateX(-50%); z-index: 350; }
.language-status[hidden] { display: none; }

main { padding-top: 90px; }
.hero-section, .content-section, .split-section, .statement-section, .results-section, .cta-band, .contact-hero, .not-found { margin: 0 auto; max-width: var(--site-width); padding: var(--section) var(--gutter); }
.hero-section { align-items: center; display: flex; min-height: calc(92vh - 90px); padding-bottom: 76px; padding-top: 76px; }
.hero-content { align-items: center; display: grid; gap: clamp(44px, 6vw, 76px); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); width: 100%; }
.hero-image-container { aspect-ratio: 1 / 1; overflow: hidden; }
.hero-image-container img { height: 100%; object-fit: cover; transition: transform 1.2s ease; width: 100%; }
.hero-image-container:hover img { transform: scale(1.015); }
.hero-image-container.portrait-top img { object-position: 50% 33%; }
.hero-image-container.sofa-crop img { object-position: 50% 61%; }
.hero-image-container.full-length img { object-position: 50% 48%; }
.hero-text { min-width: 0; }
.hero-label { color: var(--muted); font-size: .69rem; font-weight: 650; letter-spacing: .14em; margin-bottom: 22px; text-transform: uppercase; }
.hero-title, .section-title, .cta-band h2, .statement-section blockquote, .legal-page h1, .not-found h1 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.hero-title { font-size: clamp(3.1rem, 5.1vw, 5.3rem); margin-bottom: 28px; }
.hero-title em, .section-title em { font-family: inherit; font-weight: inherit; }
.hero-subtitle { color: #333; font-size: clamp(1.07rem, 1.4vw, 1.3rem); line-height: 1.48; margin-bottom: 36px; max-width: 580px; }
.hero-intro { color: #2f2f2f; font-size: 1.02rem; line-height: 1.58; margin-bottom: 34px; max-width: 590px; }
.hero-section--detailed .hero-label { margin-bottom: 24px; }
.hero-section--detailed .hero-title { margin-bottom: 25px; }
.hero-section--detailed .hero-subtitle { margin-bottom: 26px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; }
.button-primary { min-height: 54px; padding: 17px 26px; }
.text-link { align-items: center; border-bottom: 1px solid #aaa; display: inline-flex; font-size: .91rem; font-weight: 600; gap: 11px; padding-bottom: 4px; width: fit-content; transition: border-color .2s; }
.text-link:hover { border-color: var(--ink); }

.content-section { border-top: 1px solid var(--line); }
.intro-section { border-top: 0; padding-top: 88px; }
.bordered-section { border-top: 1px solid var(--line); }
.section-header { margin-bottom: 62px; max-width: 930px; }
.section-label { align-items: center; color: var(--muted); display: flex; font-size: .68rem; font-weight: 650; gap: 14px; letter-spacing: .15em; margin-bottom: 22px; text-transform: uppercase; }
.section-line { background: var(--ink); height: 1px; width: 30px; }
.section-title { font-size: clamp(2.65rem, 4.6vw, 4.75rem); }
.section-intro { color: #444; font-size: 1.14rem; line-height: 1.55; margin-top: 24px; max-width: 750px; }
.two-column-copy { align-items: start; display: grid; gap: clamp(50px, 9vw, 120px); grid-template-columns: 1.15fr .85fr; }
.two-column-copy p, .long-copy p, .split-copy > p, .statement-section > p { color: #393939; font-size: 1.09rem; line-height: 1.62; }
.two-column-copy p + p, .long-copy p + p, .split-copy > p + p { margin-top: 20px; }
.two-column-copy blockquote { align-self: end; border-left: 1px solid var(--ink); font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3.1rem); line-height: 1.05; padding-left: 30px; }

.numbered-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); }
.numbered-item { border-bottom: 1px solid var(--line); min-height: 200px; padding: 42px 46px 46px 0; transition: background-color .25s ease; }
.numbered-item:hover { background-color: var(--soft); }
.numbered-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 52px; }
.numbered-item:nth-child(even) { padding-left: 52px; }
.item-number, .formats-grid article > span { color: #999; display: block; font-family: var(--serif); font-size: 1rem; margin-bottom: 40px; }
.numbered-item h3, .formats-grid h3, .credentials-grid h3 { font-size: 1.32rem; line-height: 1.2; margin-bottom: 17px; }
.numbered-item p, .formats-grid p, .formats-grid li, .credentials-grid li { color: #4b4b4b; font-size: .98rem; line-height: 1.5; }
.numbered-item .text-link { margin-top: 22px; }

.principles-grid { border-bottom: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); margin-top: 58px; }
.principles-grid .numbered-item { border-bottom: 0; border-right: 1px solid var(--line); min-height: 330px; padding: 37px 28px; }
.principles-grid .numbered-item:first-child { padding-left: 0; }
.principles-grid .numbered-item:last-child { border-right: 0; padding-right: 0; }

.long-copy { max-width: 830px; }
.intro-grid { align-items: start; display: grid; gap: clamp(40px, 6vw, 100px); grid-template-columns: 1.05fr 1.15fr; }
.intro-grid .section-header { margin-bottom: 0; max-width: none; }
.intro-grid .long-copy { margin-left: 0; max-width: none; }
.intro-grid .text-link { margin-top: 28px; }
.grid-action-row { margin-top: 38px; }
.principles-grid + .long-copy { margin-top: 52px; }
.principles-grid + .long-copy .text-link { margin-top: 32px; display: block; }

/* 2 Services Grid */
.two-services-grid { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
.service-card { display: flex; flex-direction: column; min-height: 280px; padding: 44px 48px; transition: background-color .25s ease; }
.service-card:hover { background-color: var(--soft); }
.service-card:first-child { border-right: 1px solid var(--line); padding-left: 0; }
.service-card:last-child { padding-right: 0; }
.service-card h3 { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 400; margin-bottom: 18px; }
.service-card p { color: #444; font-size: 1.05rem; line-height: 1.55; margin-bottom: 28px; }
.service-card .text-link { margin-top: auto; }

/* Executive Credibility Grid */
.executive-credibility-grid { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 50px; }
.cred-item { border-right: 1px solid var(--line); padding: 38px 28px; transition: background-color .25s ease; }
.cred-item:hover { background-color: var(--soft); }
.cred-item:first-child { padding-left: 0; }
.cred-item:last-child { border-right: 0; padding-right: 0; }
.cred-item strong { display: block; font-size: 1.35rem; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.cred-item p { color: #555; font-size: .95rem; line-height: 1.45; }

/* Scope tags */
.scope-tags { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 24px 0; }
.scope-tag { background: var(--soft); border: 1px solid var(--line); color: var(--ink); font-size: .88rem; font-weight: 500; padding: 6px 14px; }

/* Three Columns Grid */
.three-columns-grid { border-top: 1px solid var(--line); display: grid; gap: clamp(32px, 4vw, 56px); grid-template-columns: repeat(3, 1fr); padding-top: 50px; }
.column-item { padding: 12px; transition: background-color .25s ease; }
.column-item:hover { background-color: var(--soft); }
.column-item .column-header { border-bottom: 1px solid var(--line); margin-bottom: 32px; padding-bottom: 14px; }
.column-item .column-title { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.column-item h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.column-item p { color: #444; font-size: .98rem; line-height: 1.55; }
.column-subblock + .column-subblock { margin-top: 34px; }

/* Three Cards Grid (How We Work formats) */
.three-cards-grid { border-top: 1px solid var(--line); display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); padding-top: 40px; }
.format-card { border: 1px solid var(--line); display: flex; flex-direction: column; min-height: 380px; padding: 36px 32px; transition: background-color .25s ease; }
.format-card:hover { background-color: var(--soft); }
.format-card span.card-num { color: #999; display: block; font-family: var(--serif); font-size: 1rem; margin-bottom: 24px; }
.format-card h3 { font-size: 1.28rem; margin-bottom: 16px; }
.format-card p { color: #4c4c4c; font-size: .96rem; line-height: 1.55; }
.format-card p + p { margin-top: 14px; }
.format-card .text-link { margin-top: auto; padding-top: 24px; }

/* Secondary Strip (Interim secondary) */
.secondary-strip { background: var(--soft); border-bottom: 1px solid var(--line); border-top: 0; margin: 0 auto; max-width: none; width: 100%; padding: 52px max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); }
.secondary-strip-content { align-items: center; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; margin: 0 auto; max-width: var(--site-width); }
.secondary-strip-text { max-width: 720px; }
.secondary-strip-text h3 { font-size: 1.25rem; margin-bottom: 10px; }
.secondary-strip-text p { color: #444; font-size: 1rem; line-height: 1.5; }

/* Sequence Band */
.sequence-band { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; }
.sequence-step { border-right: 1px solid var(--line); padding: 32px 24px; transition: background-color .25s ease; }
.sequence-step:hover { background-color: var(--soft); }
.sequence-step:first-child { padding-left: 0; }
.sequence-step:last-child { border-right: 0; padding-right: 0; }
.sequence-step h4 { font-size: 1.15rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 8px; text-transform: uppercase; }
.sequence-step p { color: #555; font-size: .92rem; line-height: 1.45; }

/* Situations Grid */
.situations-grid { border-top: 1px solid var(--line); display: grid; gap: 36px 52px; grid-template-columns: repeat(2, 1fr); padding-top: 40px; }
.situation-item { padding: 8px 0; transition: background-color .25s ease; }
.situation-item:hover { background-color: var(--soft); }
.situation-item h4 { font-size: 1.15rem; font-weight: 650; margin-bottom: 8px; }
.situation-item p { color: #444; font-size: .96rem; line-height: 1.5; }

/* Accordions */
.accordion-group { border-top: 1px solid var(--line); margin-top: 48px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item summary { align-items: center; cursor: pointer; display: flex; font-size: 1.05rem; font-weight: 650; justify-content: space-between; letter-spacing: .08em; list-style: none; padding: 26px 0; text-transform: uppercase; transition: color .2s; }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary svg { fill: none; height: 10px; stroke: currentColor; stroke-width: 1.5; transition: transform .2s; width: 14px; }
.accordion-item[open] summary svg { transform: rotate(180deg); }
.accordion-content { padding-bottom: 32px; }
.accordion-content p, .accordion-content li { color: #3f3f3f; font-size: 1rem; line-height: 1.6; }
.accordion-content ul { list-style: none; }
.accordion-content li + li { margin-top: 10px; }
.accordion-content .text-link { margin-top: 18px; }

/* Inline accordion / expandable info */
.expandable-info { border: 1px solid var(--line); margin-top: 24px; padding: 20px 24px; background: var(--paper); }
.expandable-info summary { align-items: center; cursor: pointer; display: flex; font-size: 1rem; font-weight: 600; justify-content: space-between; list-style: none; gap: 12px; }
.expandable-info summary::-webkit-details-marker { display: none; }
.expandable-info summary svg { fill: none; height: 9px; stroke: currentColor; stroke-width: 1.5; transition: transform .2s; width: 12px; }
.expandable-info[open] summary svg { transform: rotate(180deg); }
.expandable-details { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 20px; }
.expandable-details h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.expandable-details h4 { font-size: 1.05rem; font-weight: 600; margin: 20px 0 8px; color: #444; }
.expandable-details p { color: #444; font-size: .98rem; line-height: 1.58; }

/* Practical info strip */
.practical-info-strip { background: var(--soft); border: 1px solid var(--line); margin-top: 40px; padding: 24px 28px; }
.practical-info-strip p { color: #444; font-size: .92rem; line-height: 1.55; }

/* Manifesto Article */
.manifesto-article { margin: 0 auto; max-width: 768px; padding: 60px var(--gutter) 100px; }
.manifesto-article h1 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.6rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; margin-bottom: 44px; }
.manifesto-article h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.6vw, 2.3rem); font-weight: 400; letter-spacing: -.025em; margin: 52px 0 22px; }
.manifesto-article p { color: #2b2b2b; font-size: 1.1rem; line-height: 1.68; }
.manifesto-article p + p { margin-top: 24px; }
.manifesto-article strong { font-weight: 700; }
.manifesto-tag { color: var(--muted); font-family: var(--sans); font-size: .95rem; font-weight: 600; margin-top: 48px; }

.split-section { align-items: stretch; border-top: 1px solid var(--line); display: grid; gap: clamp(52px, 8vw, 100px); grid-template-columns: .9fr 1.1fr; }
.split-section.image-right { grid-template-columns: 1.1fr .9fr; }
.split-section.image-right .split-copy { order: 1; }
.split-section.image-right .split-image { order: 2; }
.split-image { min-height: 640px; overflow: hidden; }
.split-image img { height: 100%; object-fit: cover; width: 100%; }
.split-image.detail-image img { object-position: 50% 53%; }
.split-copy { align-self: center; }
.split-copy .section-header { margin-bottom: 36px; }
.split-copy .text-link { margin-top: 32px; }

.steps-list { border-top: 1px solid var(--line); list-style: none; }
.steps-list li { align-items: start; border-bottom: 1px solid var(--line); counter-increment: step; display: grid; gap: 28px; grid-template-columns: 70px 1fr 1.2fr; padding: 32px 0; transition: background-color .25s ease; }
.steps-list li:hover { background-color: var(--soft); }
.steps-list { counter-reset: step; }
.steps-list li::before { color: #999; content: counter(step, decimal-leading-zero); font-family: var(--serif); }
.steps-list h3 { font-size: 1.18rem; }
.steps-list p { color: #505050; font-size: .98rem; line-height: 1.52; }
.method-section { background: var(--soft); border: 0; max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); }
.formats-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.formats-grid article { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: flex; flex-direction: column; min-height: 590px; padding: 38px 34px; transition: background-color .25s ease; }
.formats-grid article:hover { background-color: var(--soft); }
.formats-grid article:first-child { padding-left: 0; }
.formats-grid article:last-child { border-right: 0; padding-right: 0; }
.formats-grid article.featured { background: var(--soft); padding-left: 34px; }
.formats-grid ul, .credentials-grid ul { list-style: none; margin: 30px 0; }
.formats-grid article p:last-of-type { margin-bottom: 28px; }
.formats-grid .button-primary { margin-top: auto; font-size: .72rem; padding: 15px 16px; white-space: nowrap; width: 100%; }
.list-columns { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); }
.list-columns ul { list-style: none; }
.list-columns li { border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.5rem); line-height: 1.25; padding: 20px 0; }
.list-columns ul:first-child { border-right: 1px solid var(--line); padding-right: 52px; }
.list-columns ul:last-child { padding-left: 52px; }
.statement-section { align-items: end; background: var(--ink); color: var(--paper); display: grid; gap: clamp(50px, 10vw, 140px); grid-template-columns: 1.25fr .75fr; max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); }
.statement-section blockquote { color: var(--paper); font-size: clamp(3rem, 6vw, 6.4rem); }
.statement-section > p { color: #d8d8d8; }
.secondary-service { background: var(--soft); border: 0; max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); }

.results-section { border-top: 1px solid var(--line); }
.results-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 46px; }
.results-grid article { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-height: 245px; padding: 35px 30px; }
.results-grid article:first-child { padding-left: 0; }
.results-grid article:last-child { border-right: 0; padding-right: 0; }
.results-grid strong { display: block; font-family: var(--serif); font-size: clamp(2.8rem, 4vw, 4.4rem); font-weight: 400; margin-bottom: 34px; }
.results-grid p { color: #4c4c4c; font-size: .93rem; line-height: 1.5; }

.credentials-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.credentials-grid article { border-right: 1px solid var(--line); padding: 36px; }
.credentials-grid article:first-child { padding-left: 0; }
.credentials-grid article:last-child { border-right: 0; padding-right: 0; }
.credential-note { border-top: 1px solid var(--line); color: #666; font-size: .82rem; line-height: 1.55; margin-top: 26px; padding-top: 24px; }

.cta-band { align-items: end; background: var(--ink); color: var(--paper); display: grid; gap: 60px; grid-template-columns: 1.2fr .8fr; max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))); }
.cta-band h2 { color: var(--paper); font-size: clamp(2.8rem, 5vw, 5rem); }
.cta-band p { color: #cfcfcf; font-size: 1rem; line-height: 1.55; margin-top: 23px; max-width: 660px; }
.cta-band-actions { align-items: flex-start; display: flex; flex-direction: column; gap: 28px; justify-self: end; }
.cta-band .button-primary { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.cta-band .button-primary:hover { background: var(--ink); color: var(--paper); }
.cta-band .text-link { border-color: #666; color: var(--paper); }

.contact-hero { display: grid; gap: clamp(70px, 10vw, 140px); grid-template-columns: .9fr 1.1fr; padding-bottom: 130px; padding-top: 110px; }
.contact-direct { border-top: 1px solid var(--line); margin-top: 55px; }
.contact-direct > div { border-bottom: 1px solid var(--line); padding: 18px 0; }
.contact-direct span { color: #777; display: block; font-size: .65rem; letter-spacing: .12em; margin-bottom: 6px; text-transform: uppercase; }
.contact-direct a:not(.text-link), .contact-direct p { font-size: 1rem; }
.contact-form { border-top: 1px solid var(--ink); padding-top: 10px; }
.form-group { margin-bottom: 25px; position: relative; }
.form-group label { display: block; font-size: .68rem; font-weight: 650; letter-spacing: .11em; margin-bottom: 5px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { appearance: none; background: transparent; border: 0; border-bottom: 1px solid #bdbdbd; border-radius: 0; font-size: 1.05rem; min-height: 54px; outline: none; padding: 13px 0; resize: vertical; width: 100%; }
.form-group textarea { min-height: 135px; }
.form-group select { background-image: linear-gradient(45deg, transparent 50%, #444 50%), linear-gradient(135deg, #444 50%, transparent 50%); background-position: calc(100% - 13px) 24px, calc(100% - 8px) 24px; background-repeat: no-repeat; background-size: 5px 5px; padding-right: 28px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--ink); }
.form-group small { color: #a00000; display: none; font-size: .75rem; margin-top: 7px; }
.form-group.invalid small { display: block; }
.form-group.invalid input, .form-group.invalid textarea, .form-group.invalid select { border-color: #a00000; }
.privacy-check { align-items: flex-start; display: flex; font-size: .8rem; gap: 10px; line-height: 1.4; margin: 28px 0; }
.privacy-check input { accent-color: var(--ink); margin-top: 2px; }
.privacy-check.invalid { color: #a00000; }
.privacy-check a { text-decoration: underline; text-underline-offset: 3px; }
.submit-btn { min-height: 54px; padding: 16px 27px; }
.submit-btn:disabled { cursor: wait; opacity: .55; }
.form-error { color: #a00000; font-size: .86rem; margin: 18px 0; }
.form-success { border-bottom: 1px solid var(--line); padding: 44px 0; }
.form-success h2 { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; margin-bottom: 16px; }
.honeypot { height: 0 !important; left: -9999px !important; opacity: 0; position: absolute !important; width: 0 !important; }

.footer { border-top: 1px solid var(--line); padding: 72px max(var(--gutter), calc((100vw - var(--site-width)) / 2 + var(--gutter))) 34px; }
.footer-grid { align-items: start; display: grid; gap: 40px; grid-template-columns: 1fr 1fr 1fr; }
.footer-brand { font-size: 1.08rem; font-weight: 800; letter-spacing: -.035em; }
.footer-grid p { color: #777; font-size: .76rem; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; font-size: .86rem; gap: 9px; justify-self: center; }
.footer-language { justify-self: end; }
.copyright { border-top: 1px solid var(--line); color: #aaa; font-size: .65rem; letter-spacing: .08em; margin-top: 55px; padding-top: 23px; text-transform: uppercase; }
.cookie-banner { align-items: center; background: var(--paper); border: 1px solid var(--line); bottom: 20px; box-shadow: 0 12px 40px rgba(0,0,0,.12); display: flex; gap: 35px; justify-content: space-between; left: 50%; max-width: 720px; padding: 18px 20px; position: fixed; transform: translateX(-50%); width: calc(100% - 40px); z-index: 300; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .81rem; line-height: 1.4; }
.cookie-banner p a { text-decoration: underline; }
.cookie-banner > div { display: flex; gap: 8px; }
.cookie-banner button { border: 1px solid var(--ink); font-size: .68rem; letter-spacing: .08em; padding: 9px 13px; text-transform: uppercase; }
.cookie-banner .cookie-accept { background: var(--ink); color: var(--paper); }

.legal-page { margin: 0 auto; max-width: 900px; padding: 110px 24px 140px; }
.legal-page h1 { font-size: clamp(3rem, 6vw, 5.6rem); margin-bottom: 60px; }
.legal-page h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin: 48px 0 15px; }
.legal-page p { color: #3f3f3f; font-size: 1rem; line-height: 1.65; }
.legal-page a { text-decoration: underline; }
.legal-updated { border-top: 1px solid var(--line); margin-top: 60px; padding-top: 20px; }
.not-found { min-height: calc(100vh - 90px); padding-top: 130px; }
.not-found h1 { font-size: clamp(3rem, 7vw, 7rem); margin-bottom: 25px; }
.not-found > p:not(.hero-label) { color: #555; font-size: 1.15rem; margin-bottom: 35px; }

@media (max-width: 1040px) {
  .nav-desktop { gap: 18px; }
  .nav-link { font-size: .88rem; }
  .nav-cta { padding: 12px 13px; font-size: .7rem; }
}

@media (max-width: 900px) {
  :root { --section: 78px; }
  .navbar { height: 78px; }
  .nav-brand { font-size: 1.1rem; }
  .nav-desktop { display: none; }
  .menu-toggle-btn { display: block; }
  .mobile-menu { height: calc(100dvh - 78px); top: 78px; }
  main { padding-top: 78px; }
  .hero-section { min-height: auto; padding-bottom: 58px; padding-top: 24px; }
  .hero-content { display: flex; flex-direction: column; gap: 37px; }
  .hero-image-container { max-height: 570px; width: 100%; }
  .hero-text { width: 100%; }
  .hero-title { font-size: clamp(2.7rem, 10vw, 4.2rem); }
  .hero-intro { margin-bottom: 30px; }
  .two-column-copy, .statement-section, .cta-band, .contact-hero, .intro-grid, .two-services-grid, .three-columns-grid, .three-cards-grid, .situations-grid { grid-template-columns: 1fr; }
  .intro-grid .section-header { margin-bottom: 28px; }
  .two-services-grid .service-card:first-child { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .two-services-grid .service-card:last-child { padding-left: 0; }
  .two-column-copy blockquote { margin-top: 18px; }
  .principles-grid, .executive-credibility-grid, .sequence-band { grid-template-columns: repeat(2, 1fr); }
  .principles-grid .numbered-item:nth-child(2), .executive-credibility-grid .cred-item:nth-child(2), .sequence-step:nth-child(2) { border-right: 0; padding-right: 0; }
  .principles-grid .numbered-item:nth-child(3), .executive-credibility-grid .cred-item:nth-child(3), .sequence-step:nth-child(3) { padding-left: 0; }
  .split-section, .split-section.image-right { grid-template-columns: 1fr; }
  .split-section.image-right .split-copy { order: 2; }
  .split-section.image-right .split-image { order: 1; }
  .split-image { min-height: 520px; }
  .formats-grid { grid-template-columns: 1fr; }
  .formats-grid article, .formats-grid article:first-child, .formats-grid article:last-child, .formats-grid article.featured { border-right: 0; min-height: auto; padding: 38px 0; }
  .formats-grid .button-primary { margin-top: 32px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid article:nth-child(2) { border-right: 0; padding-right: 0; }
  .results-grid article:nth-child(3) { padding-left: 0; }
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials-grid article, .credentials-grid article:first-child, .credentials-grid article:last-child { border-bottom: 1px solid var(--line); border-right: 0; padding: 30px 0; }
  .cta-band-actions { justify-self: start; }
  .contact-hero { padding-top: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-language { justify-self: start; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; --section: 64px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .button-primary { width: 100%; }
  .section-header { margin-bottom: 42px; }
  .section-title { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .numbered-grid, .principles-grid, .list-columns, .results-grid, .executive-credibility-grid, .sequence-band { grid-template-columns: 1fr; }
  .numbered-item, .numbered-item:nth-child(odd), .numbered-item:nth-child(even), .principles-grid .numbered-item, .principles-grid .numbered-item:first-child, .principles-grid .numbered-item:last-child { border-bottom: 1px solid var(--line); border-right: 0; min-height: auto; padding: 31px 0 36px; }
  .cred-item, .cred-item:first-child, .cred-item:last-child, .cred-item:nth-child(2), .cred-item:nth-child(3) { border-bottom: 1px solid var(--line); border-right: 0; padding: 24px 0; }
  .sequence-step, .sequence-step:first-child, .sequence-step:last-child, .sequence-step:nth-child(2), .sequence-step:nth-child(3) { border-bottom: 1px solid var(--line); border-right: 0; padding: 20px 0; }
  .item-number { margin-bottom: 32px; }
  .split-image { min-height: 440px; }
  .steps-list li { gap: 18px; grid-template-columns: 38px 1fr; }
  .steps-list li p { grid-column: 2; }
  .list-columns ul:first-child, .list-columns ul:last-child { border-right: 0; padding: 0; }
  .list-columns ul:first-child li:last-child { border-bottom: 0; }
  .results-grid article, .results-grid article:first-child, .results-grid article:last-child, .results-grid article:nth-child(2), .results-grid article:nth-child(3) { border-bottom: 1px solid var(--line); border-right: 0; min-height: auto; padding: 28px 0; }
  .results-grid strong { margin-bottom: 15px; }
  .contact-hero { gap: 65px; padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .language-status { bottom: 12px; }
  .cookie-banner { align-items: stretch; bottom: 10px; flex-direction: column; gap: 15px; width: calc(100% - 20px); }
  .cookie-banner > div { justify-content: flex-end; }
}

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