:root {
    --navy: #0a146e;
    --blue: #3157d5;
    --blue-light: #e8edff;
    --ink: #14182b;
    --muted: #646b7f;
    --line: #e3e6ee;
    --soft: #f6f8fc;
    --white: #ffffff;
    --success: #137a43;
    --danger: #b42318;
    --shadow: 0 22px 60px rgba(18, 29, 78, 0.10);
    --radius: 20px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

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

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

.section {
    padding: 100px 0;
    scroll-margin-top: 90px;
}

.section-soft {
    background: var(--soft);
}

.section-tight {
    padding: 55px 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 999;
    background: white;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--navy);
    font-weight: 700;
}

.skip-link:focus {
    top: 12px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 78px;
    background: rgba(10, 20, 110, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    transition: color .2s ease;
}

.main-nav a:hover {
    color: white;
}

.main-nav .nav-cta {
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    color: white;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 11px;
    right: 11px;

    height: 2px;
    margin: 0;

    border-radius: 10px;
    background: white;

    transition:
        transform .25s ease,
        opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 30px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    inset: 78px 0 0;
    z-index: 95;

    background: rgba(5, 8, 35, .55);

    opacity: 0;
    pointer-events: none;

    transition: opacity .25s ease;
}

body.menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* Hero */
.hero {
    min-height: 690px;
    padding-top: 78px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: 35% center;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 12, 63, .92) 0%, rgba(5, 12, 63, .76) 48%, rgba(5, 12, 63, .28) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .06));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 85px 0 75px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #dce4ff;
    font-size: .79rem;
    letter-spacing: .14em;
    font-weight: 800;
}

.eyebrow.dark {
    color: var(--blue);
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.6rem, 5.2vw, 4.9rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.hero-lead {
    max-width: 680px;
    margin: 26px 0 0;
    font-size: clamp(1.06rem, 1.8vw, 1.3rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, .90);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 0;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;
    background: var(--blue);
}

.button-primary:hover {
    background: #284cc7;
}

.button-secondary {
    color: white;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .42);
    backdrop-filter: blur(8px);
}

.button-light {
    color: var(--navy);
    background: white;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    margin-top: 58px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .24);
    max-width: 840px;
}

.hero-proof div {
    display: grid;
    gap: 2px;
}

.hero-proof strong {
    font-size: 1rem;
}

.hero-proof span {
    color: rgba(255, 255, 255, .66);
    font-size: .82rem;
}

/* Trust logos */
.trust {
    padding: 36px 0 42px;
    border-bottom: 1px solid var(--line);
    background: white;
    scroll-margin-top: 90px;
}

.mini-title {
    margin: 0 0 24px;
    color: #7c8294;
    text-align: center;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .12em;
}

.logo-grid,
.more-logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 20px;
}

.logo-grid img,
.more-logo-grid img {
    width: 100%;
    height: 54px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .62;
    mix-blend-mode: multiply;
    transition: filter .2s, opacity .2s;
}

.logo-grid img:hover,
.more-logo-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Checklist */
.checklist-strip {
    padding: 28px 0;
    background: #f3f6ff;
    border-bottom: 1px solid var(--line);
}

.checklist-strip-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;

    padding: 24px 28px;

    border: 1px solid #dce3fa;
    border-radius: 16px;

    background: white;
}

.checklist-strip-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: white;
    background: var(--navy);

    font-size: 1.3rem;
    font-weight: 800;
}

.checklist-strip-copy span {
    color: var(--blue);

    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.checklist-strip-copy h2 {
    margin: 3px 0 4px;

    font-size: 1.25rem;
    letter-spacing: -.02em;
}

.checklist-strip-copy p {
    margin: 0;

    color: var(--muted);
    font-size: .9rem;
}

.checklist-strip-button {
    white-space: nowrap;

    padding: 12px 18px;

    border-radius: 10px;

    color: white;
    background: var(--blue);

    text-decoration: none;
    font-size: .87rem;
    font-weight: 750;
}

/* Headings */
.split-intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 50px;
}

.split-intro h2,
.section-heading h2,
.restaurant h2,
.about h2,
.video-block h2,
.contact h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.split-intro>p,
.section-heading>p:last-child,
.about-copy>p,
.restaurant-copy>p,
.contact-copy>p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin-bottom: 16px;
}

.section-heading.compact {
    margin-bottom: 38px;
}

/* Value */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    min-height: 260px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.card-number {
    color: #9ba5d5;
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.value-card h3 {
    margin: 52px 0 12px;
    font-size: 1.22rem;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 335px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 8px 30px rgba(20, 24, 43, .04);
}

.service-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 48% 52%;
    min-height: 390px;
}

.service-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}

.service-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-light);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.service-card h3 {
    margin: 0 0 11px;
    font-size: 1.38rem;
    letter-spacing: -.02em;
}

.service-card p {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: .92rem;
}

.service-card ul {
    margin: 0 0 15px;
    padding-left: 18px;
    color: var(--muted);
    font-size: .9rem;
}

.text-link {
    margin-top: auto;
    color: var(--navy);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 800;
}

.text-link:hover {
    text-decoration: underline;
}

/* Restaurant */
.restaurant {
    color: white;
    background: linear-gradient(135deg, #09135f 0%, #17298e 100%);
}

.restaurant-wrap {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 80px;
    align-items: center;
}

.restaurant-copy>p {
    max-width: 730px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .76);
}

.check-list {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 28px 0 32px;
    padding: 0;
}

.check-list li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--navy);
    background: white;
    font-size: .76rem;
    font-weight: 900;
}

.restaurant-panel {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.panel-kicker {
    margin: 0;
    color: #cdd8ff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.panel-big {
    margin: 8px 0 6px;
    font-size: 3.7rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
}

.panel-copy {
    color: rgba(255, 255, 255, .72);
}

.restaurant-panel a {
    display: inline-block;
    margin-top: 12px;
    color: white;
    font-weight: 800;
    text-decoration: none;
}

/* Process */
.process {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.process-heading {
    max-width: 800px;
    margin-bottom: 46px;
}

.process-heading>p:last-child {
    max-width: 680px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

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

.process-grid article {
    position: relative;
    min-height: 270px;
    padding: 30px;
    overflow: hidden;

    border: 1px solid #e1e5f0;
    border-radius: 18px;
    background: white;

    box-shadow: 0 10px 35px rgba(18, 29, 78, .05);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.process-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--blue);
}

.process-grid article:hover {
    transform: translateY(-4px);
    border-color: #cbd4f4;
    box-shadow: 0 18px 45px rgba(18, 29, 78, .10);
}

.process-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;
    color: var(--blue);
    background: var(--blue-light);

    font-size: .76rem;
    font-weight: 800;
}

.process-grid h3 {
    margin: 30px 0 12px;
    font-size: 1.18rem;
    line-height: 1.3;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.65;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 74px;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo>img {
    width: 100%;
    max-height: 590px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    right: -22px;
    bottom: 26px;
    width: 145px;
    height: 145px;
    display: grid;
    place-content: center;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    color: white;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.experience-badge strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
}

.experience-badge span {
    font-size: .78rem;
    line-height: 1.25;
}

.about-copy>p {
    margin-top: 20px;
}

.director-card {
    margin-top: 28px;
    padding: 24px 26px;
    border-left: 4px solid var(--blue);
    background: white;
}

.director-card h3 {
    margin: 0;
    font-size: 1.28rem;
}

.director-card>p {
    margin: 2px 0 10px;
    color: var(--blue);
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.director-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-top: 22px;
}

.principles div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .55);
}

.principles strong,
.principles span {
    display: block;
}

.principles strong {
    margin-bottom: 5px;
    font-size: .91rem;
}

.principles span {
    color: var(--muted);
    font-size: .78rem;
}

/* Media */
.media-grid {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: 40px;
    align-items: end;
}

.video-block h2 {
    max-width: 760px;
    margin-bottom: 30px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #000;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.checklist-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.download-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 12px;
    color: white;
    background: var(--navy);
    font-size: 1.6rem;
}

.checklist-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.checklist-card p:not(.eyebrow) {
    color: var(--muted);
}

.checklist-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
}

.more-logo-grid {
    grid-template-columns: repeat(7, 1fr);
}

/* Press */
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 860px;
}

.press-grid a {
    overflow: hidden;
    height: 420px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(20, 24, 43, .08);
    background: white;
}

.press-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Contact */
.contact {
    color: white;
    background: #09104c;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 120px;
}

.contact-copy>p {
    margin-top: 20px;
    color: rgba(255, 255, 255, .72);
}

.contact-options {
    display: grid;
    gap: 10px;
    margin-top: 34px;
}

.contact-options a {
    display: grid;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    text-decoration: none;
    background: rgba(255, 255, 255, .05);
}

.contact-options span {
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-options strong {
    font-size: .98rem;
}

.region-note {
    font-size: .88rem !important;
}

.form-card {
    padding: 34px;
    border-radius: var(--radius);
    color: var(--ink);
    background: white;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 17px;
}

.field label {
    font-size: .83rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #ccd1dd;
    border-radius: 10px;
    padding: 12px 13px;
    color: var(--ink);
    background: white;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(49, 87, 213, .12);
}

.field textarea {
    resize: vertical;
    min-height: 125px;
}

.field-help {
    margin: -7px 0 18px;
    color: var(--muted);
    font-size: .76rem;
}

.button-submit {
    width: 100%;
}

.form-note {
    margin: 11px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: .75rem;
}

.form-message {
    display: none;
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: .86rem;
    font-weight: 650;
}

.form-message.success {
    display: block;
    color: var(--success);
    background: #eaf8f0;
}

.form-message.error {
    display: block;
    color: var(--danger);
    background: #fff0ee;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    transition: transform .18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
}

.whatsapp-float img {
    width: 62px;
    height: 62px;
}

/* Footer */
.site-footer {
    padding: 42px 0;
    color: white;
    background: #060b35;
}

.footer-grid {
    display: grid;
    grid-template-columns: .5fr 1fr .6fr;
    gap: 40px;
    align-items: center;
}

.footer-grid p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: .88rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    font-size: .84rem;
}

/* Responsive */
@media (max-width: 1000px) {
    .section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        right: 0;

        width: min(86vw, 340px);
        height: calc(100dvh - 78px);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;
        padding: 22px 24px 30px;

        background: #0a146e;

        transform: translateX(105%);
        transition: transform .28s ease;

        box-shadow: -18px 0 45px rgba(0, 0, 0, .22);

        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        display: block;
        padding: 18px 4px;

        color: white;
        font-size: 1rem;
        font-weight: 650;

        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .main-nav .nav-cta {
        margin-top: 24px;
        padding: 14px 18px;

        border: 0;
        border-radius: 10px;

        text-align: center;
        background: white;
        color: var(--navy);
    }

    .hero {
        min-height: 650px;
    }

    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .value-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card,
    .service-card.featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-card>img {
        aspect-ratio: 16/8.5;
    }

    .restaurant-wrap,
    .about-grid,
    .media-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-photo {
        max-width: 600px;
    }

    .contact-copy {
        position: static;
    }

    .more-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .section {
        padding: 66px 0;
    }

    .hero {
        min-height: 690px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(5, 12, 63, .93) 0%, rgba(5, 12, 63, .68) 100%);
    }

    .hero-content {
        padding: 60px 0 48px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 19px 22px;
        margin-top: 38px;
    }

    .split-intro {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 34px;
    }

    .logo-grid,
    .more-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 25px;
    }

    .value-grid,
    .service-grid,
    .process-grid,
    .form-row,
    .principles,
    .press-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 210px;
    }

    .value-card h3 {
        margin-top: 34px;
    }

    .service-body {
        padding: 24px;
    }

    .restaurant-wrap {
        gap: 32px;
    }

    .restaurant-panel {
        padding: 26px;
    }

    .experience-badge {
        right: 12px;
        bottom: 12px;
        width: 120px;
        height: 120px;
    }

    .media-grid {
        gap: 30px;
    }

    .press-grid a {
        height: 350px;
    }

    .process-grid article {
        min-height: auto;
    }

    .form-card {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float img {
        width: 56px;
        height: 56px;
    }

    .checklist-strip-inner {
        grid-template-columns: auto 1fr;
        gap: 16px;
        padding: 20px;
    }

    .checklist-strip-button {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}