/* ============================================================
   SWANA EVENTS — Editorial Premium Theme v3
   Dark base + white accents, rounded, animated, wedding feel
   ============================================================ */

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

:root {
    /* Dark base with warmer whites */
    --black: #060606;
    --black-soft: #0e0e0e;
    --black-card: #151515;
    --black-elevated: #1c1c1c;
    --border: rgba(229, 209, 156, 0.1);
    --border-strong: rgba(229, 209, 156, 0.22);

    /* White accent surfaces */
    --cream: #f8f4ee;
    --cream-soft: #f3efe7;

    /* Gold palette */
    --gold: #e5d19c;
    --gold-light: #f0e4c0;
    --gold-dark: #c4ab73;
    --gold-muted: rgba(229, 209, 156, 0.12);

    /* Text */
    --white: #f5f0e8;
    --white-90: rgba(245, 240, 232, 0.9);
    --white-70: rgba(245, 240, 232, 0.7);
    --white-50: rgba(245, 240, 232, 0.5);
    --white-30: rgba(245, 240, 232, 0.3);
    --white-15: rgba(245, 240, 232, 0.15);
    --white-08: rgba(245, 240, 232, 0.08);

    /* Fonts */
    --font-display: "fiona", Georgia, serif;
    --font-body: "parisine-std", "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --container: 1320px;
    --narrow: 820px;
    --gutter: clamp(1.5rem, 4vw, 2.5rem);
    --section-y: clamp(4rem, 8vh, 6.5rem);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.5s;
    --duration-slow: 1s;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--white-70);
    background: var(--black);
    overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }
img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}
a:hover { color: var(--gold-light); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================================================
   TYPOGRAPHY — Reduced, refined
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1.1rem; font-size: 0.95rem; line-height: 1.85; }

.text-large {
    font-size: clamp(1.05rem, 1.3vw, 1.15rem);
    line-height: 1.75;
    color: var(--white-90);
}

.text-highlight {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
    line-height: 1.5;
}

/* Display text — large editorial (toned down) */
.display-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
}

.display-text em { display: block; font-style: italic; }

/* Eyebrow */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow--no-line::before { display: none; }

/* ============================================================
   CUSTOM CURSOR — Gold dot follower
   ============================================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease), opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-dot,
body:hover .cursor-ring { opacity: 1; }

/* Grow on hover interactive elements */
.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--gold-light);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

/* Hide on touch devices */
@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   FLOATING WEDDING DECORATIONS
   ============================================================ */
.floating-decor {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

/* SVG ring decoration */
.decor-ring {
    width: 300px;
    height: 300px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 15vh;
    right: -100px;
    opacity: 0.04;
    pointer-events: none;
    animation: float-ring 20s ease-in-out infinite;
}

.decor-ring-2 {
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    bottom: 20vh;
    left: -60px;
    opacity: 0.03;
    pointer-events: none;
    animation: float-ring 25s ease-in-out infinite reverse;
}

/* Subtle sparkle dots */
.sparkle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: sparkle-fade 4s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; right: 15%; animation-delay: 1.3s; }
.sparkle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2.6s; }
.sparkle:nth-child(4) { top: 75%; left: 25%; animation-delay: 0.8s; }
.sparkle:nth-child(5) { top: 30%; right: 30%; animation-delay: 2s; }

@keyframes float-ring {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes sparkle-fade {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.4; transform: scale(1); }
}

/* ============================================================
   OVERLAP / BRIDGE ELEMENTS
   ============================================================ */

/* Images bridge: overlaps into the next section */
.overlap-bridge {
    position: relative;
    z-index: 2;
    margin-bottom: -3.5rem;
}

/* Section that receives overlap from above */
.section--overlap-top {
    padding-top: calc(var(--section-y) + 8rem);
}

/* Cards that overlap from cream into dark */
.section--overlap-cards {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: var(--section-y);
    margin-top: -2rem;
    background: transparent;
}

/* Image that bleeds downward out of its section */
.overlap-down {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ============================================================
   HERO WATERMARK LOGO — Swan icon, visible but subtle
   ============================================================ */
.hero-watermark {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.07;
    animation: float-ring 25s ease-in-out infinite;
}

.hero-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Remove the old hero logo */
.hero-logo { display: none; }

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */
.rule--gold {
    background: linear-gradient(90deg, var(--gold), transparent);
    width: 60px;
    height: 1px;
}

/* Corner marks — softer with radius */
.corner-marks { position: relative; }
.corner-marks::before,
.corner-marks::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.25;
    pointer-events: none;
}
.corner-marks::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; border-radius: 4px 0 0 0; }
.corner-marks::after { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; border-radius: 0 0 4px 0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    background: var(--black);
}

.marquee-inner {
    display: inline-flex;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-inner span {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    font-style: italic;
    color: var(--white-50);
    padding: 0 1.8rem;
    flex-shrink: 0;
}

.marquee-inner .marquee-dot {
    color: var(--gold);
    font-style: normal;
    font-size: 0.5rem;
    display: inline-flex;
    align-items: center;
    padding: 0 0.3rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS — Rounded
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    border-radius: 100px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(229, 209, 156, 0.2);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-arrow::after {
    content: '\2192';
    font-size: 0.9rem;
    transition: transform var(--duration) var(--ease-bounce);
}
.btn-arrow:hover::after { transform: translateX(5px); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: 80px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   HEADER — Solid dark background, always readable
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-08);
    transition: all var(--duration) var(--ease);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(6, 6, 6, 0.95);
}

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: all var(--duration) var(--ease);
}

/* Swan icon hidden by default, shown on scroll */
.logo-icon { display: none; }

.site-header.scrolled .logo-full { display: none; }
.site-header.scrolled .logo-icon { display: block; height: 32px; }

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-list .menu-item a {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-90);
    padding: 0.3rem 0;
    position: relative;
    transition: color var(--duration) var(--ease);
}

.nav-list .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--duration) var(--ease);
}

.nav-list .menu-item a:hover { color: var(--gold); }
.nav-list .menu-item a:hover::after,
.nav-list .menu-item.current-menu-item a { color: var(--gold); }
.nav-list .menu-item a:hover::after,
.nav-list .menu-item.current-menu-item a::after { width: 100%; }

/* Burger button — fixed position, outside header stacking context */
.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: var(--gutter);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 9999;
    width: 44px;
    height: 44px;
    -webkit-tap-highlight-color: transparent;
    transition: top var(--duration) var(--ease);
}

.site-header.scrolled ~ .menu-toggle {
    top: 0.5rem;
}

.burger {
    width: 26px;
    height: 18px;
    position: relative;
    margin: 0 auto;
}

.burger-line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
}

.burger-line--top { top: 0; }
.burger-line--mid { top: 50%; transform: translateY(-50%); }
.burger-line--bot { bottom: 0; width: 65%; }

/* Burger → Cross */
.menu-toggle.active .burger-line { background: var(--white); }
.menu-toggle.active .burger-line--top { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active .burger-line--mid { opacity: 0; transform: translateY(-50%) scaleX(0); }
.menu-toggle.active .burger-line--bot { bottom: auto; top: 50%; width: 100%; transform: translateY(-50%) rotate(-45deg); }

/* Mobile Menu — Full screen overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--black);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    width: 100%;
    max-width: 320px;
    padding: 0 1.5rem;
}

.mobile-logo {
    width: 50px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease) 0.15s;
}

.mobile-menu.active .mobile-logo {
    opacity: 0.5;
    transform: translateY(0);
}

/* Nav list */
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-nav-list .menu-item a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), color 0.2s ease, background 0.2s ease;
}

/* Staggered entrance */
.mobile-menu.active .mobile-nav-list .menu-item:nth-child(1) a { transition-delay: 0.1s; transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-nav-list .menu-item:nth-child(2) a { transition-delay: 0.16s; transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-nav-list .menu-item:nth-child(3) a { transition-delay: 0.22s; transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-nav-list .menu-item:nth-child(4) a { transition-delay: 0.28s; transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-nav-list .menu-item:nth-child(5) a { transition-delay: 0.34s; transform: translateY(0); opacity: 1; }

.mobile-nav-list .menu-item a:active,
.mobile-nav-list .menu-item a:hover {
    color: var(--gold);
    background: var(--gold-muted);
}

/* Current page in mobile */
.mobile-nav-list .menu-item.current-menu-item a {
    color: var(--gold);
}

/* Footer in mobile menu */
.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-strong);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease) 0.4s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-social a {
    color: var(--white-50);
    transition: color 0.2s ease;
}

.mobile-menu-social a:active { color: var(--gold); }

.mobile-contact-link {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--gold) !important;
}

.mobile-location {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--white-30);
    text-transform: uppercase;
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO — Asymmetric split
   ============================================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-media {
    position: relative;
    overflow: hidden;
}

.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero-media::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.05) 50%, rgba(6,6,6,0.4) 100%);
}

.hero-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    padding-top: 8rem;
    position: relative;
}

.hero-logo {
    width: 110px;
    margin-bottom: 2.5rem;
    opacity: 0.7;
    animation: fadeInUp 1s var(--ease) 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s var(--ease) 0.4s both;
}

.hero-title em {
    display: block;
    color: var(--gold);
    font-style: italic;
    font-size: 0.9em;
}

.hero-subtitle {
    font-size: 0.92rem;
    color: var(--white-70);
    max-width: 360px;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s var(--ease) 0.6s both;
}

.hero-content-side .btn {
    animation: fadeInUp 1s var(--ease) 0.8s both;
    align-self: flex-start;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
    animation: fadeInUp 1s var(--ease) 1s both;
}

.hero-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }

.hero-meta-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-50);
}

.hero-meta-value {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold);
}

.hero-content-side::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.1;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    max-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.88) 100%);
}

.page-hero-content {
    position: relative; z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) 2.5rem;
    width: 100%;
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: -0.02em;
}

.page-hero .eyebrow { margin-bottom: 0.8rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    position: relative;
    padding: var(--section-y) 0;
    overflow: hidden;
}

/* Allow overlap-bridge to bleed out of parent section */
.section:has(.overlap-bridge) {
    overflow: visible;
}

/* White accent section */
.section--cream {
    background: var(--cream);
    color: #3a3630;
}

.section--cream h2,
.section--cream h3 { color: var(--black); }
.section--cream p { color: #5a5549; }
.section--cream em { color: var(--gold-dark); }
.section--cream .eyebrow { color: var(--gold-dark); }
.section--cream .eyebrow::before { background: var(--gold-dark); }
.section--cream .formule-num { color: rgba(0, 0, 0, 0.05); }
.section--cream .formule-title { color: var(--black); }
.section--cream .formule-list li { color: #5a5549; border-color: rgba(0, 0, 0, 0.08); }
.section--cream .formule-price { color: #8a7340; }
.section--cream .btn-primary { background: var(--black); color: var(--gold); }
.section--cream .btn-primary:hover { background: var(--gold-dark); color: var(--black); }
.section--cream .corner-marks::before,
.section--cream .corner-marks::after { border-color: var(--gold-dark); }

.section-header {
    max-width: 620px;
    margin-bottom: 3.5rem;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header--center .eyebrow { justify-content: center; }
.section-header--center .eyebrow::before { display: none; }

.gold-separator { width: 40px; height: 1px; background: var(--gold); margin: 1.2rem auto 0; }
.section-label, .section-label--light, .section-label--center { display: none; }
.section-title--light, .section-title--light em { color: var(--white); }
.section-title--light em { color: var(--gold); }
.text-light { color: var(--white-70); }
.text-center { text-align: center; }
.section-cta { margin-top: 3rem; }

/* ============================================================
   EDITORIAL IMAGES — Rounded
   ============================================================ */
.editorial-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.editorial-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

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

.img-contained {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.img-contained .editorial-img { height: clamp(280px, 40vh, 450px); }

.img-dual {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 0.75rem;
}

.img-dual .editorial-img { height: clamp(260px, 38vh, 380px); }

/* ============================================================
   SPLIT LAYOUT — Rounded images
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.split--reverse { grid-template-columns: 7fr 5fr; }
.split--reverse .split-text { order: 2; }
.split--reverse .split-media { order: 1; }

.split-text { padding: 1.5rem 0; }

.split-media .editorial-img { height: clamp(320px, 45vh, 480px); }

/* ============================================================
   STACKED INTRO — Reduced
   ============================================================ */
.stacked-intro {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-y) var(--gutter) calc(var(--section-y) * 0.6);
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: end;
}

.stacked-intro-text .display-text { margin-bottom: 1.5rem; }
.stacked-intro-aside p { font-size: 0.9rem; color: var(--white-50); }

/* ============================================================
   SERVICES — Rounded cards
   ============================================================ */
.services-scroll-wrapper { overflow: visible; padding: 0 var(--gutter); }

.services-scroll {
    display: flex;
    gap: 1rem;
    max-width: var(--container);
    margin: 0 auto;
}

.service-card-editorial {
    flex: 1;
    min-width: 0;
    background: var(--black-card);
    border: 1px solid var(--border);
    padding: clamp(1.8rem, 2.5vw, 2.5rem);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.service-card-editorial:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card-editorial::before {
    content: attr(data-num);
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--white-08);
    position: absolute;
    top: -1rem; right: 0.8rem;
    line-height: 1;
    pointer-events: none;
}

.service-card-editorial h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-bottom: 0.8rem;
    position: relative;
}

.service-card-editorial p {
    font-size: 0.88rem;
    color: var(--white-50);
    margin-bottom: 1.2rem;
    position: relative;
}

.service-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    position: relative;
}

/* ============================================================
   QUOTE — Editorial
   ============================================================ */
.editorial-quote {
    padding: var(--section-y) 0;
    background: var(--black);
}

.editorial-quote .container { position: relative; }

.editorial-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
    max-width: 700px;
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid var(--gold);
}

.editorial-quote cite {
    display: block;
    margin-top: 1.5rem;
    padding-left: 2.5rem;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.editorial-quote .quote-num {
    position: absolute;
    top: -1.5rem; left: var(--gutter);
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--white-08);
    line-height: 0.7;
    pointer-events: none;
    user-select: none;
}

/* ============================================================
   GALLERY — Rounded
   ============================================================ */
.gallery-editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.6rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-column: span 5; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(2) { grid-column: span 4; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(3) { grid-column: span 3; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(4) { grid-column: span 7; height: clamp(280px, 38vh, 420px); }
.gallery-item:nth-child(5) { grid-column: span 5; height: clamp(280px, 38vh, 420px); }
.gallery-item:nth-child(6) { grid-column: span 3; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(7) { grid-column: span 4; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(8) { grid-column: span 5; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(9) { grid-column: span 4; height: clamp(280px, 38vh, 420px); }
.gallery-item:nth-child(10) { grid-column: span 3; height: clamp(280px, 38vh, 420px); }
.gallery-item:nth-child(11) { grid-column: span 5; height: clamp(280px, 38vh, 420px); }
.gallery-item:nth-child(12) { grid-column: span 7; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(13) { grid-column: span 5; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(14) { grid-column: span 3; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(15) { grid-column: span 4; height: clamp(300px, 40vh, 450px); }
.gallery-item:nth-child(16) { grid-column: span 5; height: clamp(300px, 40vh, 450px); }

.gallery-item-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 1.2rem;
    background: linear-gradient(to top, rgba(6,6,6,0.9) 0%, transparent 100%);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--duration) var(--ease);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; transform: translateY(0); }

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--white);
}

/* ============================================================
   HORIZONTAL SCROLL — Rounded
   ============================================================ */
.hscroll-section { padding: var(--section-y) 0; overflow: hidden; }

.hscroll-track {
    display: flex;
    gap: 0.8rem;
    padding: 0 var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.hscroll-track::-webkit-scrollbar { display: none; }
.hscroll-track:active { cursor: grabbing; }

.hscroll-item {
    flex-shrink: 0;
    width: clamp(260px, 28vw, 350px);
    scroll-snap-align: start;
    overflow: hidden;
}

.hscroll-item img {
    width: 100%;
    height: clamp(320px, 40vh, 440px);
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--duration-slow) var(--ease);
}

.hscroll-item:hover img { transform: scale(1.04); }

.hscroll-caption { padding: 0.8rem 0.2rem; }

.hscroll-caption h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white-90);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.hscroll-caption span { font-size: 0.72rem; color: var(--white-30); }

/* ============================================================
   PRESTATIONS — Rounded
   ============================================================ */
.formule-editorial {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.formule-editorial--reverse { grid-template-columns: 7fr 5fr; }
.formule-editorial--reverse .formule-media { order: 2; }
.formule-editorial--reverse .formule-body { order: 1; }

.formule-media { position: sticky; top: 90px; }
.formule-media .editorial-img { height: clamp(360px, 50vh, 520px); }

.formule-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--white-08);
    line-height: 0.8;
    letter-spacing: -0.04em;
    margin-bottom: -0.3rem;
}

.formule-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 0.4rem;
}

.formule-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.formule-list { list-style: none; margin: 1.5rem 0; }

.formule-list li {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--white-70);
    line-height: 1.6;
}

.formule-list li::before {
    content: '\2014';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.list-bullet { display: none; }

/* Options sur devis */
.formule-options {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gold-muted);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
}

.section--cream .formule-options {
    background: rgba(196, 171, 115, 0.08);
    border-color: rgba(196, 171, 115, 0.2);
}

.formule-options-title {
    font-size: 1.3rem !important;
    color: var(--gold) !important;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.section--cream .formule-options-title {
    color: var(--gold-dark) !important;
}

.formule-options-list {
    list-style: none;
    margin: 0;
}

.formule-options-list li {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--white-70);
    line-height: 1.6;
    font-style: italic;
}

.section--cream .formule-options-list li {
    color: #5a5549;
    border-color: rgba(0, 0, 0, 0.06);
}

.formule-options-list li::before {
    content: '+';
    color: var(--gold);
    flex-shrink: 0;
    font-style: normal;
    font-weight: 600;
}

/* ============================================================
   CONTACT FORM — Better contrast, rounded
   ============================================================ */
.contact-editorial {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.contact-info .text-large { max-width: 360px; }

.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }

.contact-detail-item { display: flex; align-items: center; gap: 0.8rem; }
.contact-detail-item svg { color: var(--gold); flex-shrink: 0; }
.contact-detail-item a { font-size: 0.9rem; color: var(--white-70); }
.contact-detail-item a:hover { color: var(--gold); }

.contact-image-accent { margin-top: 2.5rem; }
.contact-image-accent .filigrane { width: 90px; opacity: 0.05; margin: 0; }

/* Form — cream/white background for contrast */
.contact-form-wrapper {
    background: var(--cream);
    padding: clamp(2rem, 3.5vw, 3rem);
    border-radius: var(--radius-lg);
    position: relative;
}

.contact-form-wrapper .corner-marks::before,
.contact-form-wrapper .corner-marks::after {
    border-color: var(--gold-dark);
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a7368;
}

.required { color: var(--gold-dark); }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd5c8;
    background: var(--white);
    color: #2a2520;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    -webkit-appearance: none;
    border-radius: var(--radius-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(229, 209, 156, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b5ad9f;
    font-size: 0.85rem;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
    cursor: pointer;
    color: #7a7368;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c4ab73' fill='none' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit { margin-top: 0.3rem; }

.form-submit .btn {
    padding: 1rem;
    font-size: 0.62rem;
    border-radius: var(--radius-sm);
    background: var(--black);
    color: var(--gold);
}

.form-submit .btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 209, 156, 0.25);
}

.btn-loading svg { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.form-message {
    text-align: center;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    animation: fadeInUp 0.5s var(--ease) both;
}

.form-message.success {
    background: rgba(229, 209, 156, 0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(229, 209, 156, 0.25);
}

.form-message.error {
    background: rgba(200,50,50,0.08);
    color: #c44;
    border: 1px solid rgba(200,50,50,0.2);
}

/* ============================================================
   FEATURE CARDS — Rounded
   ============================================================ */
.feature-card {
    display: flex; align-items: flex-start; gap: 1.2rem;
    padding: 1.5rem; border: 1px solid var(--border);
    margin-bottom: 0.6rem; background: var(--black-card);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
}
.feature-card:hover { border-color: var(--gold); transform: translateX(4px); }
.feature-number { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); opacity: 0.5; line-height: 1; flex-shrink: 0; }
.feature-card h4 { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--white-70); margin-top: 0.2rem; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; }

/* ============================================================
   FOOTER — Better contrast
   ============================================================ */
.site-footer {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
}

.footer-top { padding: 3.5rem 0 2rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
}

.footer-logo { width: 90px; margin-bottom: 1rem; opacity: 0.8; }

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--white-70);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--white-50); font-size: 0.85rem; transition: color var(--duration) var(--ease); }
.footer-links a:hover { color: var(--gold); }

.footer-social { margin-top: 1.2rem; }
.footer-social a { color: var(--white-30); transition: color var(--duration) var(--ease); }
.footer-social a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.7rem; color: var(--white-30); margin: 0; }
.footer-credits a { color: var(--white-30); }
.footer-credits a:hover { color: var(--gold); }

/* ============================================================
   BACKWARD COMPAT
   ============================================================ */
/* Legal pages */
.legal-content { color: #3a3630; }
.legal-content h2 { font-size: 1.4rem; color: var(--black); margin: 2.5rem 0 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; color: var(--black); margin: 1.5rem 0 0.8rem; }
.legal-content p { color: #5a5549; font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.8rem; }
.legal-content ul, .legal-content ol { color: #5a5549; font-size: 0.9rem; line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.3rem; }
.legal-content a { color: var(--gold-dark); }
.legal-content strong { color: var(--black); }

.gold-separator--left { margin-left: 0; margin-right: auto; }
.gold-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.gold-line--center { margin-left: auto; margin-right: auto; }
.filigrane-container { margin-top: 1.5rem; }
.filigrane { width: 100px; margin: 0 auto; opacity: 0.08; }
.lesson-bullet { width: 14px; height: 14px; flex-shrink: 0; }
.lesson-item { display: flex; align-items: center; gap: 0.8rem; }
.lesson-item p { color: var(--white-70); margin: 0; font-size: 0.92rem; }
.calling-lessons { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-animate="fade-right"] { transform: translateX(-25px); }
[data-animate="fade-left"] { transform: translateX(25px); }
[data-animate="fade-scale"] { transform: scale(0.97); }
[data-animate].is-visible { opacity: 1; transform: none; }

[data-stagger] > * {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.24s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.36s; }
[data-stagger].is-visible > * { opacity: 1; transform: none; }

/* ============================================================
   LIGHTBOX — Rounded
   ============================================================ */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6,6,6,0.96);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    color: var(--white); font-size: 1.5rem;
    cursor: pointer; background: rgba(6,6,6,0.5); border: none;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.6; transition: opacity var(--duration) var(--ease);
}
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-media { height: 45vh; min-height: 300px; }
    .hero-content-side { padding: 2rem var(--gutter) 2.5rem; }
    .hero-content-side::before { display: none; }

    .split, .split--reverse,
    .formule-editorial, .formule-editorial--reverse,
    .contact-editorial {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split--reverse .split-text,
    .split--reverse .split-media,
    .formule-editorial--reverse .formule-media,
    .formule-editorial--reverse .formule-body { order: unset; }

    .formule-media { position: static; }
    .img-dual { grid-template-columns: 1fr 1fr; }
    .stacked-intro { grid-template-columns: 1fr; gap: 1.5rem; }

    .gallery-editorial { grid-template-columns: repeat(6, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 3; }
    .gallery-item:nth-child(2) { grid-column: span 3; }
    .gallery-item:nth-child(3) { grid-column: span 3; }
    .gallery-item:nth-child(4) { grid-column: span 3; }
    .gallery-item:nth-child(5) { grid-column: span 3; }
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .gallery-item:nth-child(7) { grid-column: span 2; }
    .gallery-item:nth-child(8) { grid-column: span 2; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-grid > :first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }

    .hero-logo { width: 80px; }
    .hero-meta { flex-direction: column; gap: 0.8rem; }

    .img-dual { grid-template-columns: 1fr; }
    .services-scroll { flex-direction: column; }

    /* Fix inline grids on mobile */
    .grid-2col { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .calling-lessons { margin-left: 0 !important; max-width: 100% !important; }

    /* Features 2-col to 1-col */
    .features-grid { grid-template-columns: 1fr !important; }
    .projects-grid-3col { grid-template-columns: 1fr !important; max-width: 400px !important; margin: 0 auto !important; }

    /* Fix quote on mobile */
    .editorial-quote .quote-num { font-size: 5rem; left: var(--gutter); }

    .gallery-editorial { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(n) { grid-column: span 1; height: clamp(180px, 26vh, 260px); }
    .gallery-item:nth-child(1) { grid-column: span 2; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.8rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > :first-child { grid-column: span 1; }
    .footer-bottom-inner { flex-direction: column; gap: 0.4rem; text-align: center; }

    .marquee-inner span { font-size: 0.85rem; padding: 0 1.2rem; }
    .page-hero { height: 40vh; min-height: 280px; }

    .editorial-quote blockquote { padding-left: 1.5rem; font-size: clamp(1.2rem, 3vw, 1.6rem); }
    .editorial-quote cite { padding-left: 1.5rem; }

    .decor-ring, .decor-ring-2, .sparkle { display: none; }

    /* Mobile menu adjustments */
    .mobile-nav-list .menu-item a { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .hero-media { height: 38vh; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .display-text { font-size: clamp(2rem, 8vw, 3rem); }
    .contact-form-wrapper { padding: 1.3rem; border-radius: var(--radius); }
    .hscroll-item { width: 80vw; }
    .service-card-editorial { border-radius: var(--radius); }
    .feature-card { border-radius: var(--radius-sm); }
}
