/* ==========================================================
   La Boulangerie — Style System
   Variables → Reset → Typography → Layout → Components → 
   Sections → Utilities → Media Queries
   ========================================================== */

/* --- Variables --- */
:root {
    --dark:       #1a1208;
    --charcoal:   #1c1c1c;
    --white:      #ffffff;
    --off-white:  #faf7f2;
    --cream:      #FDF5E6;
    --mid-gray:   #7a7068;
    --border:     #e6e0d6;
    --accent:     #c9a84c;
    --accent-dk:  #a88a35;
    --deep-plum:  #3d1f47;
    --warm-brown: #5D4037;

    --font-disp:  'Cormorant Garamond', Georgia, serif;
    --font-body:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-hero:     clamp(64px, 14vw, 160px);
    --text-section:  clamp(40px, 7vw, 72px);
    --text-heading:  clamp(28px, 5vw, 48px);
    --text-item:     clamp(22px, 4vw, 36px);
    --text-body:     clamp(15px, 1.8vw, 17px);
    --text-small:    clamp(12px, 1.4vw, 14px);
    --text-eyebrow:  clamp(10px, 1.2vw, 12px);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-body);
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-disp);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

blockquote, cite {
    font-style: normal;
}


/* --- Page Loader --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    pointer-events: none;
}

.loader-bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.page-loader.loading .loader-bar {
    width: 70%;
    transition: width 1.8s var(--ease);
}

.page-loader.done .loader-bar {
    width: 100%;
    transition: width 0.3s var(--ease);
}

.page-loader.hidden {
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}


/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    z-index: 900;
    background: rgba(26, 18, 8, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.35s var(--ease);
}

.site-header.scrolled {
    background: rgba(26, 18, 8, 0.97);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 clamp(16px, 4vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-fleur {
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-disp);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
}

.header-nav {
    display: none;
    gap: 28px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    transition: color 0.25s var(--ease);
}

.header-nav a:hover {
    color: var(--accent);
}

.header-email {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.02em;
    transition: color 0.25s var(--ease);
}

.header-email:hover {
    color: var(--white);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}


/* --- Mobile Drawer --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 950;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--dark);
    z-index: 960;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-close {
    align-self: flex-end;
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-links a {
    font-family: var(--font-disp);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.25s var(--ease);
}

.drawer-links a:hover {
    color: var(--accent);
}

.drawer-cta {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}

.drawer-social {
    margin-top: auto;
    display: flex;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.drawer-social a {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    transition: color 0.25s var(--ease);
}

.drawer-social a:hover {
    color: var(--accent);
}


/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.25s var(--ease);
}

.btn-primary:hover {
    background: var(--accent-dk);
}

.btn-ghost {
    display: inline-block;
    color: var(--white);
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 18px 44px;
    font-size: 16px;
}


/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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


/* ==========================================================
   SECTIONS
   ========================================================== */

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(26,18,8,0.92) 0%, rgba(26,18,8,0.60) 50%, rgba(26,18,8,0.20) 100%),
        linear-gradient(to top, rgba(26,18,8,0.85) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: calc(66px + 40px) clamp(20px, 5vw, 60px) clamp(40px, 6vh, 80px);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    max-width: 680px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.40);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-disp);
    font-size: var(--text-hero);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: var(--text-body);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 420px;
}

.badge-label {
    display: block;
    font-size: var(--text-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

.badge-source {
    display: block;
    font-family: var(--font-disp);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
}

.badge-quote {
    display: block;
    font-family: var(--font-disp);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.55);
}


/* --- Contrast Strip --- */
.contrast-strip {
    background: var(--accent);
    padding: 14px 20px;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}

.strip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(26,18,8,0.35);
    flex-shrink: 0;
}


/* --- About (full-bleed asymmetric split) --- */
.about {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

.about-image-col {
    height: 400px;
    overflow: hidden;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.about-text-col {
    background: var(--off-white);
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
}

.about-pull-quote {
    font-family: var(--font-disp);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark);
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    margin-bottom: 40px;
}

.about-pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: 400;
    color: var(--mid-gray);
    margin-top: 12px;
    letter-spacing: 0.02em;
}

.about-story h2 {
    font-size: var(--text-heading);
    color: var(--dark);
    margin-bottom: 20px;
}

.about-story p {
    color: var(--mid-gray);
    margin-bottom: 16px;
    line-height: 1.75;
    max-width: 560px;
}

.about-story p:last-child {
    margin-bottom: 0;
}


/* --- Creations (gallery grid) --- */
.creations {
    background: var(--white);
    padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
}

.creations-header {
    max-width: 560px;
    margin-bottom: 48px;
}

.creations-header h2 {
    font-size: var(--text-section);
    color: var(--dark);
    margin-bottom: 16px;
}

.creations-header p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.creations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.creation-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.creation-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.creation-item:hover img {
    transform: scale(1.03);
}

.creation-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26,18,8,0.82) 0%, transparent 100%);
}

.creation-name {
    display: block;
    font-family: var(--font-disp);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.creation-desc {
    display: block;
    font-size: var(--text-small);
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    font-weight: 300;
}


/* --- Flavors (numbered editorial list, dark bg) --- */
.flavors {
    background: var(--dark);
    padding: clamp(60px, 8vw, 120px) 0;
}

.flavors-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.flavors-intro {
    margin-bottom: 48px;
}

.flavors-intro h2 {
    font-size: var(--text-section);
    color: var(--white);
    margin-bottom: 16px;
}

.flavors-intro p {
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    max-width: 600px;
}

.flavors-list {
    border-top: 1px solid rgba(255,255,255,0.10);
}

.flavor-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.flavor-number {
    font-family: var(--font-disp);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

.flavor-name {
    display: block;
    font-family: var(--font-disp);
    font-size: var(--text-item);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 6px;
}

.flavor-desc {
    display: block;
    font-size: var(--text-small);
    color: rgba(255,255,255,0.42);
    font-weight: 300;
    line-height: 1.5;
}

.flavor-signature .flavor-name {
    color: var(--accent);
}

.flavor-signature .flavor-number {
    color: rgba(201,168,76,0.35);
}


/* --- Reviews (featured quote + grid) --- */
.reviews {
    background: var(--off-white);
    padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 48px);
}

.reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.review-featured {
    margin-bottom: 56px;
}

.review-featured blockquote {
    font-family: var(--font-disp);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    padding-left: 24px;
    border-left: 4px solid var(--accent);
}

.review-featured cite {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-small);
    color: var(--mid-gray);
    margin-top: 16px;
    padding-left: 24px;
    letter-spacing: 0.02em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
    border-bottom: none;
}

.review-card {
    padding: 28px 24px;
    border-bottom: 1px solid var(--border);
}

.review-card p {
    font-family: var(--font-disp);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 10px;
}

.review-card cite {
    font-family: var(--font-body);
    font-size: var(--text-small);
    color: var(--mid-gray);
}


/* --- Gallery Strip --- */
.gallery-strip {
    background: var(--off-white);
    padding: 4px 0;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll img {
    flex-shrink: 0;
    width: 280px;
    height: 220px;
    object-fit: cover;
    scroll-snap-align: start;
}


/* --- Order (how to order) --- */
.order {
    background: var(--white);
    padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 48px);
}

.order-inner {
    max-width: 900px;
    margin: 0 auto;
}

.order-content h2 {
    font-size: var(--text-section);
    color: var(--dark);
    margin-bottom: 16px;
}

.order-content > p {
    color: var(--mid-gray);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 48px;
}

.order-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
}

.order-method {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.order-method h3 {
    font-size: var(--text-item);
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.order-method p {
    color: var(--mid-gray);
    font-size: var(--text-small);
    margin-bottom: 8px;
    line-height: 1.6;
}

.order-link {
    color: var(--accent-dk);
    font-weight: 500;
    font-size: var(--text-small);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s var(--ease);
    word-break: break-all;
}

.order-link:hover {
    border-color: var(--accent);
}


/* --- Final CTA (dark centered) --- */
.final-cta {
    background: var(--dark);
    padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
    text-align: center;
}

.cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: var(--text-section);
    color: var(--white);
    margin-bottom: 16px;
    font-style: italic;
}

.cta-inner p {
    color: rgba(255,255,255,0.50);
    margin-bottom: 36px;
    line-height: 1.75;
}


/* --- Footer --- */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) clamp(80px, 10vw, 100px);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo-name {
    display: block;
    font-family: var(--font-disp);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-logo-sub {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

.footer-tagline {
    color: rgba(255,255,255,0.35);
    font-size: var(--text-small);
    margin-top: 12px;
}

.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    line-height: 1;
}

.footer-contact a {
    color: var(--accent);
    font-size: var(--text-small);
    transition: color 0.25s var(--ease);
    word-break: break-all;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255,255,255,0.35);
    font-size: var(--text-small);
    margin-top: 6px;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: var(--text-small);
    transition: color 0.25s var(--ease);
}

.footer-social-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}


/* --- Mobile Email Bar --- */
.mobile-email-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--accent);
    padding: 0;
}

.mobile-email-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
}


/* ==========================================================
   MEDIA QUERIES
   ========================================================== */

/* Tablet (640px+) */
@media (min-width: 640px) {

    .header-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .about {
        grid-template-columns: 50fr 50fr;
    }

    .about-image-col {
        height: auto;
        min-height: 500px;
    }

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

    .creation-large {
        grid-column: 1 / -1;
        height: 420px;
    }

    .creation-item {
        height: 320px;
    }

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

    .review-card:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .gallery-scroll img {
        width: 320px;
        height: 260px;
    }

    .order-methods {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .order-method {
        border-bottom: none;
        padding: 28px 24px 28px 0;
    }

    .order-method:not(:last-child) {
        border-right: 1px solid var(--border);
        padding-right: 24px;
    }

    .order-method:not(:first-child) {
        padding-left: 24px;
    }

    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

/* Desktop (960px+) */
@media (min-width: 960px) {

    .header-email {
        display: flex;
    }

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

    .site-footer {
        padding-bottom: clamp(48px, 6vw, 80px);
    }

    .about {
        grid-template-columns: 55fr 45fr;
    }

    .about-image-col {
        min-height: 650px;
    }

    .creations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .creation-large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        height: auto;
    }

    .creation-item {
        height: 320px;
    }

    .flavor-item {
        grid-template-columns: 60px 1fr;
        gap: 32px;
        padding: 32px 0;
    }

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

    .review-card {
        border-right: 1px solid var(--border);
    }

    .review-card:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .review-card:last-child {
        border-right: none;
    }

    .gallery-scroll img {
        width: 360px;
        height: 280px;
    }
}

/* Wide (1200px+) */
@media (min-width: 1200px) {

    .hero-title {
        font-size: clamp(100px, 12vw, 160px);
    }

    .about-text-col {
        padding: 96px 88px;
    }

    .creation-large {
        height: auto;
    }
}
