/* ============================================
   TRÈS CHIC SALON — Editorial / Magazine Archetype
   Iași, Romania
   ============================================ */

:root {
    --surface-primary: #FAFAF8;
    --surface-secondary: #F0EDE8;
    --surface-dark: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent: #8B2252;
    --accent-light: #B8446820;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-size-base: 1.05rem;
    --font-size-display: clamp(3rem, 2.5rem + 3vw, 6rem);
    --line-height-body: 1.8;
    --line-height-display: 1.05;
    --letter-spacing-display: -0.02em;
    --space-unit: 1.5rem;
    --section-padding: 6rem 2rem;
    --container-max: 1200px;
    --radius: 0;
    --shadow: none;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    background: var(--surface-primary);
    line-height: var(--line-height-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-primary);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: var(--line-height-display);
    letter-spacing: var(--letter-spacing-display);
}

h1 {
    font-size: var(--font-size-display);
}

h2 {
    font-size: clamp(2.2rem, 2rem + 2vw, 4rem);
}

h3 {
    font-size: clamp(1.3rem, 1.1rem + 0.5vw, 1.6rem);
    font-weight: 600;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-family: var(--font-sans);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LAYOUT — Article Container
   ============================================ */

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

/* ============================================
   CATEGORY LABEL — Magazine section headers
   Small sans-serif, uppercase, letter-spaced
   ============================================ */

.category-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ============================================
   ARTICLE HEADER — Magazine-style section header
   ============================================ */

.article-header {
    margin-bottom: 4rem;
}

.article-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.spread-intro {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

/* ============================================
   NAVIGATION — Minimal serif, vertical bars
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(8px);
    border-bottom-color: rgba(26, 26, 26, 0.1);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.header:not(.scrolled) .logo {
    color: #fff;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li + li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(26, 26, 26, 0.25);
    margin: 0 1.5rem;
}

.header:not(.scrolled) .nav-menu li + li::before {
    background: rgba(255, 255, 255, 0.35);
}

.nav-menu a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

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

.header:not(.scrolled) .nav-menu a {
    color: #fff;
}

.header:not(.scrolled) .nav-menu a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-social {
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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

.header:not(.scrolled) .nav-social {
    color: #fff;
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header:not(.scrolled) .nav-toggle span {
    background: #fff;
}

.nav-toggle.active span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.active span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU — Full-screen editorial
   ============================================ */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--surface-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 2rem;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu-tagline {
    margin-top: 3rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

/* ============================================
   HERO — Editorial Cover
   Large serif headline overlapping image
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
}

.hero-cover {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    z-index: 2;
    padding: 0 2rem 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero::after {
    content: '';
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.4) 40%,
        rgba(26, 26, 26, 0.15) 70%,
        transparent 100%
    );
    z-index: 1;
}

.hero .category-label {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-headline {
    color: #fff;
    font-size: clamp(3rem, 2.5rem + 4vw, 7rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* ============================================
   ABOUT — Feature Article Layout
   ============================================ */

.section-about {
    padding: var(--section-padding);
    padding-top: 8rem;
    background: var(--surface-primary);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.article-lede {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.article-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.article-body .article-lede {
    color: var(--text-primary);
}

.article-aside {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.aside-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.aside-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 200px;
}

.editorial-list {
    margin-top: 1.5rem;
}

.editorial-list li {
    font-family: var(--font-body);
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.editorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--accent);
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-caption {
    display: block;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

/* ============================================
   SERVICES — Magazine Spread / Rate Card
   ============================================ */

.section-services {
    padding: var(--section-padding);
    padding-top: 8rem;
    background: var(--surface-secondary);
}

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

.spread-header {
    margin-bottom: 4rem;
}

.services-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-category {
    padding: 2.5rem 2.5rem;
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.service-category:nth-child(odd) {
    border-right: 1px solid rgba(26, 26, 26, 0.12);
}

.service-category:last-child,
.service-category:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.service-category-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-entry {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.service-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(26, 26, 26, 0.25);
    min-width: 2rem;
    margin-bottom: 0.3em;
}

.service-price {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    white-space: nowrap;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0.25rem;
}

/* ============================================
   TEAM — Editorial Portraits
   ============================================ */

.section-team {
    padding: var(--section-padding);
    padding-top: 8rem;
    background: var(--surface-primary);
}

.team-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-portrait {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.team-portrait img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.6s ease;
}

.team-member:hover .team-portrait img {
    filter: grayscale(0%);
}

.team-bio h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.team-bio p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GALLERY — Editorial Photo Essay
   Irregular grid, captions beneath
   ============================================ */

.section-gallery {
    padding: var(--section-padding);
    padding-top: 8rem;
    background: var(--surface-secondary);
}

.photo-essay {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

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

.essay-photo figcaption {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.6rem;
    padding-bottom: 0.5rem;
}

/* Wide — spans full width */
.essay-wide {
    grid-column: 1 / -1;
}

.essay-wide img {
    aspect-ratio: 21/9;
}

/* Half — spans 2 of 3 columns or 1.5 */
.essay-half {
    grid-column: span 1;
}

.essay-half img {
    aspect-ratio: 4/5;
}

/* Third — one column */
.essay-third {
    grid-column: span 1;
}

.essay-third img {
    aspect-ratio: 1;
}

/* ============================================
   TESTIMONIALS — Pull Quotes
   Large italic serif quotes
   ============================================ */

.section-testimonials {
    padding: var(--section-padding);
    padding-top: 8rem;
    background: var(--surface-primary);
}

.pull-quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.pull-quote {
    padding: 3rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.pull-quote:last-child {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.pull-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1rem + 1vw, 2rem);
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 800px;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.pull-quote--featured p {
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem);
    color: var(--accent);
}

.pull-quote footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pull-quote footer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.pull-quote cite {
    font-style: normal;
}

.pull-quote cite strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.pull-quote cite span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ============================================
   CONTACT — Masthead Layout
   ============================================ */

.section-contact {
    padding: var(--section-padding);
    padding-top: 8rem;
    background: var(--surface-secondary);
}

.masthead-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.masthead-block {
    margin-bottom: 2.5rem;
}

.masthead-block h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.masthead-block p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.masthead-block a {
    color: var(--text-primary);
}

.masthead-block a:hover {
    color: var(--accent);
}

.masthead-social {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.masthead-social .separator {
    color: var(--text-secondary);
}

.masthead-social i {
    font-size: 0.85rem;
}

/* Contact Form — Editorial */
.masthead-form {
    background: var(--surface-primary);
    padding: 3rem;
}

.masthead-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

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

.form-group select {
    cursor: pointer;
}

.btn-editorial {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2.5rem;
    background: var(--text-primary);
    color: var(--surface-primary);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.btn-editorial:hover {
    background: var(--accent);
    color: #fff;
}

/* ============================================
   FOOTER — Masthead Style
   ============================================ */

.footer-masthead {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-top {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 400px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-columns h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-columns ul li {
    margin-bottom: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-columns a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-columns a:hover {
    color: #fff;
}

/* WhatsApp — Editorial serif link in masthead */
.footer-whatsapp {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-whatsapp a {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-whatsapp a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* ============================================
   REVEAL ANIMATIONS — 600ms ease
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children in grids */
.team-editorial .reveal:nth-child(2) { transition-delay: 0.1s; }
.team-editorial .reveal:nth-child(3) { transition-delay: 0.2s; }

.services-spread .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-spread .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-spread .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-spread .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-spread .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */

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

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

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

    .team-portrait img {
        transition: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE — Tablet (max 992px)
   ============================================ */

@media (max-width: 992px) {
    .nav-menu,
    .nav-social {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 2rem + 4vw, 4.5rem);
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-spread {
        grid-template-columns: 1fr;
    }

    .service-category:nth-child(odd) {
        border-right: none;
    }

    .team-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-editorial .team-member:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
    }

    .photo-essay {
        grid-template-columns: 1fr 1fr;
    }

    .essay-wide {
        grid-column: 1 / -1;
    }

    .essay-third {
        grid-column: span 1;
    }

    .essay-third:last-of-type {
        grid-column: 1 / -1;
    }

    .essay-third:last-of-type img {
        aspect-ratio: 21/9;
    }

    .masthead-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.25rem;
    }

    .article-container,
    .spread-container {
        padding: 0 1.25rem;
    }

    .nav {
        padding: 1rem 1.25rem;
    }

    .hero-content {
        padding: 0 1.25rem 3rem;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .section-about,
    .section-services,
    .section-team,
    .section-gallery,
    .section-testimonials,
    .section-contact {
        padding-top: 5rem;
    }

    .article-header {
        margin-bottom: 2.5rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .article-image {
        order: -1;
    }

    .services-spread {
        grid-template-columns: 1fr;
    }

    .service-category {
        padding: 2rem 0;
    }

    .service-category:nth-child(odd) {
        border-right: none;
    }

    .service-name {
        white-space: normal;
    }

    .team-editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-editorial .team-member:last-child {
        grid-column: 1;
        max-width: 100%;
    }

    .photo-essay {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .essay-wide,
    .essay-half,
    .essay-third {
        grid-column: 1;
    }

    .essay-wide img {
        aspect-ratio: 16/10;
    }

    .essay-half img {
        aspect-ratio: 4/3;
    }

    .essay-third img {
        aspect-ratio: 4/3;
    }

    .pull-quote {
        padding: 2rem 0;
    }

    .pull-quote p {
        font-size: clamp(1.15rem, 4vw, 1.5rem);
    }

    .pull-quote--featured p {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .masthead-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .masthead-form {
        padding: 2rem 1.5rem;
    }

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

    .footer-top {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}

/* ============================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================ */

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .aside-number {
        font-size: 2.5rem;
    }

    .article-aside {
        flex-direction: column;
        gap: 0.5rem;
    }
}
