/* ══════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════ */
:root {
    --color-bg: #edece8;
    --color-surface: #fff;
    --color-text: #111;
    --color-text-secondary: #555;
    --color-text-muted: #999;
    --color-rule: #c8c6c0;
    --color-rule-light: #dddbd6;
    --color-accent: #9a475d;

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'DM Sans', 'Helvetica Neue', sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 96px;

    --section-pad: 124px;
    --container-max: 1192px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
.pad-x {
    padding-left: var(--section-pad);
    padding-right: var(--section-pad);
}

.section {
    padding: var(--space-2xl) var(--section-pad);
    border-top: 1px solid var(--color-rule);
}

.section-number {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 30px;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -1.5px;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 24px;
    line-height: 38px;
    font-weight: 400;
    color: var(--color-text-secondary);
    max-width: 615px;
}

.display-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -1.5px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.5px;
}

.body-lg {
    font-size: 24px;
    line-height: 38px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.body-md {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.body-sm {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--section-pad);
    height: 71px;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
    background: rgba(237, 236, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled .header-logo,
.site-header.scrolled .nav-link,
.site-header.scrolled .header-cta,
.site-header.scrolled .lang-switch__link {
    color: var(--color-text);
}

.site-header.scrolled .lang-switch__link {
    opacity: 0.35;
}

.site-header.scrolled .lang-switch__link--active {
    opacity: 1;
}

.site-header.scrolled .header-cta {
    border-color: var(--color-rule);
}

.header-logo {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 20px;
    transition: opacity 0.2s;
}

.nav-link:hover { opacity: 0.7; }

.header-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 20px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.header-cta:hover {
    background: #fff;
    color: var(--color-text);
    border-color: #fff;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.lang-switch__link {
    color: #fff;
    opacity: 0.4;
    padding: 6px 8px;
    transition: opacity 0.2s;
}

.lang-switch__link:hover { opacity: 0.7; }

.lang-switch__link--active {
    opacity: 1;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   HERO — FULL BLEED
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 980px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--section-pad);
    padding-top: 300px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 160px;
    font-weight: 400;
    line-height: 140px;
    letter-spacing: -4.8px;
    color: #fff;
}

.hero__title span { display: block; }

.hero__subtitle {
    margin-top: 40px;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
}

/* ══════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════ */
.intro {
    padding: 120px var(--section-pad) 72px;
    border-top: none;
}

.intro__grid {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    margin-top: var(--space-lg);
}

.intro__left,
.intro__right {
    flex: 1;
}

.intro__title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -1.5px;
}

.intro__right {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid var(--color-rule);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 20px;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    align-self: flex-start;
}

.btn-pill:hover {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

/* ══════════════════════════════════════════
   COLLAGE
   ══════════════════════════════════════════ */
.collage {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--section-pad) var(--space-2xl);
    border-top: none;
}

.collage__img {
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.collage__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage__img--left img {
    object-position: right;
}

.collage__img--left { width: 269px; height: 456px; }
.collage__img--center { width: 454px; height: 520px; }
.collage__img--right { width: 324px; height: 466px; }

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services__header {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.services__header .display-title { flex: 1; }

.services__header .body-lg { width: 510px; flex-shrink: 0; }

.services__cards {
    display: flex;
    gap: var(--space-md);
}

.service-card {
    flex: 1;
    background: var(--color-surface);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how__grid {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.how__image {
    width: 394px;
    height: 585px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.how__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.how__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.how__text .body-lg { width: 510px; }

.how__cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.how-card {
    background: var(--color-surface);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 349px;
    flex-shrink: 0;
    position: relative;
}

.how-card__step {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text-muted);
}


/* ══════════════════════════════════════════
   PACKAGES
   ══════════════════════════════════════════ */
.packages__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.packages__cards {
    display: flex;
    gap: var(--space-md);
}

.package-card {
    flex: 1;
    background: var(--color-surface);
    border-radius: 8px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.package-price {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.package-price__amount {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -1.2px;
}

.package-price__vat {
    font-size: 16px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.package-divider {
    height: 1px;
    background: var(--color-rule-light);
}

.package-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-secondary);
}

.package-feature {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.testimonials__collage {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--section-pad) var(--space-lg);
}

.testimonials__collage-img {
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.testimonials__collage-img--left { flex: 1; height: 286px; }
.testimonials__collage-img--center { width: 427px; height: 456px; }
.testimonials__collage-img--right { flex: 1; height: 360px; }

.testimonials__collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials__featured {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.testimonials__featured-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.testimonials__featured-name {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1px;
}

.testimonials__featured-meta {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-muted);
}

.testimonials__featured-meta a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.testimonials__featured-quote {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text-secondary);
    max-width: 647px;
}

.testimonials__others {
    display: flex;
    gap: 72px;
    padding-top: 48px;
}

.testimonial-side {
    flex: 1;
    border-left: 1px solid var(--color-text);
    padding-left: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-side__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.testimonial-side__name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.5px;
}

.testimonial-side__meta {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-muted);
}

.testimonial-side__meta a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* ══════════════════════════════════════════
   BRANDS / LOGOS
   ══════════════════════════════════════════ */
.brands {
    text-align: center;
}

.brands__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    padding: var(--space-md) 0;
    max-width: calc(6 * 120px + 5 * var(--space-md));
    margin: 0 auto;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #fff;
    border: 1px solid var(--color-rule-light);
    border-radius: 4px;
    padding: var(--space-sm);
    transition: border-color 0.3s;
}

.logo-card:hover {
    border-color: var(--color-rule);
}

.logo-card img {
    max-height: 56px;
    max-width: 80px;
    width: auto;
    height: auto;
    filter: grayscale(1);
    opacity: 0.55;
    transition: opacity 0.3s;
}

.logo-card:hover img {
    opacity: 0.85;
}

/* ══════════════════════════════════════════
   FAQ — ACCORDION
   ══════════════════════════════════════════ */
.faq__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.faq-list {
    max-width: 760px;
}

.faq-item {
    border-bottom: 1px solid var(--color-rule-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-rule-light);
}

.faq-item__q {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    gap: var(--space-md);
    user-select: none;
}

.faq-item__q:hover { color: var(--color-text-secondary); }

.faq-item__arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out);
}

.faq-item.is-open .faq-item__arrow {
    transform: rotate(180deg);
}

.faq-item__a {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.is-open .faq-item__a {
    max-height: 300px;
    padding-bottom: var(--space-md);
}

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact__grid {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.contact__left,
.contact__right {
    flex: 1;
}

.contact__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: var(--font-sans);
    font-size: 11px;
    line-height: 16px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    background: var(--color-surface);
    border: 1px solid var(--color-rule-light);
    border-radius: 3px;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-text);
}

.form-textarea {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.btn-send:hover { opacity: 0.85; }

/* Form validation */
.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error .form-select {
    border-color: var(--color-accent);
}

.form-error {
    font-size: 12px;
    color: var(--color-accent);
    margin-top: 2px;
    display: none;
}

.form-group.has-error .form-error {
    display: block;
}

/* Form success state — full-viewport confirmation */
.form-success {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.form-success.is-visible {
    display: flex;
}

.form-success__heading {
    font-family: var(--font-serif);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.form-success__body {
    font-family: var(--font-sans);
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--color-text-secondary);
    line-height: 1.5;
    max-width: 480px;
}

.form-success__sign {
    font-family: var(--font-serif);
    font-size: clamp(18px, 3vw, 28px);
    font-style: italic;
    color: var(--color-text);
    margin-top: var(--space-lg);
}

.form-success__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-xl);
    padding: 12px 28px;
    border: 1px solid var(--color-rule);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--color-text);
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.form-success__back:hover {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

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

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about__grid {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.about__images {
    flex: 1;
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.about__img {
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img--sm { width: 218px; height: 189px; }
.about__img--md { width: 247px; height: 362px; }
.about__img--lg { flex: 1; height: 305px; }

.about__text {
    width: 448px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about__title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -1.5px;
}

.about__text a:not(.btn-pill) {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--section-pad);
    font-size: 12px;
    line-height: 16px;
    color: var(--color-text-muted);
}

.site-footer__links {
    display: flex;
    gap: var(--space-sm);
}

.site-footer a:hover { color: var(--color-text); }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.site-header.scrolled .menu-toggle span {
    background: var(--color-text);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Tablet — switch to hamburger menu */
@media (max-width: 1024px) {
    :root {
        --section-pad: 48px;
    }

    /* Hide section nav, keep CTA + lang switch */
    .header-nav { display: none; }
    .menu-toggle { display: none; }

    /* Section spacing: 8px number→title, 24px title→subtitle */
    .section-number {
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .services__header { gap: var(--space-md); }
    .packages__header { gap: var(--space-md); }
    .testimonials__header { gap: var(--space-md); }
    .brands__header { gap: var(--space-md); }
    .faq__header { gap: var(--space-md); }
    .how__text { gap: var(--space-md); }

    /* Intro: tighter section-number to title (grid stays horizontal at tablet) */

    .display-title {
        font-size: 56px;
        line-height: 56px;
    }

    .section-title {
        font-size: 48px;
        line-height: 52px;
    }

    .hero { height: 700px; }
    .hero__title { font-size: 120px; line-height: 110px; letter-spacing: -3px; }
    .hero__content { padding-top: 200px; }

    .intro__title { font-size: 56px; line-height: 56px; }

    .collage__img--left { width: 200px; height: 340px; }
    .collage__img--center { width: 340px; height: 390px; }
    .collage__img--right { width: 240px; height: 350px; }

    .services__header {
        flex-direction: column;
    }

    .services__header .body-lg { width: auto; }

    .how__grid { flex-direction: column; }
    .how__image { width: 100%; height: 400px; }
    .how__text .body-lg { width: auto; }

    .how-card {
        width: calc(50% - 20px);
    }

    .packages__cards { flex-direction: column; }

    .testimonials__collage { padding-left: 0; padding-right: 0; }
    .testimonials__others { flex-direction: column; gap: var(--space-lg); }

    .contact__grid { flex-direction: column; }

    .about__grid { flex-direction: column; }
    .about__text { width: auto; }
    .about__title { font-size: 40px; line-height: 46px; }

    .logos-row {
        max-width: calc(4 * 120px + 3 * var(--space-md));
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-pad: 20px;
        --space-2xl: 64px;
    }

    /* Language switcher touch targets */
    .lang-switch__link {
        padding: 10px 12px;
        font-size: 16px;
    }

    /* Tighter section spacing: 8px between number→title, 24px between title→subtitle */
    .section-number {
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .display-title {
        font-size: 36px;
        line-height: 38px;
    }

    .hero { height: 500px; }
    .hero__title { font-size: 64px; line-height: 60px; letter-spacing: -2px; }
    .hero__content { padding-top: 160px; }
    .hero__subtitle { font-size: 14px; margin-top: 20px; }

    /* Intro section: match other sections' 8px/24px spacing */
    .intro__grid { flex-direction: column; gap: 0; }
    .intro__title { font-size: 36px; line-height: 38px; }
    .intro__left { margin-bottom: var(--space-md); }
    .intro__right .body-lg { margin-bottom: var(--space-md); }

    .body-lg { font-size: 18px; line-height: 28px; }

    /* Mosaic collage: tall left + two stacked right */
    .collage {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 150px 150px;
        gap: 8px;
        padding: var(--space-sm) var(--section-pad) var(--space-xl);
    }
    .collage__img {
        flex-shrink: unset;
    }
    .collage__img--left {
        grid-row: 1 / 3;
        width: 100%;
        height: 100%;
    }
    .collage__img--center,
    .collage__img--right {
        width: 100%;
        height: 100%;
    }

    .services__cards { flex-direction: column; }

    .how__image { height: 300px; }
    .how-card { width: 100%; }

    /* Mosaic testimonials: wide landscape top + two portraits below */
    .testimonials__collage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 200px;
        gap: 8px;
    }
    .testimonials__collage-img {
        flex-shrink: unset;
    }
    .testimonials__collage-img--center {
        grid-row: 1;
        grid-column: 1 / 3;
        width: 100%;
        height: 100%;
    }
    .testimonials__collage-img--left {
        grid-row: 2;
        grid-column: 1;
        width: 100%;
        height: 100%;
    }
    .testimonials__collage-img--right {
        grid-row: 2;
        grid-column: 2;
        width: 100%;
        height: 100%;
    }
    .testimonials__featured-name { font-size: 28px; line-height: 32px; }
    .testimonials__featured-quote { font-size: 16px; line-height: 26px; }

    .logos-row {
        gap: var(--space-xs);
        max-width: calc(3 * 100px + 2 * var(--space-xs));
    }
    .logo-card {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    .logo-card img {
        max-height: 40px;
        max-width: 64px;
    }

    /* Full-width form inputs and buttons */
    .form-row { flex-direction: column; }

    .contact__right {
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .btn-send {
        width: 100%;
        align-self: stretch;
    }

    /* Center all buttons */
    .btn-pill {
        align-self: center;
    }

    /* Mosaic about: two stacked left + tall right */
    .about__images {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        grid-template-rows: 140px 140px;
        gap: 8px;
    }
    .about__img--sm {
        grid-row: 1;
        grid-column: 1;
        width: 100%;
        height: 100%;
    }
    .about__img--md {
        grid-row: 2;
        grid-column: 1;
        width: 100%;
        height: 100%;
    }
    .about__img--lg {
        grid-row: 1 / 3;
        grid-column: 2;
        width: 100%;
        height: 100%;
    }
    .about__title { font-size: 32px; line-height: 36px; }

    .package-price__amount { font-size: 36px; line-height: 40px; }

    .site-footer {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    /* Section header spacing: 24px between title and subtitle */
    .services__header { gap: var(--space-md); margin-bottom: var(--space-md); }
    .packages__header { gap: var(--space-md); margin-bottom: var(--space-md); }
    .testimonials__header { gap: var(--space-md); margin-bottom: var(--space-md); }
    .brands__header { gap: var(--space-md); margin-bottom: var(--space-md); }
    .faq__header { gap: var(--space-md); margin-bottom: var(--space-md); }
    .how__text { gap: var(--space-md); }
}
