:root {
color-scheme: light;
--navy: #001b44;
--navy-2: #06295f;
--blue: #005a9c;
--blue-light: #eaf3f9;
--white: #ffffff;
--paper: #f4f6f8;
--line: #d8e0e8;
--ink: #0b1b31;
--muted: #53657a;
--red: #e42228;
--yellow: #f7c928;
--green: #38a84a;
--cyan: #19a9d5;
--font-sans: Inter, Aptos, "Segoe UI", Arial, Helvetica, sans-serif;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 5.5rem;
}
body {
margin: 0;
background: var(--white);
color: var(--ink);
font-family: var(--font-sans);
text-rendering: optimizeLegibility;
}
button,
a {
font: inherit;
}
button {
color: inherit;
}
img {
max-width: 100%;
}
::selection {
background: rgba(0, 90, 156, 0.2);
}
:focus-visible {
outline: 3px solid var(--yellow);
outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
[hidden] { display: none !important; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 200; padding: .8rem 1rem; background: var(--yellow); color: var(--navy); font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.section-pad { padding-block: clamp(4.5rem, 8vw, 8.5rem); }
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(0,27,68,.12); }
.reading-progress { position: absolute; inset: 0 0 auto; height: 4px; background: #e5eaf0; overflow: hidden; }
.reading-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--red) 0 24%, var(--yellow) 24% 44%, var(--green) 44% 62%, var(--blue) 62% 82%, var(--cyan) 82% 100%); transition: width .12s linear; }
.site-header__inner { min-height: 76px; width: min(1440px, calc(100% - 2rem)); margin: 0 auto; padding-top: 4px; display: flex; align-items: center; gap: 1.2rem; }
.masthead { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: .3rem; color: var(--navy); line-height: .9; text-decoration: none; letter-spacing: -.04em; flex: 0 0 auto; }
.masthead span,.masthead strong { font-size: 1.05rem; font-weight: 900; }
.masthead strong { color: var(--red); }
.masthead small { grid-column: 1/3; margin-top: .28rem; color: var(--muted); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: .1rem; flex: 1; }
.site-nav a { padding: .65rem .52rem; color: #415267; border-bottom: 2px solid transparent; font-size: .75rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.site-nav a:hover,.site-nav a.is-active { color: var(--blue); border-bottom-color: var(--red); }
.site-header__actions { display: flex; align-items: center; gap: .5rem; flex: 0 0 auto; }
.share-button,.menu-button { min-height: 44px; border: 1px solid var(--line); background: var(--white); color: var(--navy); padding: .7rem .85rem; font-size: .75rem; font-weight: 800; cursor: pointer; }
.share-button:hover,.menu-button:hover { border-color: var(--blue); color: var(--blue); }
.share-fallback { position: fixed; top: 82px; right: 1rem; z-index: 110; width: min(420px,calc(100% - 2rem)); display: grid; grid-template-columns: 1fr auto; gap: .55rem; padding: 1rem; background: var(--white); border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(0,27,68,.18); }
.share-fallback label { grid-column: 1/-1; color: var(--navy); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.share-fallback input { min-width: 0; border: 1px solid #9babbc; padding: .72rem; color: var(--navy); font: inherit; }
.share-fallback button { border: 0; background: var(--red); color: var(--white); padding: .72rem .85rem; font-weight: 850; cursor: pointer; }
.menu-button { display: none; }
.hero { min-height: 100svh; padding-top: 80px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(420px, .75fr); background: var(--navy); }
.hero__photo { min-height: calc(100svh - 80px); position: relative; overflow: hidden; background: #0b396f; }
.hero__photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 50%; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 72%, rgba(0,27,68,.2)); pointer-events: none; }
.hero__photo-credit { position: absolute; left: 1.25rem; bottom: 1.25rem; color: var(--white); background: rgba(0,27,68,.9); padding: .45rem .65rem; font-size: .75rem; font-weight: 700; }
.hero__content { padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 5rem) 2.5rem; display: flex; flex-direction: column; justify-content: center; color: var(--white); }
.color-rule { display: grid; grid-template-columns: 1.1fr .8fr 1fr 1.3fr 1fr; width: 150px; height: 6px; margin-bottom: 2.2rem; }
.color-rule span:nth-child(1){background:var(--red)}.color-rule span:nth-child(2){background:var(--yellow)}.color-rule span:nth-child(3){background:var(--green)}.color-rule span:nth-child(4){background:var(--blue)}.color-rule span:nth-child(5){background:var(--cyan)}
.hero__edition { margin: 0 0 2.2rem; text-transform: uppercase; font-size: .83rem; letter-spacing: .18em; line-height: 1.5; }
.hero__edition strong { color: #9fdcf3; }
.hero h1 { max-width: 8.2ch; margin: 0; font-size: clamp(3rem, 5.6vw, 6.4rem); line-height: .94; letter-spacing: -.065em; }
.hero__dek { max-width: 32rem; margin: 1.8rem 0 2rem; color: #d6e3f1; font-size: clamp(1.05rem, 1.45vw, 1.35rem); line-height: 1.55; }
.primary-button { width: fit-content; min-height: 48px; display: inline-flex; align-items: center; gap: 1rem; padding: .85rem 1rem; background: var(--red); color: var(--white); font-weight: 850; text-decoration: none; }
.primary-button:hover { background: #c9171d; }
.primary-button span { font-size: 1.2rem; }
.hero__teasers { margin: auto 0 0; padding: 2.4rem 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); display: grid; gap: .6rem; }
.hero__teasers a { display: flex; gap: .7rem; color: var(--white); font-size: .82rem; line-height: 1.4; text-decoration: none; }
.hero__teasers span { color: #79ccec; font-weight: 900; }
.hero__teasers a:hover { color: #9fdcf3; }
.eyebrow { margin: 0 0 1rem; color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-heading { max-width: 770px; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2.35rem, 5vw, 5.1rem); line-height: .99; letter-spacing: -.055em; }
.section-heading__description { margin: 1.5rem 0 0; max-width: 68ch; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.65; }
.section-heading--light h2,.section-heading--light .section-heading__description { color: var(--white); }
.section-heading--light .section-heading__description { color: #c9d9e8; }
.editorial { background: var(--paper); }
.editorial__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.editorial__copy { position: sticky; top: 110px; }
.editorial__copy h2 { margin: 0 0 2rem; color: var(--navy); font-size: clamp(2.4rem, 4.7vw, 4.6rem); line-height: 1.02; letter-spacing: -.05em; }
.editorial__copy p:not(.eyebrow) { color: #394b61; font-size: 1.02rem; line-height: 1.76; }
.numbers { background: var(--white); border-top: 8px solid var(--blue); padding: clamp(1.5rem, 4vw, 3.2rem); }
.numbers__title { display: flex; align-items: baseline; gap: .6rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); color: var(--navy); }
.numbers__title span { font-size: 1rem; text-transform: uppercase; letter-spacing: .15em; }
.numbers__title strong { font-size: 1.6rem; }
.numbers__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.stat { min-height: 175px; padding: 1.55rem 1rem 1.3rem 0; border-bottom: 1px solid var(--line); }
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-child(even) { padding-left: 1.5rem; }
.stat strong { display: block; color: var(--navy); font-size: clamp(3rem, 6vw, 5.4rem); line-height: .9; letter-spacing: -.07em; }
.stat > span { display: block; max-width: 20ch; margin-top: 1rem; color: var(--muted); font-size: .9rem; line-height: 1.4; }
.stat--1 strong{color:var(--blue)}.stat--2 strong{color:var(--red)}.stat--3 strong{color:#15825a}.stat--4 strong{color:#168bb5}
.stat--pending { grid-column: 1/-1; border: 1px dashed #98a9bb !important; margin-top: 1.4rem; padding: 1.4rem !important; min-height: auto; display: grid; grid-template-columns: auto 1fr; gap: .2rem 1.2rem; align-items: center; background: #f7f9fb; }
.stat--pending strong { color: #74869a; font-size: 2.5rem; grid-row: 1/3; }
.stat--pending span { margin: 0; color: var(--navy); font-weight: 800; }
.stat--pending em { color: #6a7888; font-size: .78rem; font-style: normal; }
.beco__opening { background: var(--navy); color: var(--white); overflow: hidden; }
.beco__opening-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: end; }
.beco__panorama { margin: 0; transform: translateY(3.5rem); }
.beco__panorama img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.beco__panorama figcaption { padding: .7rem 0; color: #9fb2c5; font-size: .78rem; }
.story-flow { display: grid; gap: clamp(5rem, 10vw, 10rem); }
.story-moment { display: grid; grid-template-columns: 80px minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(1.5rem, 4vw, 4.5rem); align-items: start; }
.story-moment__number { color: var(--red); font-size: 1rem; font-weight: 900; padding-top: .55rem; border-top: 3px solid currentColor; }
.story-moment__copy h3 { margin: 0 0 1.4rem; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; letter-spacing: -.045em; }
.story-moment__copy p:not(.eyebrow) { color: #3f5165; line-height: 1.8; }
.editorial-image { margin: 0; }
.editorial-image__button { position: relative; display: block; width: 100%; padding: 0; border: 0; background: #dce4ec; cursor: zoom-in; overflow: hidden; }
.editorial-image__button img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .35s ease; }
.editorial-image__button:hover img { transform: scale(1.018); }
.editorial-image__expand { position: absolute; right: .7rem; bottom: .7rem; padding: .42rem .58rem; background: rgba(0,27,68,.9); color: var(--white); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.editorial-image figcaption { padding-top: .7rem; color: #66778a; font-size: .78rem; line-height: 1.45; }
.story-moment__image .editorial-image__button img { aspect-ratio: 4/5; }
.story-moment__gallery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .8rem; grid-column: 2/-1; }
.story-moment__gallery .editorial-image:nth-child(2) { transform: translateY(2.5rem); }
.story-flow > blockquote { max-width: 950px; margin: 0 auto; padding: 3rem 0 3rem 4rem; border-left: 9px solid var(--yellow); color: var(--navy); font-size: clamp(2rem, 4.8vw, 4.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -.045em; }
.story-moment__gallery--two { grid-template-columns: 1.35fr .65fr; }
.press-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.7rem; }
.press-list span { border: 1px solid var(--line); padding: .55rem .7rem; color: var(--navy); font-size: .76rem; font-weight: 800; }
.relationship { background: #edf5f8; }
.relationship__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem,7vw,7rem); align-items: center; }
.relationship__copy > p { color: #3e5269; line-height: 1.75; }
.fact-sheet { margin: 2rem 0 0; border-top: 1px solid #b9cfdd; }
.fact-sheet div { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid #b9cfdd; }
.fact-sheet dt { color: var(--blue); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.fact-sheet dd { margin: 0; color: var(--navy); font-weight: 750; }
.relationship__photos { min-height: 640px; position: relative; }
.relationship__photos figure { position: absolute; margin: 0; }
.relationship__photo-main { width: 72%; left: 0; top: 0; }
.relationship__photo-side { width: 48%; right: 0; bottom: 0; }
.relationship__photos img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border: 10px solid var(--white); }
.relationship__photos figcaption { background: var(--white); padding: .75rem; color: var(--muted); font-size: .76rem; }
.knowledge { background: var(--white); }
.knowledge__chapters { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 4rem; }
.chapter { padding: clamp(1.4rem,3.5vw,3rem); color: var(--white); overflow: hidden; }
.chapter--coral { background: var(--navy); }
.chapter--roma { background: #174d76; margin-top: 5rem; }
.chapter header > span { color: #95d4eb; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.chapter header > p { color: #b9c9d9; font-size: .8rem; }
.chapter h3 { margin: 1.8rem 0; color: var(--white); font-size: clamp(2rem,3.4vw,3.5rem); line-height: 1.03; letter-spacing: -.045em; }
.chapter > p { color: #d0dce7; line-height: 1.7; }
.people-line { margin: 2rem 0; padding: 1.3rem 0 1.3rem 1.2rem; border-block: 1px solid rgba(255,255,255,.18); color: #e6eef5; columns: 2; column-gap: 2rem; }
.people-line li { break-inside: avoid; margin: .4rem 0; font-size: .82rem; }
.chapter__gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem; margin-top: 2rem; }
.chapter__gallery .editorial-image figcaption { color: #c3d0dc; }
.chapter__gallery .editorial-image__button img { aspect-ratio: 1; }
.giro { background: var(--navy); color: var(--white); }
.giro__intro { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.giro__metrics { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid rgba(255,255,255,.2); }
.giro__metrics span { min-width: 135px; padding: 1rem; border: 1px solid rgba(255,255,255,.1); color: #bfd0df; font-size: .75rem; }
.giro__metrics strong { display: block; color: var(--white); font-size: 2rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin: 4rem 0 0; }
.filter-bar button { min-height: 46px; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.3); background: transparent; color: var(--white); font-weight: 800; cursor: pointer; }
.filter-bar button[aria-pressed="true"] { background: var(--red); border-color: var(--red); }
.filter-result { color: #aebfd0; font-size: .82rem; }
.giro__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.giro-card { background: var(--white); color: var(--ink); display: flex; flex-direction: column; min-width: 0; }
.giro-card__photo { position: relative; width: 100%; padding: 0; border: 0; background: #cdd9e4; cursor: zoom-in; overflow: hidden; }
.giro-card__photo img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; }
.giro-card__photo span { position: absolute; right: .6rem; bottom: .6rem; padding: .42rem .55rem; background: var(--navy); color: var(--white); font-size: .75rem; font-weight: 850; }
.giro-card__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.giro-card__promoter { margin: 0 0 .55rem !important; color: var(--red) !important; font-size: .75rem !important; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.giro-card h3 { margin: 0; color: var(--navy); font-size: 1.45rem; line-height: 1.05; }
.giro-card__city { margin: .35rem 0 1rem !important; color: var(--blue) !important; font-weight: 800; }
.giro-card__body > p { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.tag-list { display: flex; flex-wrap: wrap; gap: .35rem; margin: auto 0 1rem; padding: 1rem 0 0; list-style: none; }
.tag-list li { padding: .35rem .45rem; background: var(--paper); border-left: 3px solid var(--cyan); color: #40556b; font-size: .75rem; font-weight: 750; }
.giro-card a,.text-button { width: fit-content; color: var(--blue); font-size: .76rem; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.text-button { border: 0; background: none; padding: 0; cursor: pointer; }
.commercial { background: var(--paper); }
.commercial__lead { display: grid; grid-template-columns: .7fr .55fr 1fr; gap: 1rem; margin-top: 4rem; align-items: stretch; }
.commercial__number { min-height: 270px; padding: 2rem; background: var(--navy); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; }
.commercial__number--secondary { background: var(--blue); }
.commercial__number strong { font-size: clamp(5rem,11vw,9rem); line-height: .75; letter-spacing: -.09em; }
.commercial__number span { max-width: 16ch; font-weight: 800; line-height: 1.3; }
.commercial__lead > p { margin: 0; padding: 2rem; border-top: 8px solid var(--red); background: var(--white); color: var(--muted); line-height: 1.75; }
.commercial__columns { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,6vw,6rem); margin-top: 5rem; }
.commercial__columns h3,.campaign-feature h3 { color: var(--navy); font-size: 1.55rem; }
.category-grid { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.category-grid li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); color: #3e5167; }
.category-grid span { color: var(--red); font-size: .75rem; font-weight: 900; }
.brand-list { columns: 3; column-gap: 2rem; padding: 0; list-style: none; }
.brand-list li { break-inside: avoid; padding: .65rem 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: .88rem; font-weight: 750; }
.campaign-feature { position: relative; margin-top: 5rem; padding: clamp(2rem,5vw,4rem); background: var(--white); overflow: hidden; }
.campaign-feature > * { position: relative; max-width: 680px; }
.campaign-feature__swatches { position: absolute; inset: 0 0 0 auto; width: 30%; display: grid; grid-template-columns: repeat(4,1fr); opacity: .22; }
.campaign-feature__swatches span:nth-child(1){background:#a8c9e7}.campaign-feature__swatches span:nth-child(2){background:#f6cfd9}.campaign-feature__swatches span:nth-child(3){background:#e6cfef}.campaign-feature__swatches span:nth-child(4){background:#f3df9b}
.portfolio { background: var(--white); }
.roma-feature { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); color: var(--white); }
.roma-feature__copy { padding: clamp(2rem,5vw,5rem); }
.roma-feature h3 { margin: 0; font-size: clamp(2.5rem,5vw,5rem); line-height: .98; letter-spacing: -.055em; }
.roma-feature__copy > p:not(.eyebrow) { color: #cedbe7; line-height: 1.75; }
.roma-feature figure { margin: 0; min-height: 620px; }
.roma-feature figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.roma-feature figcaption { padding: .7rem 1rem; background: var(--white); color: var(--muted); font-size: .75rem; }
.roma-mix { columns: 2; column-gap: 2rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.roma-mix li { break-inside: avoid; padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: .86rem; }
.portfolio__secondary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: var(--line); margin-top: 1px; }
.portfolio__secondary article { min-width: 0; padding: clamp(1.5rem,3vw,2.5rem); background: var(--paper); }
.brand-kicker { margin: 0; color: var(--red); font-size: .8rem; font-weight: 950; letter-spacing: .1em; }
.portfolio__secondary h3 { margin: .7rem 0 1rem; color: var(--navy); font-size: 1.5rem; }
.portfolio__secondary p,.portfolio__secondary li { color: var(--muted); line-height: 1.6; font-size: .87rem; }
.pending-note { padding: .75rem; border-left: 3px solid var(--yellow); background: #fff8d8; color: #5f5523 !important; }
.asset-placeholder { min-height: 150px; margin-top: 1.5rem; display: grid; place-content: center; text-align: center; border: 1px dashed #8fa0b2; color: #67788a; }
.asset-placeholder span { font-weight: 850; }.asset-placeholder small { margin-top: .35rem; }
.products { background: #eaf1f6; }
.products__grid { display: grid; gap: 1rem; margin-top: 4rem; }
.product-placeholder { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--white); border-top: 6px solid var(--blue); }
.product-placeholder--optional { margin-left: 14%; border-top-color: #8ea1b5; }
.product-placeholder__image { min-height: 420px; display: grid; place-content: center; background: repeating-linear-gradient(135deg,#eef2f5 0 12px,#e3e9ee 12px 24px); color: #67798b; font-weight: 850; }
.product-placeholder > div:last-child { padding: clamp(2rem,5vw,4rem); }
.product-placeholder h3 { margin: 0 0 2rem; color: var(--navy); font-size: clamp(2rem,4vw,3.8rem); }
.product-placeholder dl { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.product-placeholder dl div { border-top: 1px solid var(--line); padding-top: .7rem; }
.product-placeholder dt { color: var(--blue); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.product-placeholder dd { margin: .3rem 0 0; color: var(--muted); }
.product-placeholder button { min-height: 46px; margin-top: 2rem; border: 0; background: #d7dee5; color: #65778b; padding: .75rem 1rem; font-weight: 800; cursor: not-allowed; }
.recognition { background: var(--navy); color: var(--white); }
.recognition__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem,8vw,8rem); align-items: center; }
.recognition__portrait { position: relative; }
.recognition__portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; border-bottom: 10px solid var(--red); }
.recognition__portrait > span { position: absolute; left: -1rem; bottom: 2rem; padding: .8rem 1rem; background: var(--red); color: var(--white); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.recognition__copy > p { max-width: 66ch; color: #cbd7e3; line-height: 1.75; }
.recognition__name { margin: 2rem 0 .2rem; color: var(--white) !important; font-size: 1.8rem; font-weight: 900; }
.recognition__campaign { color: #8fcde6 !important; font-weight: 750; }
.quote-placeholder { margin: 2rem 0 0; padding: 1.4rem; border: 1px dashed rgba(255,255,255,.4); color: #aebdcc; font-style: italic; }
.new-hires { background: var(--paper); }
.pending-panel { margin-top: 3rem; padding: 1.4rem; border-left: 6px solid var(--yellow); background: #fff8d5; }
.pending-panel span { color: var(--navy); font-weight: 900; }.pending-panel p { margin: .4rem 0 0; color: #655c34; }
.new-hires__placeholders { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.new-hires__placeholders div { min-height: 210px; padding: 1.2rem; display: flex; flex-direction: column; justify-content: flex-end; border: 1px dashed #9eacb9; color: #718193; }
.new-hires__placeholders span { margin: auto; }.new-hires__placeholders strong { color: #596b7e; }.new-hires__placeholders small { margin-top: .4rem; }
.birthdays { background: var(--white); }
.birthday-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 4rem; }
.birthday-grid article { position: relative; padding: 1.5rem; border-top: 5px solid var(--blue); background: var(--paper); }
.birthday-grid article:nth-child(2n) { border-top-color: var(--cyan); }.birthday-grid article:nth-child(3n) { border-top-color: var(--red); }
.birthday-grid img,.birthday-placeholder { width: 120px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; display: block; background: #dfe5ea; }
.birthday-placeholder { display: grid; place-content: center; border: 1px dashed #93a3b3; color: #6f8091; font-size: .75rem; text-align: center; }
.birthday-date { margin: 1.2rem 0 .5rem; color: var(--red); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.birthday-grid h3 { margin: 0; color: var(--navy); font-size: 1.45rem; }
.birthday-grid article > p:not(.birthday-date),.birthday-grid small { color: var(--muted); }
.birthday-grid article > p:not(.birthday-date) { margin-bottom: .35rem; }.birthday-grid article.is-pending { border-style: dashed; }
.closing { background: #001535; color: var(--white); padding-bottom: 0; }
.closing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,8rem); align-items: start; }
.closing h2 { margin: 0; max-width: 10ch; font-size: clamp(3rem,6vw,6rem); line-height: .94; letter-spacing: -.06em; }
.closing__grid > div:first-child > p:not(.eyebrow) { max-width: 60ch; color: #c0cfdd; line-height: 1.75; }
.primary-button--light { margin-top: 1.5rem; background: var(--white); color: var(--navy); }
.primary-button--light:hover { background: #dce8f2; }
.closing__links { padding: 2rem; border: 1px solid rgba(255,255,255,.2); }
.closing__links h3 { margin-top: 0; font-size: 1.5rem; }
.closing__links ul { list-style: none; padding: 0; }
.closing__links li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #d8e2eb; }
.closing__links em { color: #8fa3b5; font-size: .75rem; font-style: normal; text-align: right; }
.qr-placeholder { margin-top: 2rem; min-height: 160px; display: grid; place-content: center; text-align: center; border: 1px dashed rgba(255,255,255,.4); color: #adbdcb; }
.qr-placeholder span { font-weight: 900; }.qr-placeholder small { margin-top: .4rem; }
.closing__footer { margin-top: 6rem; padding: 1.4rem max(1rem,calc((100% - 1180px)/2)); border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.closing__footer img { width: 150px; height: 72px; object-fit: contain; background: var(--white); }.closing__footer p { color: #9fb0c0; font-size: .75rem; }
.lightbox { position: fixed; inset: 0; z-index: 300; padding: 1rem; display: grid; place-items: center; background: rgba(0,13,33,.94); }
.lightbox__dialog { position: relative; width: min(1000px,100%); max-height: calc(100vh - 2rem); overflow: auto; background: var(--white); }
.lightbox__dialog img { width: 100%; max-height: 78vh; object-fit: contain; display: block; background: #061a33; }
.lightbox__dialog p { margin: 0; padding: 1rem 1.2rem; color: var(--muted); line-height: 1.5; }
.lightbox__close { position: absolute; right: .7rem; top: .7rem; z-index: 1; min-height: 44px; border: 0; background: var(--red); color: var(--white); padding: .7rem .9rem; font-weight: 850; cursor: pointer; }
body.is-modal-open { overflow: hidden; }
@media (max-width: 1180px) {
.site-nav a { padding-inline: .32rem; font-size: .75rem; }
.giro__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 1120px) {
.site-nav { position: fixed; inset: 76px 0 auto; max-height: calc(100vh - 76px); overflow: auto; display: none; padding: 1rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0,27,68,.15); }
.site-nav--open { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.site-nav a { min-height: 48px; display: flex; align-items: center; padding: .75rem; font-size: .82rem; border: 1px solid var(--line); }
.menu-button { display: block; }
.hero { grid-template-columns: 1fr; }
.hero__photo { min-height: 58svh; }
.hero__content { min-height: 620px; padding: 3rem 2rem; }
.hero__teasers { margin-top: 3rem; }
.editorial__grid,.relationship__grid,.beco__opening-grid,.recognition__grid,.closing__grid { grid-template-columns: 1fr; }
.editorial__copy { position: static; }
.beco__panorama { transform: none; }
.story-moment { grid-template-columns: 48px 1fr; }
.story-moment__image { grid-column: 2; }
.story-moment__gallery { grid-column: 1/-1; }
.relationship__photos { min-height: 560px; }
.knowledge__chapters { grid-template-columns: 1fr; }
.chapter--roma { margin-top: 0; }
.giro__intro { grid-template-columns: 1fr; }
.giro__metrics { width: fit-content; }
.commercial__lead { grid-template-columns: 1fr 1fr; }
.commercial__lead > p { grid-column: 1/-1; }
.commercial__columns { grid-template-columns: 1fr; }
.roma-feature { grid-template-columns: 1fr; }
.roma-feature figure { min-height: 480px; }
.portfolio__secondary { grid-template-columns: 1fr; }
.new-hires__placeholders { grid-template-columns: repeat(2,minmax(0,1fr)); }
.birthday-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
.container { width: min(100% - 1.25rem,1180px); }
.section-pad { padding-block: 4.5rem; }
.site-header__inner { width: calc(100% - 1rem); min-height: 68px; gap: .5rem; }
.site-nav { inset: 68px 0 auto; max-height: calc(100vh - 68px); grid-template-columns: 1fr; }
.share-button { width: 44px; overflow: hidden; color: transparent; position: relative; padding: 0; }
.share-button::after { content: "↗"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--navy); font-size: 1.15rem; }
.menu-button { padding-inline: .65rem; }
.hero { padding-top: 72px; }
.hero__photo { min-height: 50svh; }
.hero__photo img { object-position: 52% 48%; }
.hero__content { min-height: auto; padding: 2.4rem 1rem 3rem; }
.hero h1 { font-size: clamp(3.2rem,16vw,5rem); }
.hero__teasers { padding-top: 1.4rem; }
.editorial__grid { gap: 2.5rem; }
.numbers { padding: 1.2rem; }
.numbers__grid { grid-template-columns: 1fr 1fr; }
.stat { min-height: 155px; }
.stat strong { font-size: 3.3rem; }
.stat > span { font-size: .8rem; }
.stat--pending { grid-template-columns: 70px 1fr; }
.story-flow { gap: 5rem; }
.story-moment { grid-template-columns: 1fr; gap: 1.2rem; }
.story-moment__number { width: 42px; }
.story-moment__image,.story-moment__gallery { grid-column: 1; }
.story-moment__gallery { grid-template-columns: 1fr; }
.story-moment__gallery .editorial-image:nth-child(2) { transform: none; }
.story-flow > blockquote { padding: 2rem 0 2rem 1.3rem; border-left-width: 6px; font-size: 2.2rem; }
.story-moment__gallery--two { grid-template-columns: 1fr; }
.relationship__photos { min-height: auto; display: grid; gap: 1rem; }
.relationship__photos figure { position: static; width: 100%; }
.relationship__photos img { aspect-ratio: 4/3; border-width: 6px; }
.chapter { padding: 1.2rem; }
.people-line { columns: 1; }
.chapter__gallery { grid-template-columns: 1fr 1fr; }
.giro__metrics { width: 100%; }
.giro__metrics span { min-width: 0; }
.filter-bar { display: grid; grid-template-columns: 1fr 1fr; }
.giro__grid { grid-template-columns: 1fr; }
.commercial__lead { grid-template-columns: 1fr 1fr; }
.commercial__number { min-height: 200px; padding: 1.2rem; }
.commercial__number strong { font-size: 5rem; }
.brand-list { columns: 2; }
.campaign-feature__swatches { width: 22%; }
.roma-feature__copy { padding: 2rem 1.2rem; }
.roma-feature figure { min-height: 360px; }
.product-placeholder,.product-placeholder--optional { grid-template-columns: 1fr; margin-left: 0; }
.product-placeholder__image { min-height: 250px; }
.product-placeholder dl { grid-template-columns: 1fr; }
.recognition__portrait > span { left: 0; }
.new-hires__placeholders { grid-template-columns: 1fr 1fr; }
.new-hires__placeholders div { min-height: 160px; }
.birthday-grid { grid-template-columns: 1fr; }
.closing h2 { font-size: 3.4rem; }
.closing__links { padding: 1.2rem; }
.closing__links li { flex-direction: column; }
.closing__links em { text-align: left; }
.closing__footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 390px) {
.masthead small { font-size: .75rem; }
.share-button,.menu-button { min-height: 42px; }
.numbers__grid { grid-template-columns: 1fr; }
.stat,.stat:nth-child(odd),.stat:nth-child(even) { border-right: 0; padding-inline: 0; min-height: 130px; }
.stat--pending { grid-column: auto; }
.chapter__gallery { grid-template-columns: 1fr; }
.filter-bar { grid-template-columns: 1fr; }
.commercial__lead { grid-template-columns: 1fr; }
.commercial__lead > p { grid-column: auto; }
.commercial__number { min-height: 170px; }
.brand-list { columns: 1; }
.roma-mix { columns: 1; }
.new-hires__placeholders { grid-template-columns: 1fr; }
}