:root {
  --font-display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy: #0a2448;
  --navy-deep: #061830;
  --navy-soft: #18365a;
  --ink: #10233a;
  --muted: #657183;
  --cream: #f8f4ec;
  --sand: #eee5d5;
  --white: #fff;
  --accent: #d69a58;
  --accent-dark: #b87532;
  --line: rgba(10, 36, 72, 0.15);
  --shadow: 0 24px 70px rgba(6, 24, 48, 0.15);
  --radius: 4px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body:has(#site-nav-toggle:checked) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 4.4rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
p { margin-bottom: 1.25rem; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--navy { color: var(--white); background: var(--navy); }
.section--sand { background: var(--cream); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 200; top: 10px; left: 10px; padding: 10px 14px; color: var(--white); background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: 1.15rem; color: var(--accent-dark); font-size: .74rem; font-weight: 700; letter-spacing: .2em; line-height: 1.4; text-transform: uppercase; }
.eyebrow--light { color: #edc38f; }
.plain-list { display: grid; gap: 12px; margin: 28px 0 36px; padding: 0; list-style: none; }
.plain-list li { display: flex; gap: 12px; align-items: center; }
.plain-list li::before { width: 28px; height: 1px; background: var(--accent); content: ""; }

.btn { display: inline-flex; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius); align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; letter-spacing: .06em; line-height: 1.2; text-align: center; text-transform: uppercase; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--lg { min-height: 56px; padding: 15px 28px; }
.btn--block { width: 100%; }
.btn--primary { color: var(--white); background: var(--navy); }
.btn--primary:hover { background: var(--navy-soft); }
.btn--accent { color: var(--navy-deep); background: #f0bd7e; }
.btn--accent:hover { background: #f8cf9c; }
.btn--line { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.btn--line:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn--ghost { color: var(--navy); border-color: var(--navy); background: transparent; }
.btn--light { color: var(--navy); background: var(--white); }
.text-link { display: inline-flex; gap: 11px; padding-bottom: 6px; border-bottom: 1px solid currentColor; align-items: center; color: var(--navy); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link--light { color: var(--white); }
.inline-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(18px); }
.site-header > input { position: absolute; opacity: 0; pointer-events: none; }
.site-header__inner { display: flex; min-height: 104px; gap: 28px; align-items: center; }
.site-header__brand { display: block; width: 100px; flex: 0 0 auto; }
.site-logo { display: block; width: 100%; height: auto; object-fit: contain; }
.site-nav { display: flex; gap: 2px; margin-left: auto; align-items: stretch; }
.site-nav__link { display: flex; min-height: 104px; padding: 0 13px; align-items: center; color: #30425a; font-size: .78rem; font-weight: 700; letter-spacing: .035em; }
.site-nav__link:hover, .site-nav__link.is-active { color: var(--navy); }
.site-nav__link.is-active { box-shadow: inset 0 -2px var(--accent); }
.site-nav__link--has-children { gap: 7px; }
.site-nav__group { position: relative; }
.site-nav__dropdown { position: absolute; top: calc(100% - 1px); left: 0; display: grid; width: 230px; padding: 12px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); visibility: hidden; transition: .18s ease; }
.site-nav__dropdown a { padding: 10px 12px; border-radius: 2px; font-size: .82rem; }
.site-nav__dropdown a:hover { color: var(--navy); background: var(--cream); }
.site-nav__group:hover .site-nav__dropdown, .site-nav__group:focus-within .site-nav__dropdown { opacity: 1; transform: none; visibility: visible; }
.site-header__phone { flex: 0 0 auto; color: var(--navy); font-size: .78rem; font-weight: 700; letter-spacing: .035em; white-space: nowrap; }
.site-header__phone:hover { color: var(--accent-dark); }
.site-header__cta { flex: 0 0 auto; }
.site-header__toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line); align-items: center; justify-content: center; cursor: pointer; }
.site-header__toggle svg { width: 24px; height: 24px; fill: none; stroke: var(--navy); stroke-width: 1.7; }
.site-mobile-nav { position: absolute; top: 104px; right: 0; left: 0; display: none; max-height: calc(100dvh - 104px); padding: 20px 24px 30px; overflow-y: auto; overscroll-behavior-y: contain; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 24px 40px rgba(6,24,48,.16); }
.site-mobile-nav__group { border-bottom: 1px solid var(--line); }
.site-mobile-nav__link { display: block; padding: 14px 0; color: var(--navy); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.site-mobile-nav__link.is-active { color: var(--accent-dark); }
.site-mobile-nav__sub { display: grid; gap: 4px; padding: 0 0 14px 16px; }
.site-mobile-nav__sub a { padding: 5px 0; color: var(--muted); font-size: .9rem; }
.site-mobile-nav__phone { display: flex; min-height: 50px; margin: 20px 0 12px; border: 1px solid var(--navy); align-items: center; justify-content: center; color: var(--navy); font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

/* Home hero */
.hero { position: relative; min-height: min(780px, calc(100vh - 104px)); overflow: hidden; color: var(--white); background: var(--navy-deep); }
.hero__media, .hero__veil { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil { background: linear-gradient(90deg, rgba(3,17,36,.92) 0%, rgba(3,17,36,.72) 43%, rgba(3,17,36,.16) 72%, rgba(3,17,36,.08) 100%), linear-gradient(0deg, rgba(3,17,36,.5), transparent 55%); }
.hero__inner { position: relative; display: flex; min-height: min(780px, calc(100vh - 104px)); padding-top: 100px; padding-bottom: 55px; flex-direction: column; justify-content: center; }
.hero__content { width: min(740px, 68%); }
.hero h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(3rem, 4.8vw, 5rem); }
.hero__lead { max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,.85); font-size: clamp(1.06rem, 1.7vw, 1.3rem); line-height: 1.65; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__signature { display: flex; gap: 14px; margin-top: auto; padding-top: 64px; align-items: center; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero__signature i { width: 32px; height: 1px; background: rgba(255,255,255,.38); }

.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 10vw; align-items: start; }
.intro-grid h2 { max-width: 520px; margin-bottom: 0; color: var(--navy); }
.intro-copy { padding-top: 38px; color: #48586d; font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.intro-copy p:last-child { margin-bottom: 0; }

.founders-section { background: var(--cream); }
.founders-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 8vw, 112px); align-items: center; }
.founders-photo { min-height: 680px; margin: 0; overflow: hidden; background: var(--sand); box-shadow: var(--shadow); }
.founders-photo img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center 38%; }
.founders-copy h2 { max-width: 650px; margin-bottom: 28px; color: var(--navy); }
.founders-copy > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 1.06rem; }
.founders-names { display: grid; grid-template-columns: 1fr 1fr; margin: 38px 0; border-top: 1px solid var(--line); }
.founders-names article { min-height: 150px; padding: 25px 24px 22px 0; border-bottom: 1px solid var(--line); }
.founders-names article:first-child { margin-right: 24px; border-right: 1px solid var(--line); }
.founders-names span { display: block; margin-bottom: 16px; color: var(--accent-dark); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.founders-names h3 { max-width: 250px; margin-bottom: 0; color: var(--navy); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.15; }

.signature-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 620px; }
.signature-service { padding: 0; }
.signature-service__media { position: relative; min-height: 620px; margin: 0; overflow: hidden; }
.signature-service__media img { width: 100%; height: 100%; object-fit: cover; }
.signature-service__media figcaption { position: absolute; right: 22px; bottom: 22px; padding: 9px 13px; color: var(--white); background: rgba(3,17,36,.82); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.signature-service__copy { display: flex; padding: clamp(56px, 7vw, 100px); flex-direction: column; justify-content: center; }
.signature-service__copy h2 { margin-bottom: 28px; }
.signature-service__copy > p:not(.eyebrow) { color: rgba(255,255,255,.76); }

.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 50px; margin-bottom: 56px; align-items: end; }
.section-head h2 { max-width: 760px; margin-bottom: 0; color: var(--navy); }
.section-head > p { margin-bottom: 8px; color: var(--muted); }
.section-head .eyebrow { grid-column: 1 / -1; margin-bottom: -38px; }
.section-head .text-link { justify-self: end; }
.section-head--center { display: block; max-width: 820px; margin-right: auto; margin-left: auto; text-align: center; }
.section-head--center .eyebrow { margin-bottom: 1rem; }

.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 58px .6fr 1fr 28px; gap: 28px; padding: 30px 4px; border-bottom: 1px solid var(--line); align-items: center; transition: color .2s ease, padding .2s ease; }
.service-row:hover { padding-right: 14px; padding-left: 14px; color: var(--accent-dark); }
.service-row > span { color: var(--accent-dark); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.service-row h3, .service-row p { margin: 0; }
.service-row p { color: var(--muted); }

.split-audience { padding-top: 0; }
.split-audience__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 630px; }
.audience-card { position: relative; display: flex; min-height: 630px; padding: clamp(48px, 6vw, 80px); overflow: hidden; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--navy); }
.audience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.audience-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,17,36,.94), rgba(3,17,36,.08) 75%); content: ""; }
.audience-card:hover img { transform: scale(1.025); }
.audience-card--company img { object-position: center 44%; }
.audience-card > div { position: relative; z-index: 2; }
.audience-card h2 { max-width: 520px; margin-bottom: 20px; }
.audience-card p { max-width: 520px; color: rgba(255,255,255,.78); }
.audience-card span { display: inline-flex; gap: 10px; align-items: center; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 58px 0 0; padding: 0; list-style: none; }
.process-grid li { padding: 38px; border-top: 1px solid var(--navy); border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid span { display: block; margin-bottom: 60px; color: var(--accent-dark); font-size: .75rem; font-weight: 700; }
.process-grid h3 { color: var(--navy); }
.process-grid p { margin-bottom: 0; color: var(--muted); }

.areas-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: start; }
.areas-grid > div:first-child { position: sticky; top: 120px; }
.areas-grid h2 { color: var(--navy); }
.areas-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.area-links { border-top: 1px solid var(--line); }
.area-links a { display: grid; grid-template-columns: 1fr 1fr 24px; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); align-items: center; }
.area-links strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.area-links span { color: var(--muted); font-size: .86rem; }

.faq-section { background: var(--navy); color: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.faq-grid h2 { max-width: 450px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.22); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; font-family: var(--font-display); font-size: 1.38rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 24px; right: 6px; color: var(--accent); content: "+"; font-family: var(--font-body); font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding-right: 44px; color: rgba(255,255,255,.72); }
.service-prose .faq-list { border-color: var(--line); }
.service-prose .faq-list details { border-color: var(--line); }
.service-prose .faq-list details p { color: var(--muted); }

.final-cta { padding: clamp(90px, 12vw, 170px) 0; color: var(--white); background: linear-gradient(110deg, var(--navy-deep), var(--navy-soft)); text-align: center; }
.final-cta__inner { max-width: 900px; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta p:not(.eyebrow) { margin-bottom: 32px; color: rgba(255,255,255,.75); font-size: 1.15rem; }

/* Service pages */
.page-hero { color: var(--white); background: var(--navy-deep); }
.page-hero__grid { display: grid; min-height: 610px; grid-template-columns: 1fr .8fr; }
.page-hero__copy { display: flex; padding: 64px clamp(32px, 5vw, 74px) 70px 0; flex-direction: column; justify-content: center; }
.page-hero h1 { margin-bottom: 25px; font-size: clamp(2.9rem, 5.8vw, 5.7rem); }
.page-hero__lead { max-width: 680px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: 1.14rem; }
.page-hero__media { min-height: 610px; }
.page-hero__media img { width: calc(100% + max(24px, (100vw - var(--container)) / 2)); max-width: none; height: 100%; object-fit: cover; }
.breadcrumb { margin-bottom: 48px; }
.breadcrumb ol { display: flex; margin: 0; padding: 0; flex-wrap: wrap; list-style: none; }
.breadcrumb li { color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .05em; }
.breadcrumb li + li::before { margin: 0 9px; content: "·"; }
.breadcrumb a:hover { color: var(--white); }
.answer-section { padding: 54px 0; border-bottom: 1px solid var(--line); }
.answer-grid { display: grid; grid-template-columns: .35fr 1.65fr; gap: 60px; align-items: start; }
.answer-grid p:last-child { max-width: 980px; margin-bottom: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(1.55rem, 2.8vw, 2.55rem); line-height: 1.3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.highlight-grid article { min-height: 210px; padding: 28px; border-top: 1px solid var(--navy); border-right: 1px solid var(--line); }
.highlight-grid article:last-child { border-right: 0; }
.highlight-grid span { color: var(--accent-dark); font-size: .72rem; font-weight: 700; }
.highlight-grid h2 { margin-top: 54px; margin-bottom: 0; color: var(--navy); font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.16; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 355px; gap: 9vw; align-items: start; }
.service-prose { display: grid; gap: 62px; }
.catalogue-navigation { position: sticky; top: 104px; z-index: 90; display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 8px 24px rgba(6,24,48,.09); }
.catalogue-navigation__label { flex: 0 0 auto; color: var(--navy); font-size: .75rem; font-weight: 700; }
.catalogue-navigation__label span { display: block; text-align: center; color: var(--accent-dark); }
.catalogue-nav { display: flex; min-width: 0; gap: 8px; overflow-x: auto; padding: 4px 2px 8px; scrollbar-width: thin; scrollbar-color: var(--accent-dark) var(--cream); overscroll-behavior-x: contain; }
.catalogue-nav a { display: flex; flex: 0 0 auto; min-height: 44px; align-items: center; padding: 8px 14px; border: 1px solid var(--line); border-radius: 4px; color: var(--navy); font-size: .8rem; white-space: nowrap; }
.catalogue-nav a:hover { background: var(--sand); }
.catalogue-section:has(#coffee-break:target) .catalogue-nav a[href="#coffee-break"],
.catalogue-section:has(#finger-food:target) .catalogue-nav a[href="#finger-food"],
.catalogue-section:has(#paella-gran-evento:target) .catalogue-nav a[href="#paella-gran-evento"],
.catalogue-section:has(#chef-paella:target) .catalogue-nav a[href="#chef-paella"],
.catalogue-section:has(#chef-brasa:target) .catalogue-nav a[href="#chef-brasa"],
.catalogue-section:has(#chef-autor:target) .catalogue-nav a[href="#chef-autor"],
.catalogue-section:has(#paella-carta:target) .catalogue-nav a[href="#paella-carta"],
.catalogue-section:has(#tortillas:target) .catalogue-nav a[href="#tortillas"] { background: var(--navy); color: var(--white); }
.catalogue-nav a:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 2px; }
.catalogue-block { padding: 48px 0; border-top: 1px solid var(--line); scroll-margin-top: 194px; }
@media (max-width: 820px) {
  .catalogue-navigation { top: 88px; gap: 10px; padding: 8px 10px; }
  .catalogue-block { scroll-margin-top: 174px; }
}
.catalogue-intro { margin-bottom: 28px; }
.catalogue-intro--photo { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; align-items: center; }
.catalogue-intro h2 { color: var(--navy); font-size: clamp(2rem, 3.4vw, 3.25rem); }
.catalogue-intro p { max-width: 820px; margin-top: 16px; color: var(--muted); }
.catalogue-photo { margin: 0; }
.catalogue-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.catalogue-photo figcaption { margin-top: 8px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
@media (max-width: 820px) {
  .catalogue-intro--photo { grid-template-columns: 1fr; gap: 20px; }
}
.catalogue-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.catalogue-card { padding: 28px; border: 1px solid var(--line); background: var(--sand); }
.catalogue-card h3 { margin-bottom: 20px; color: var(--navy); font-size: 1.65rem; }
.catalogue-card ul, .catalogue-conditions ul { margin: 0; padding-left: 22px; list-style: disc; }
.catalogue-card li, .catalogue-conditions li { padding-left: 4px; margin-bottom: 12px; color: var(--ink); line-height: 1.65; }
.catalogue-card li::marker, .catalogue-conditions li::marker { color: var(--accent-dark); }
.catalogue-conditions { margin: 28px 0; padding: 24px; border: 1px solid var(--line); }
.catalogue-conditions summary { color: var(--navy); font-weight: 700; cursor: pointer; }
.catalogue-conditions[open] summary { margin-bottom: 20px; }
.catalogue-more { margin-top: 32px; }
@media (max-width: 700px) {
  .catalogue-grid { grid-template-columns: 1fr; }
  .catalogue-card, .catalogue-conditions { padding: 20px; }
}
.service-prose > section > h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(2rem, 3.4vw, 3.25rem); }
.service-prose > section > p { max-width: 820px; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.quote-card { position: sticky; top: 112px; padding: 34px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.quote-card h2 { margin-bottom: 20px; font-size: 2.2rem; }
.quote-card > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.quote-card ul { display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.quote-card li { display: flex; gap: 10px; color: rgba(255,255,255,.82); font-size: .9rem; }
.quote-card li::before { color: var(--accent); content: "—"; }
.quote-card .btn--primary { color: var(--navy); background: var(--white); }
.related-section { background: var(--cream); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid a { display: flex; min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-direction: column; }
.related-grid h3 { color: var(--navy); }
.related-grid p { color: var(--muted); }
.related-grid span { display: inline-flex; gap: 8px; margin-top: auto; align-items: center; color: var(--accent-dark); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Contact and legal */
.contact-hero, .blog-hero, .post-hero, .search-hero, .legal-hero, .not-found { color: var(--white); background: var(--navy-deep); }
.contact-hero__grid, .blog-hero__grid, .post-hero__grid { display: grid; min-height: 490px; grid-template-columns: 1fr .75fr; align-items: stretch; }
.contact-hero__grid > div:first-child, .blog-hero__grid > div:first-child, .post-hero__grid > div:first-child { display: flex; padding: 70px clamp(32px, 6vw, 80px) 70px 0; flex-direction: column; justify-content: center; }
.contact-hero h1, .blog-hero h1, .post-hero h1 { margin-bottom: 22px; font-size: clamp(3rem, 5.6vw, 5.3rem); }
.contact-hero__grid > div:first-child > p:last-child, .blog-hero__grid > div:first-child > p:last-child, .post-hero__grid > div:first-child > p:last-child { color: rgba(255,255,255,.74); font-size: 1.08rem; }
.contact-hero__media img, .blog-hero__media img, .post-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 7vw; align-items: start; }
.contact-form { padding: clamp(32px, 5vw, 58px); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(10,36,72,.08); }
.form-heading { max-width: 680px; margin-bottom: 38px; }
.form-heading h2 { margin-bottom: 16px; color: var(--navy); }
.form-heading p:last-child { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-field { display: grid; gap: 8px; }
.contact-field--full { grid-column: 1 / -1; }
.contact-field > span { color: var(--navy); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.contact-field em { color: var(--accent-dark); font-style: normal; }
.contact-field input, .contact-field textarea, .contact-field select { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid #cfd5dc; border-radius: 2px; color: var(--ink); background: var(--white); outline: none; }
.contact-field textarea { resize: vertical; }
.contact-field input:focus, .contact-field textarea:focus, .contact-field select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,36,72,.08); }
.contact-form > .btn { margin-top: 26px; }
.contact-form__notice { margin-bottom: 28px; padding: 18px 20px; border-left: 3px solid var(--accent); background: var(--cream); }
.contact-form__notice p { margin: 5px 0 0; color: var(--muted); font-size: .84rem; }
.contact-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin-top: 24px; align-items: start; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.contact-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--navy); }
.contact-consent a { color: var(--navy); text-decoration: underline; }
.contact-form__footnote { max-width: 760px; margin: 18px 0 0; color: var(--muted); font-size: .76rem; }
.contact-form__footnote a { text-decoration: underline; }
.contact-guide { position: sticky; top: 112px; }
.contact-guide h2 { color: var(--navy); }
.contact-guide ol { margin: 36px 0; padding: 0; list-style: none; }
.contact-guide li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 17px 0; border-top: 1px solid var(--line); }
.contact-guide li:last-child { border-bottom: 1px solid var(--line); }
.contact-guide li > span { color: var(--accent-dark); font-size: .7rem; font-weight: 700; }
.contact-guide strong { color: var(--navy); }
.contact-guide li p { margin: 2px 0 0; color: var(--muted); font-size: .85rem; }
.contact-guide__note { padding: 22px; background: var(--cream); }
.contact-guide__note p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; }
.contact-guide__direct { display: grid; gap: 8px; margin-top: 22px; padding: 25px 22px; color: var(--white); background: var(--navy); }
.contact-guide__direct .eyebrow { margin-bottom: 4px; }
.contact-guide__phone { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1.1; }
.contact-guide__map { width: fit-content; margin-top: 8px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.55); color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.contact-guide__map:hover { color: var(--white); border-color: var(--white); }
.cf-turnstile { margin-top: 24px; }

.legal-hero { padding: 90px 0; }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(3rem, 6vw, 5.7rem); }
.legal-hero p:last-child { max-width: 780px; margin-bottom: 0; color: rgba(255,255,255,.74); }
.legal-layout { display: grid; grid-template-columns: 290px 1fr; gap: 9vw; align-items: start; }
.legal-status { padding: 24px; border-left: 3px solid var(--accent); background: var(--cream); }
.legal-status p { margin: 7px 0 0; color: var(--muted); font-size: .84rem; }
.legal-copy { display: grid; gap: 44px; }
.legal-copy h2 { color: var(--navy); font-size: 2.1rem; }
.legal-copy p { max-width: 800px; color: var(--muted); }

.success-page { min-height: 660px; padding: 100px 0; background: var(--cream); text-align: center; }
.success-page__inner { max-width: 760px; }
.success-page__mark { display: grid; width: 74px; height: 74px; margin: 0 auto 30px; border: 1px solid var(--navy); border-radius: 50%; place-items: center; color: var(--navy); font-size: 2rem; }
.success-page h1 { color: var(--navy); font-size: clamp(3rem, 6vw, 5.5rem); }
.success-page > div > p:not(.eyebrow):not(.success-page__mark) { color: var(--muted); }
.success-page .hero__actions { justify-content: center; }

/* Blog/search/404 */
.blog-hero__media, .post-hero__media { min-height: 490px; }
.post-hero__crumb { color: rgba(255,255,255,.6) !important; font-size: .82rem !important; }
.post-hero__crumb a { text-decoration: underline; text-underline-offset: 4px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.035); }
.post-card__body { padding: 26px; }
.post-card__meta { margin-bottom: 12px; color: var(--accent-dark); font-size: .72rem; }
.post-card__title { margin-bottom: 12px; color: var(--navy); }
.post-card__excerpt { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.blog-pager { display: flex; gap: 20px; margin-top: 50px; justify-content: center; }
.blog-pager a { color: var(--navy); font-weight: 700; }
.empty-state { max-width: 700px; margin: 0 auto; padding: 70px 30px; background: var(--cream); text-align: center; }
.empty-state h2 { color: var(--navy); }
.empty-state p { color: var(--muted); }
.prose { min-width: 0; color: #36475b; font-size: 1.02rem; }
.prose h2, .prose h3 { margin-top: 2.2em; color: var(--navy); }
.prose h2 { font-size: 2.4rem; }
.prose a { color: var(--accent-dark); text-decoration: underline; }
.prose img { height: auto; margin: 34px auto; }
.search-hero { padding: 90px 0; }
.search-hero h1 { font-size: clamp(3rem, 6vw, 5.4rem); }
.search-form { display: flex; max-width: 760px; }
.search-form input { min-width: 0; min-height: 58px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.4); flex: 1; color: var(--white); background: rgba(255,255,255,.08); outline: none; }
.search-form input::placeholder { color: rgba(255,255,255,.55); }
#search-meta { margin: 14px 0 0; color: rgba(255,255,255,.62); font-size: .85rem; }
.search-results { margin: 0; padding: 0; list-style: none; }
.search-result a { display: block; min-height: 190px; padding: 28px; border: 1px solid var(--line); }
.search-result h2 { color: var(--navy); font-size: 1.7rem; }
.search-result p { color: var(--muted); }
.not-found { min-height: 650px; padding: 100px 0; }
.not-found__grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 10vw; align-items: center; }
.not-found__code { margin: 0 0 20px; color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .2em; }
.not-found h1 { margin-bottom: 24px; }
.not-found__grid > div:first-child > p:not(.eyebrow):not(.not-found__code) { color: rgba(255,255,255,.72); }
.not-found__links { padding: 34px; border: 1px solid rgba(255,255,255,.24); }
.not-found__links h2 { font-size: 2rem; }
.not-found__links ul { margin: 0; padding: 0; list-style: none; }
.not-found__links li { border-top: 1px solid rgba(255,255,255,.18); }
.not-found__links a { display: block; padding: 13px 0; }

/* Real work and client trust */
.real-work { padding: clamp(76px, 8vw, 112px) 0; overflow: hidden; background: var(--white); }
.real-work__intro { display: flex; gap: 60px; align-items: end; justify-content: space-between; }
.real-work__intro h2 { max-width: 750px; margin-bottom: 0; color: var(--navy); font-size: clamp(2.2rem, 4vw, 4rem); }
.real-work__intro > p { max-width: 450px; margin-bottom: 5px; color: var(--muted); }
.real-work__rail { display: grid; width: min(calc(100% - 48px), 1500px); margin: 48px auto 0; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.real-work__item { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; background: var(--sand); }
.real-work__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.real-work__item::after { position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(3,17,36,.84), transparent); content: ""; }
.real-work__item:hover img { transform: scale(1.035); }
.real-work__item figcaption { position: absolute; z-index: 1; right: 18px; bottom: 18px; left: 18px; color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.client-trust { padding: clamp(64px, 7vw, 92px) 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.client-trust__intro { display: flex; gap: 60px; align-items: end; justify-content: space-between; }
.client-trust__intro h2 { max-width: 760px; margin-bottom: 0; color: var(--navy); font-size: clamp(2rem, 3.7vw, 3.6rem); }
.client-trust__intro > p { max-width: 450px; margin-bottom: 5px; color: var(--muted); }
.client-trust__viewport { position: relative; width: 100%; margin-top: 42px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.client-trust__track { display: flex; width: max-content; gap: 16px; animation: client-trust-scroll 42s linear infinite; }
.client-trust__group { display: flex; flex: 0 0 auto; gap: 16px; }
.client-logo { display: flex; width: 216px; height: 96px; padding: 17px 24px; border: 1px solid rgba(10,36,72,.12); align-items: center; justify-content: center; background: var(--white); box-shadow: 0 8px 24px rgba(6,24,48,.04); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.client-logo:hover, .client-logo:focus-visible { border-color: rgba(10,36,72,.34); box-shadow: 0 14px 34px rgba(6,24,48,.1); transform: translateY(-3px); }
.client-logo:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 3px; }
.client-logo img { width: auto; max-width: 100%; height: auto; max-height: 60px; object-fit: contain; }
.client-trust__viewport:hover .client-trust__track, .client-trust__viewport:focus-within .client-trust__track { animation-play-state: paused; }
@keyframes client-trust-scroll { to { transform: translateX(calc(-50% - 8px)); } }

/* Footer */
.site-footer { padding: 80px 0 24px; color: var(--white); background: #041329; }
.site-footer__grid { display: grid; grid-template-columns: 1.45fr repeat(3, .75fr); gap: 60px; }
.site-footer__brand .site-logo { width: 190px; margin-bottom: 24px; }
.site-footer__brand p { max-width: 420px; color: rgba(255,255,255,.66); font-size: .9rem; }
.site-footer h2 { margin-bottom: 20px; color: #edc38f; font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer li { color: rgba(255,255,255,.7); font-size: .84rem; }
.site-footer a:hover { color: var(--white); }
.site-footer__bottom { display: flex; margin-top: 66px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); justify-content: space-between; color: rgba(255,255,255,.46); font-size: .72rem; letter-spacing: .05em; }

@media (max-width: 1080px) {
  .site-nav, .site-header__phone, .site-header__cta { display: none; }
  .site-header__toggle { display: flex; }
  #site-nav-toggle:checked ~ .site-mobile-nav { display: block; }
  .hero__content { width: min(760px, 82%); }
  .page-hero__grid { grid-template-columns: 1.1fr .9fr; }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header__inner { min-height: 88px; }
  .site-header__brand { width: 82px; }
  .site-mobile-nav { top: 88px; max-height: calc(100dvh - 88px); overflow-y: auto; overscroll-behavior-y: contain; }
  .hero, .hero__inner { min-height: 700px; }
  .hero__inner { padding-top: 78px; }
  .hero__content { width: 100%; }
  .hero__veil { background: linear-gradient(90deg, rgba(3,17,36,.9), rgba(3,17,36,.52)), linear-gradient(0deg, rgba(3,17,36,.6), transparent); }
  .hero__signature { overflow-x: auto; white-space: nowrap; }
  .intro-grid, .founders-grid, .signature-grid, .areas-grid, .faq-grid, .page-hero__grid, .answer-grid, .content-layout, .contact-layout, .legal-layout, .not-found__grid { grid-template-columns: 1fr; }
  .intro-grid, .areas-grid, .faq-grid { gap: 44px; }
  .intro-copy { padding-top: 0; }
  .founders-grid { gap: 48px; }
  .founders-photo, .founders-photo img { min-height: 620px; }
  .signature-service__media { min-height: 430px; }
  .signature-service__copy { padding: 60px 30px; }
  .section-head { display: block; }
  .section-head .eyebrow { margin-bottom: 1rem; }
  .section-head > p, .section-head .text-link { margin-top: 20px; }
  .service-row { grid-template-columns: 42px 1fr 28px; gap: 16px; }
  .service-row p { grid-column: 2 / 4; }
  .split-audience__grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 540px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { border-right: 0; }
  .process-grid span { margin-bottom: 24px; }
  .areas-grid > div:first-child, .quote-card, .contact-guide { position: static; }
  .page-hero__copy { padding: 60px 0; }
  .page-hero__media { min-height: 420px; }
  .page-hero__media img { width: calc(100% + 32px); margin-left: -16px; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight-grid article:nth-child(2) { border-right: 0; }
  .related-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .contact-hero__grid, .blog-hero__grid, .post-hero__grid { grid-template-columns: 1fr; }
  .contact-hero__grid > div:first-child, .blog-hero__grid > div:first-child, .post-hero__grid > div:first-child { padding-right: 0; }
  .contact-hero__media, .blog-hero__media, .post-hero__media { min-height: 380px; }
  .real-work__intro { display: block; }
  .real-work__intro > p { margin-top: 20px; }
  .client-trust__intro { display: block; }
  .client-trust__intro > p { margin-top: 20px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  h1 { font-size: 3.15rem; }
  h2 { font-size: 2.4rem; }
  .hero { min-height: 720px; }
  .hero__inner { min-height: 720px; padding-bottom: 34px; }
  .hero__actions { display: grid; }
  .hero__actions .btn { width: 100%; }
  .hero__signature { gap: 9px; font-size: .62rem; }
  .hero__signature i { width: 14px; }
  .founders-grid { gap: 38px; }
  .founders-photo, .founders-photo img { min-height: 500px; }
  .founders-names { grid-template-columns: 1fr; }
  .founders-names article { min-height: 0; padding: 22px 0; }
  .founders-names article:first-child { margin-right: 0; border-right: 0; }
  .founders-names h3 { max-width: none; }
  .service-row { grid-template-columns: 36px 1fr 22px; padding: 24px 0; }
  .service-row h3 { font-size: 1.65rem; }
  .audience-card { min-height: 500px; padding: 36px 25px; }
  .area-links a { grid-template-columns: 1fr 24px; }
  .area-links span { grid-column: 1 / -1; grid-row: 2; }
  .faq-list summary { font-size: 1.2rem; }
  .highlight-grid, .related-grid, .post-grid, .form-grid { grid-template-columns: 1fr; }
  .highlight-grid article { min-height: 170px; border-right: 0; }
  .highlight-grid h2 { margin-top: 30px; }
  .contact-field--full { grid-column: auto; }
  .contact-form { padding: 26px 18px; }
  .search-form { display: grid; gap: 10px; }
  .real-work { padding: 64px 0; }
  .real-work__rail { width: 100%; margin-top: 34px; padding: 0 16px 10px; overflow-x: auto; grid-auto-columns: minmax(230px, 72vw); grid-auto-flow: column; grid-template-columns: none; scroll-snap-type: x proximity; }
  .real-work__item { scroll-snap-align: start; }
  .client-trust { padding: 58px 0; }
  .client-trust__viewport { margin-top: 32px; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
  .client-trust__track, .client-trust__group { gap: 12px; }
  .client-logo { width: 178px; height: 84px; padding: 15px 20px; }
  @keyframes client-trust-scroll { to { transform: translateX(calc(-50% - 6px)); } }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { gap: 8px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .client-trust__viewport { overflow-x: auto; mask-image: none; }
  .client-trust__track { animation: none; }
  .client-trust__group[aria-hidden="true"] { display: none; }
}

/* Plain language names, without flags; available in both navigation layouts. */
.language-switcher { display:flex; align-items:center; gap:2px; padding-left:10px; margin-left:2px; border-left:1px solid var(--line); }
.language-switcher a { display:inline-flex; align-items:center; justify-content:center; min-width:32px; min-height:44px; padding:4px; font-size:.72rem; font-weight:700; border-radius:3px; }
.language-switcher a:hover, .language-switcher a:focus-visible { background:var(--cream); color:var(--navy); }
.language-switcher a[aria-current="true"] { color:var(--navy); text-decoration:underline; text-underline-offset:5px; text-decoration-thickness:2px; }
.site-mobile-nav .language-switcher { margin:16px 0; padding:8px 0; border-left:0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); gap:12px; }
.site-mobile-nav .language-switcher a { min-width:44px; font-size:.9rem; }
@media (min-width:1101px) and (max-width:1300px) { .site-header__phone { display:none; } }
