:root {
    --navy: #11194f;
    --navy-deep: #090e32;
    --blue: #2e4ac8;
    --yellow: #fff4ab;
    --yellow-strong: #ffd75a;
    --orange: #ffac55;
    --green: #40a657;
    --cream: #fffaf1;
    --paper: #f5f3ed;
    --white: #ffffff;
    --ink: #111111;
    --muted: #666a73;
    --line: rgba(17, 17, 17, 0.13);
    --line-light: rgba(255, 255, 255, 0.17);
    --display: "Archivo Black", "Arial Black", sans-serif;
    --body: "Manrope", Arial, sans-serif;
    --shadow: 0 28px 70px rgba(9, 14, 50, 0.16);
    --radius-sm: 16px;
    --radius: 28px;
    --radius-lg: 46px;
    --container: 1220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--navy);
    background: var(--yellow);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    padding: 18px 0;
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    padding: 10px 0;
    background: rgba(9, 14, 50, 0.92);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    align-items: center;
    min-height: 64px;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
}

.brand img {
    width: 220px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 26px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.main-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -8px;
    height: 2px;
    background: var(--yellow-strong);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 3;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: 0.25s ease;
}

.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 23px; }
.nav-toggle span:nth-child(4) { top: 30px; }
.nav-toggle.is-active span:nth-child(2) { top: 23px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(3) { opacity: 0; }
.nav-toggle.is-active span:nth-child(4) { top: 23px; transform: rotate(-45deg); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 56px;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button span {
    font-size: 18px;
    line-height: 1;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button-small {
    min-height: 46px;
    padding: 12px 19px;
    font-size: 13px;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 16px 35px rgba(46, 74, 200, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
    color: var(--navy);
    background: var(--yellow-strong);
    box-shadow: 0 18px 35px rgba(255, 215, 90, 0.2);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.13);
}

.button-ghost-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
    color: var(--navy);
    background: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--navy-deep);
    box-shadow: 0 18px 40px rgba(9, 14, 50, 0.2);
}

.button-dark:hover,
.button-dark:focus-visible {
    background: var(--blue);
}

.button-yellow {
    color: var(--navy-deep);
    background: var(--yellow-strong);
    box-shadow: 0 18px 40px rgba(255, 215, 90, 0.18);
}

.button-yellow:hover,
.button-yellow:focus-visible {
    background: var(--white);
}

.header-cta {
    color: var(--navy-deep);
    background: var(--yellow-strong);
    white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
    color: var(--navy-deep);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.14);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 790px;
    overflow: hidden;
    padding: 150px 0 84px;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 22%, rgba(46, 74, 200, 0.65), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(64, 166, 87, 0.24), transparent 28%),
        var(--navy-deep);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.28;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-one {
    width: 620px;
    height: 620px;
    top: 70px;
    right: -160px;
}

.hero-orbit-two {
    width: 380px;
    height: 380px;
    top: 190px;
    right: -40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
    align-items: center;
    gap: 78px;
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--yellow-strong);
}

.eyebrow span {
    width: 32px;
    height: 2px;
    background: currentColor;
}

.hero h1 {
    max-width: 860px;
    margin: 22px 0 26px;
    font-family: var(--display);
    font-size: clamp(3.25rem, 6.5vw, 6.45rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.89;
    text-transform: uppercase;
}

.hero h1 em {
    display: block;
    color: var(--yellow-strong);
    font-family: var(--body);
    font-size: 0.58em;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.05;
    text-transform: none;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 660px;
    margin-top: 48px;
    border-top: 1px solid var(--line-light);
}

.hero-proof div {
    padding: 22px 20px 0 0;
}

.hero-proof div + div {
    padding-left: 22px;
    border-left: 1px solid var(--line-light);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
}

.hero-proof span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    min-height: 555px;
}

.hero-photo-wrap {
    position: absolute;
    inset: 0 55px 0 28px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.08);
    border-radius: 180px 180px 34px 34px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(2.5deg);
}

.hero-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 14, 50, 0.82), transparent 45%);
}

.hero-photo-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    z-index: 1;
    right: 34px;
    bottom: 30px;
    left: 34px;
    color: var(--white);
}

.photo-caption span,
.photo-caption strong {
    display: block;
}

.photo-caption span {
    color: var(--yellow-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.photo-caption strong {
    margin-top: 5px;
    font-size: 22px;
    line-height: 1.15;
}

.award-seal {
    position: absolute;
    z-index: 3;
    top: -18px;
    right: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 148px;
    color: var(--navy-deep);
    background: var(--yellow-strong);
    border: 8px solid var(--navy-deep);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 215, 90, 0.45), 0 25px 48px rgba(0, 0, 0, 0.28);
    transform: rotate(7deg);
}

.award-seal::before,
.award-seal::after {
    content: "★";
    position: absolute;
    top: 61px;
    color: var(--navy-deep);
    font-size: 8px;
}

.award-seal::before { left: 14px; }
.award-seal::after { right: 14px; }
.award-seal span { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.award-seal strong { font-family: var(--display); font-size: 25px; line-height: 1.1; text-transform: uppercase; }
.award-seal small { margin-top: 4px; font-size: 9px; font-weight: 800; letter-spacing: 0.12em; }

.hero-mini-card {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: -48px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: rotate(-5deg);
}

.hero-mini-card img {
    width: 64px;
    height: 76px;
    object-fit: cover;
    border-radius: 11px;
}

.hero-mini-card span,
.hero-mini-card strong {
    display: block;
}

.hero-mini-card span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.hero-mini-card strong {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.2;
}

.ticker {
    overflow: hidden;
    color: var(--navy-deep);
    background: var(--yellow-strong);
    border-block: 1px solid rgba(9, 14, 50, 0.2);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    padding: 19px 0;
    animation: marquee 26s linear infinite;
}

.ticker span {
    padding: 0 24px;
    font-family: var(--display);
    font-size: 17px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker i {
    font-style: normal;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section {
    padding: 116px 0;
}

.section-intro {
    max-width: 760px;
    margin-bottom: 58px;
}

.section-intro h2,
.split-heading h2,
.experience-panel h2,
.location-card h2,
.final-cta h2 {
    margin: 14px 0 22px;
    font-family: var(--display);
    font-size: clamp(2.4rem, 5.3vw, 4.85rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-transform: uppercase;
}

.section-intro > p,
.split-heading > div > p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.section-intro.light h2,
.section-intro.light p {
    color: var(--white);
}

.section-intro.light p {
    color: rgba(255, 255, 255, 0.68);
}

.awards {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.awards::before {
    content: "MASTER";
    position: absolute;
    top: 25px;
    right: -28px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    font-family: var(--display);
    font-size: clamp(7rem, 18vw, 17rem);
    line-height: 1;
    pointer-events: none;
}

.awards .kicker {
    color: var(--yellow-strong);
}

.award-layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 80px;
    align-items: stretch;
}

.award-number {
    display: flex;
    align-items: flex-end;
    min-height: 400px;
    padding: 40px;
    color: var(--navy-deep);
    background: var(--yellow-strong);
    border-radius: var(--radius-lg);
}

.award-number strong {
    font-family: var(--display);
    font-size: clamp(7rem, 15vw, 12rem);
    font-weight: 400;
    letter-spacing: -0.11em;
    line-height: 0.74;
}

.award-number span {
    margin: 0 0 2px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.award-timeline {
    border-top: 1px solid var(--line-light);
}

.award-row {
    display: grid;
    grid-template-columns: 82px 1fr 54px;
    gap: 28px;
    align-items: center;
    min-height: 133px;
    border-bottom: 1px solid var(--line-light);
}

.award-year {
    color: var(--yellow-strong);
    font-family: var(--display);
    font-size: 21px;
}

.award-rank {
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.award-row h3 {
    margin: 6px 0 0;
    font-size: 17px;
    line-height: 1.35;
}

.award-dot {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.award-links {
    display: flex;
    justify-content: flex-end;
    gap: 34px;
    margin-top: 38px;
}

.award-links a {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 800;
}

.award-links a:hover,
.award-links a:focus-visible {
    color: var(--yellow-strong);
    border-color: var(--yellow-strong);
}

.award-links span {
    margin-left: 8px;
}

.best-pizza {
    background: var(--cream);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.split-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding-bottom: 6px;
    color: var(--navy);
    border-bottom: 2px solid var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.text-link span {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(5px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px;
}

.value-card {
    min-height: 330px;
    padding: 34px;
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: var(--shadow);
}

.value-card > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.value-card h3 {
    margin: 105px 0 12px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.value-card p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7;
}

.value-blue { color: var(--white); background: var(--blue); }
.value-yellow { color: var(--navy-deep); background: var(--yellow); }
.value-orange { color: var(--navy-deep); background: var(--orange); }

.favorites {
    background: var(--paper);
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.pizza-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: var(--radius);
    box-shadow: 0 12px 38px rgba(17, 17, 17, 0.045);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pizza-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(9, 14, 50, 0.12);
}

.pizza-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    background: #ddd;
}

.pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.pizza-card:hover .pizza-image img {
    transform: scale(1.055);
}

.pizza-image > span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    color: var(--navy-deep);
    background: var(--yellow-strong);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(9, 14, 50, 0.12);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pizza-content {
    padding: 26px;
}

.pizza-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.pizza-title h3 {
    margin-bottom: 0;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: uppercase;
}

.pizza-title span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 14px;
}

.pizza-content p {
    min-height: 92px;
    margin: 16px 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.pizza-content > a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.experience {
    display: grid;
    grid-template-columns: 1.14fr 0.86fr;
    min-height: 700px;
    background: var(--navy-deep);
}

.experience-photo {
    min-height: 700px;
    background:
        linear-gradient(90deg, transparent 74%, rgba(9,14,50,.48)),
        url('../images/pizza-en-bucaramanga.webp') center / cover no-repeat;
}

.experience-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 82px clamp(36px, 6vw, 100px);
    color: var(--white);
}

.experience-panel .kicker {
    color: var(--yellow-strong);
}

.experience-panel h2 {
    max-width: 650px;
}

.experience-panel > p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.67);
}

.experience-list {
    display: grid;
    gap: 14px;
    margin: 20px 0 36px;
}

.experience-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
}

.experience-list i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--navy-deep);
    background: var(--yellow-strong);
    border-radius: 50%;
    font-size: 12px;
    font-style: normal;
}

.experience-panel .button {
    align-self: flex-start;
}

.faq {
    background: var(--cream);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 100px;
    align-items: start;
}

.faq .section-intro {
    position: sticky;
    top: 130px;
    margin-bottom: 0;
}

.faq .section-intro h2 {
    font-size: clamp(2.25rem, 4vw, 4.1rem);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    display: grid;
    grid-template-columns: 38px 1fr 32px;
    gap: 14px;
    align-items: center;
    padding: 26px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 800;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary > span {
    color: var(--blue);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.faq summary i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq details[open] summary i {
    background: var(--blue);
    transform: rotate(45deg);
}

.faq details p {
    max-width: 720px;
    margin: -4px 44px 28px 52px;
    color: var(--muted);
    font-size: 14px;
}

.location {
    padding-top: 0;
    background: var(--cream);
}

.location-card {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    min-height: 430px;
    padding: clamp(42px, 7vw, 86px);
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(46, 74, 200, 0.78), transparent 36%),
        var(--navy-deep);
    border-radius: var(--radius-lg);
}

.location-card .kicker {
    color: var(--yellow-strong);
}

.location-card h2 {
    max-width: 720px;
}

.location-card p {
    max-width: 540px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.location-mark {
    position: relative;
    justify-self: end;
    display: grid;
    place-items: center;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.location-mark::before,
.location-mark::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
}

.location-mark::before { width: 1px; height: 100%; }
.location-mark::after { width: 100%; height: 1px; }

.location-mark span,
.location-mark strong,
.location-mark small {
    position: absolute;
    z-index: 1;
}

.location-mark span {
    top: 32px;
    color: var(--yellow-strong);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.location-mark strong {
    color: var(--white);
    font-family: var(--display);
    font-size: 72px;
    line-height: 1;
}

.location-mark small {
    bottom: 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.final-cta {
    padding: 96px 0;
    color: var(--white);
    background: var(--blue);
}

.final-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

.final-cta p {
    margin-bottom: 0;
    color: var(--yellow-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.site-footer {
    padding: 78px 0 30px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 90px;
}

.footer-brand img {
    width: 250px;
    height: auto;
}

.footer-brand p {
    max-width: 430px;
    margin: 24px 0 0;
    font-size: 13px;
}

.site-footer h2 {
    margin: 5px 0 22px;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 11px 0;
    font-size: 13px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--yellow-strong);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 62px;
    padding-top: 26px;
    border-top: 1px solid var(--line-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-bottom strong {
    color: var(--yellow-strong);
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    color: var(--white);
    background: #21c063;
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
    width: 31px;
    fill: currentColor;
}

.mobile-order-bar {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1120px) {
    .main-nav { gap: 17px; }
    .main-nav a { font-size: 12px; }
    .brand img { width: 190px; }
    .hero-grid { grid-template-columns: 1fr 430px; gap: 48px; }
    .hero h1 { font-size: clamp(3.2rem, 6.8vw, 5.6rem); }
    .hero-mini-card { left: -20px; }
    .award-layout { gap: 50px; }
    .experience { grid-template-columns: 1fr 1fr; }
    .faq-layout { gap: 60px; }
}

@media (max-width: 960px) {
    html { scroll-padding-top: 86px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .site-header { padding: 12px 0; background: rgba(9, 14, 50, 0.9); backdrop-filter: blur(16px); }
    .nav-shell { min-height: 58px; }
    .brand img { width: 194px; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-cta { display: none; }
    .main-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
        padding: 100px 10vw 50px;
        background: rgba(9, 14, 50, 0.98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: 0.25s ease;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .main-nav a { width: 100%; padding: 12px 0; color: var(--white); font-family: var(--display); font-size: clamp(1.55rem, 6vw, 2.4rem); letter-spacing: -0.04em; text-transform: uppercase; }
    .main-nav a::after { display: none; }
    .hero { padding: 126px 0 78px; }
    .hero-grid { grid-template-columns: 1fr; gap: 70px; }
    .hero-copy { max-width: 790px; }
    .hero h1 { max-width: 720px; font-size: clamp(3.55rem, 11vw, 6.1rem); }
    .hero-visual { width: min(620px, 90%); min-height: 640px; margin: 0 auto; }
    .hero-photo-wrap { inset: 0 55px 0 55px; }
    .hero-mini-card { left: 0; }
    .award-seal { right: 4px; }
    .section { padding: 92px 0; }
    .award-layout { grid-template-columns: 1fr; }
    .award-number { min-height: 310px; }
    .award-number strong { font-size: clamp(8rem, 26vw, 13rem); }
    .split-heading { grid-template-columns: 1fr; gap: 30px; }
    .split-heading > div > p { max-width: 760px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .value-card:last-child { grid-column: 1 / -1; }
    .pizza-grid { grid-template-columns: repeat(2, 1fr); }
    .experience { grid-template-columns: 1fr; }
    .experience-photo { min-height: 520px; }
    .experience-panel { min-height: 590px; }
    .faq-layout { grid-template-columns: 1fr; gap: 48px; }
    .faq .section-intro { position: static; }
    .location-card { grid-template-columns: 1fr; gap: 55px; }
    .location-mark { justify-self: start; }
    .final-cta-inner { grid-template-columns: 1fr; gap: 20px; }
    .final-cta .button { justify-self: start; }
    .footer-grid { grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
    .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand img { width: 165px; }
    .nav-toggle { width: 44px; height: 44px; }
    .nav-toggle span:not(.sr-only) { left: 12px; }
    .nav-toggle span:nth-child(2) { top: 14px; }
    .nav-toggle span:nth-child(3) { top: 21px; }
    .nav-toggle span:nth-child(4) { top: 28px; }
    .nav-toggle.is-active span:nth-child(2),
    .nav-toggle.is-active span:nth-child(4) { top: 21px; }
    .hero { min-height: auto; padding: 112px 0 60px; }
    .hero::before { background-size: 46px 46px; }
    .hero-grid { gap: 54px; }
    .eyebrow { font-size: 10px; }
    .hero h1 { margin-top: 18px; font-size: clamp(3.15rem, 16.3vw, 4.5rem); line-height: 0.88; }
    .hero h1 em { font-size: 0.5em; line-height: 1.12; }
    .hero-lead { font-size: 15px; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-proof { margin-top: 38px; }
    .hero-proof div { padding: 17px 8px 0 0; }
    .hero-proof div + div { padding-left: 11px; }
    .hero-proof strong { font-size: 13px; }
    .hero-proof span { font-size: 8px; line-height: 1.4; }
    .hero-visual { width: 100%; min-height: 480px; }
    .hero-photo-wrap { inset: 0 30px 0 30px; border-width: 5px; border-radius: 130px 130px 26px 26px; }
    .photo-caption { right: 22px; bottom: 22px; left: 22px; }
    .photo-caption strong { font-size: 18px; }
    .award-seal { top: -20px; right: 0; width: 116px; height: 116px; border-width: 6px; }
    .award-seal::before, .award-seal::after { top: 48px; }
    .award-seal strong { font-size: 20px; }
    .award-seal span { font-size: 8px; }
    .award-seal small { font-size: 7px; }
    .hero-mini-card { bottom: 20px; width: 190px; }
    .hero-mini-card img { width: 54px; height: 66px; }
    .ticker-track { padding: 15px 0; }
    .ticker span { padding: 0 17px; font-size: 14px; }
    .section { padding: 78px 0; }
    .section-intro { margin-bottom: 40px; }
    .section-intro h2,
    .split-heading h2,
    .experience-panel h2,
    .location-card h2,
    .final-cta h2 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
    .section-intro > p,
    .split-heading > div > p { font-size: 15px; }
    .awards::before { top: 85px; }
    .award-layout { gap: 38px; }
    .award-number { min-height: 220px; padding: 28px; border-radius: var(--radius); }
    .award-number strong { font-size: 7.5rem; }
    .award-number span { margin-left: 18px; font-size: 10px; }
    .award-row { grid-template-columns: 58px 1fr 38px; gap: 13px; min-height: 122px; }
    .award-year { font-size: 16px; }
    .award-row h3 { font-size: 13px; }
    .award-dot { width: 36px; height: 36px; font-size: 9px; }
    .award-links { justify-content: flex-start; flex-direction: column; gap: 14px; align-items: flex-start; }
    .values-grid { grid-template-columns: 1fr; margin-top: 46px; }
    .value-card:last-child { grid-column: auto; }
    .value-card { min-height: 280px; }
    .value-card h3 { margin-top: 75px; }
    .pizza-grid { grid-template-columns: 1fr; gap: 20px; }
    .pizza-image { aspect-ratio: 1 / 0.78; }
    .pizza-content p { min-height: 0; }
    .experience-photo { min-height: 390px; background-position: 36% center; }
    .experience-panel { min-height: auto; padding: 68px 24px; }
    .faq-layout { gap: 30px; }
    .faq summary { grid-template-columns: 28px 1fr 30px; gap: 8px; padding: 22px 0; font-size: 14px; }
    .faq details p { margin: -2px 8px 24px 36px; font-size: 13px; }
    .location-card { width: min(calc(100% - 24px), var(--container)); min-height: 0; padding: 46px 26px; border-radius: 30px; }
    .location-actions { display: grid; }
    .location-actions .button { width: 100%; }
    .location-mark { width: 190px; height: 190px; }
    .location-mark strong { font-size: 56px; }
    .final-cta { padding: 70px 0; }
    .final-cta .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-grid > :last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; align-items: flex-start; margin-top: 46px; }
    .whatsapp-float { display: none; }
    .mobile-order-bar {
        position: fixed;
        z-index: 950;
        inset: auto 0 0;
        display: block;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        background: rgba(9, 14, 50, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(14px);
    }
    .mobile-order-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
        color: var(--navy-deep);
        background: var(--yellow-strong);
        border-radius: 999px;
        font-size: 14px;
        font-weight: 800;
    }
}

@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; }
    .ticker-track { transform: none; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header,
    .ticker,
    .whatsapp-float,
    .mobile-order-bar,
    .hero-actions,
    .award-links,
    .center-action,
    .final-cta { display: none !important; }
    body { color: #000; background: #fff; }
    .hero, .awards, .experience, .location-card, .site-footer { color: #000; background: #fff; }
    .reveal { opacity: 1; transform: none; }
}
