/* ==========================================
   JAPON ROLLS - PAGE TRAITEUR
========================================== */

:root {
    --black: #111111;
    --dark: #181818;
    --white: #ffffff;
    --off-white: #f6f5f1;
    --gray: #6c6c6c;
    --light-gray: #e8e8e8;
    --red: #d9262e;
    --red-dark: #b91f26;

    --container: 1180px;
    --radius: 4px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}


/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3 {
    line-height: 1.1;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.3rem;
}

.section-label,
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.light-label {
    color: #ff7479;
}


/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 14px 28px;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    border: 2px solid transparent;
    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-secondary {
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--red);
    color: var(--white);
}


/* ==========================================
   HERO
========================================== */

.catering-hero {
    min-height: 750px;
    padding: 100px 5%;
    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #f7f6f2 0%,
            #f7f6f2 55%,
            #eeeeea 55%
        );
}

.catering-hero::before {
    content: "TRAITEUR";
    position: absolute;
    left: -30px;
    bottom: -70px;

    font-size: clamp(7rem, 17vw, 18rem);
    font-weight: 900;
    letter-spacing: -0.07em;

    color: rgba(0, 0, 0, 0.025);

    pointer-events: none;
}

.catering-hero__content {
    width: min(100%, 1300px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;

    position: relative;
    z-index: 1;
}

.catering-hero__text {
    max-width: 680px;
}

.hero-description {
    max-width: 600px;
    margin-top: 30px;

    font-size: 1.2rem;
    color: #4e4e4e;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 35px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 34px;

    font-size: 0.87rem;
    font-weight: 700;
}

.catering-hero__image {
    min-height: 560px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.catering-hero__image img {
    position: relative;
    z-index: 2;

    width: min(100%, 620px);

    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.18));

    animation: plateFloat 4s ease-in-out infinite;
}

.image-circle {
    position: absolute;
    width: 480px;
    height: 480px;

    border-radius: 50%;

    background: var(--red);

    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes plateFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* ==========================================
   INTRO
========================================== */

.intro-section {
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;
    align-items: end;
}

.intro-grid h2 {
    max-width: 700px;
}

.intro-grid > div:last-child {
    max-width: 520px;

    font-size: 1.15rem;
    color: var(--gray);
}


/* ==========================================
   EVENT TYPES
========================================== */

.events-section {
    padding: 120px 0;
    background: var(--off-white);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: #d9d8d4;
    border: 1px solid #d9d8d4;
}

.event-card {
    min-height: 275px;

    padding: 38px 30px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.event-card:hover {
    position: relative;
    z-index: 2;

    background: var(--black);
    color: var(--white);

    transform: translateY(-6px);
}

.event-number {
    margin-bottom: 60px;

    font-size: 0.75rem;
    font-weight: 800;
    color: var(--red);
}

.event-card h3 {
    margin-bottom: 14px;
}

.event-card p {
    font-size: 0.92rem;
    color: var(--gray);
}

.event-card:hover p {
    color: #c7c7c7;
}


/* ==========================================
   SERVICES
========================================== */

.services-section {
    padding: 130px 0;

    background: var(--black);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
    align-items: center;
}

.services-content p {
    max-width: 510px;
    margin: 30px 0;

    color: #bcbcbc;
    font-size: 1.05rem;
}

.services-list {
    border-top: 1px solid #333;
}

.service-item {
    display: grid;
    grid-template-columns: 65px 1fr;

    gap: 24px;

    padding: 30px 0;

    border-bottom: 1px solid #333;
}

.service-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #555;
    border-radius: 50%;

    font-size: 0.7rem;
    font-weight: 800;

    color: #ff7479;
}

.service-item h3 {
    margin-bottom: 8px;
}

.service-item p {
    max-width: 500px;
    color: #a9a9a9;
}


/* ==========================================
   QUOTE FORM
========================================== */

.quote-section {
    padding: 130px 0;
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.quote-intro {
    position: sticky;
    top: 40px;
    align-self: start;
}

.quote-intro > p {
    max-width: 480px;
    margin-top: 25px;

    color: var(--gray);
    font-size: 1.05rem;
}

.quote-info {
    margin-top: 45px;
    padding-top: 35px;

    border-top: 1px solid var(--light-gray);
}

.quote-info h3 {
    margin-bottom: 18px;
    font-size: 1rem;
}

.quote-info ul {
    padding-left: 20px;
    color: var(--gray);
}

.quote-info li {
    margin-bottom: 8px;
}

.quote-form {
    padding: 50px;

    background: var(--off-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #d5d5d1;
    outline: none;

    background: var(--white);

    font-family: inherit;
    font-size: 1rem;

    transition: border-color 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
}

.submit-btn {
    width: 100%;
    margin-top: 5px;
}

.form-note {
    margin-top: 15px;

    text-align: center;
    font-size: 0.82rem;

    color: var(--gray);
}


/* ==========================================
   FINAL CTA
========================================== */

.final-cta {
    padding: 110px 0;

    text-align: center;

    background: var(--red);
    color: var(--white);
}

.final-cta-content {
    max-width: 880px;
}

.final-cta span {
    display: block;

    margin-bottom: 20px;

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.final-cta h2 {
    margin-bottom: 22px;
}

.final-cta p {
    max-width: 650px;

    margin: 0 auto 35px;

    font-size: 1.1rem;

    color: rgba(255, 255, 255, 0.86);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1050px) {

    .catering-hero__content,
    .services-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .catering-hero {
        padding-top: 80px;
    }

    .catering-hero__text {
        max-width: 800px;
    }

    .catering-hero__image {
        min-height: 500px;
    }

    .image-circle {
        left: 50%;
        right: auto;

        transform: translate(-50%, -50%);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-intro {
        position: static;
    }

}


@media (max-width: 768px) {

    .catering-hero {
        padding: 70px 6% 50px;

        background: var(--off-white);
    }

    h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 7px;
    }

    .catering-hero__image {
        min-height: 380px;
    }

    .image-circle {
        width: 330px;
        height: 330px;
    }

    .intro-section,
    .events-section,
    .services-section,
    .quote-section {
        padding: 80px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: auto;
    }

    .event-number {
        margin-bottom: 35px;
    }

    .services-grid,
    .quote-grid {
        gap: 55px;
    }

    .quote-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .final-cta {
        padding: 80px 0;
    }

}