/* ============================================
   AURA VAULT - Editorial Style Prototype
   ============================================ */

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

:root {
    --color-black: #0f0f0f;
    --color-dark: #1a1a1a;
    --color-gray: #666;
    --color-light-gray: #999;
    --color-cream: #f5f3f0;
    --color-white: #ffffff;
    --color-accent: #c4a35a;

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

    --grid-gap: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.nav-center {
    display: flex;
    gap: 3rem;
}

.nav-center a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    transition: color 0.3s;
}

.nav-center a:hover {
    color: var(--color-black);
}

.nav-contact {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-black);
    transition: all 0.3s;
}

.nav-contact:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Section Title */
.section-title {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 3rem;
}

.title-number {
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.5rem;
}

/* Hero Editorial */
.hero-editorial {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto 1fr auto;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 12rem);
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4rem;
}

.issue-number {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 400px;
    line-height: 1.8;
}

.hero-visual {
    grid-row: 1 / 3;
    grid-column: 2;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-style: italic;
}

.hero-meta {
    grid-column: 1 / 3;
    display: flex;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-light-gray);
}

.meta-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

/* Editorial Intro */
.editorial-intro {
    padding: 8rem 3rem;
    background: var(--color-cream);
}

.intro-layout {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-number {
    font-size: 8rem;
    font-family: var(--font-serif);
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--color-gray);
    line-height: 1.9;
}

.intro-image {
    display: flex;
    flex-direction: column;
}

.image-frame {
    flex: 1;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-style: italic;
    min-height: 300px;
}

.image-caption {
    font-size: 0.8rem;
    color: var(--color-light-gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Ring Grid */
.ring-grid-section {
    padding: 8rem 0;
}

.ring-editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    max-width: 100%;
}

.ring-item {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-cream);
    overflow: hidden;
    cursor: pointer;
}

.ring-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.ring-item.tall {
    grid-row: span 2;
}

.ring-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gray);
    transition: transform 0.5s ease;
}

.ring-item:hover .ring-image {
    transform: scale(1.05);
}

.ring-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-item:hover .ring-details,
.ring-item:focus-within .ring-details {
    transform: translateY(0);
}

.ring-details h3 {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}

.ring-details p {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
}

.ring-item:hover .ring-details h3,
.ring-item:hover .ring-details p {
    transform: translateY(0);
    opacity: 1;
}

.ring-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ring-details p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.grid-cta {
    padding: 4rem 3rem;
    text-align: center;
}

.btn-view {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    transition: color 0.3s;
}

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

/* Quote Section */
.quote-section {
    padding: 10rem 3rem;
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 5%;
    font-family: var(--font-serif);
    font-size: 20rem;
    color: rgba(196, 163, 90, 0.1);
    line-height: 1;
}

.quote-section blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-section p {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-section cite {
    font-style: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    display: block;
    margin-top: 1rem;
}

/* Testimonials Editorial */
.testimonials-editorial {
    padding: 8rem 0;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-large {
    grid-row: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-cream);
}

.testimonial-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author {
    font-weight: 500;
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.testimonial-image {
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 2rem;
}

.testimonial-small {
    background: var(--color-cream);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-small p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-small .testimonial-author {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* About Editorial */
.about-editorial {
    padding: 8rem 3rem;
    background: var(--color-cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image .image-frame {
    min-height: 600px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .title-number {
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Editorial */
.contact-editorial {
    padding: 8rem 3rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content .title-number {
    margin-bottom: 1rem;
}

.contact-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-content > p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.contact-phone {
    font-family: var(--font-serif);
    font-size: 2rem;
    display: block;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.contact-phone:hover {
    color: var(--color-accent);
}

.contact-hours {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-schedule {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-black);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.btn-schedule:hover {
    background: var(--color-accent);
}

.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-black);
    position: relative;
}

.visual-element::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    background: var(--color-cream);
    z-index: -1;
}

/* Footer Editorial */
.footer-editorial {
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.logo-full {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-black);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: var(--color-light-gray);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .animate-in {
        opacity: 1;
        transform: none;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

/* Mobile Menu Toggle Button - Hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-black);
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 3px 0;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
}

.mobile-nav-content a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.mobile-nav-content a:hover,
.mobile-nav-content a:focus {
    color: var(--color-accent);
}

.mobile-nav-contact {
    margin-top: 1rem;
    padding: 1rem 2.5rem !important;
    border: 2px solid var(--color-black);
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Prevent body scroll when mobile nav is open */
body.mobile-nav-open {
    overflow: hidden;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .intro-layout {
        grid-template-columns: 1fr 1fr;
    }

    .intro-number {
        display: none;
    }

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

/* Tablets */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-row: auto;
        grid-column: auto;
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }

    .testimonial-large {
        grid-row: auto;
    }

    /* Improve touch targets for tablets */
    .nav-center a,
    .nav-contact {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Tablets and larger phones (768px breakpoint) */
@media (max-width: 768px) {
    /* Show mobile menu toggle, hide desktop nav */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-center,
    .nav-right {
        display: none;
    }

    /* Navigation adjustments */
    .nav {
        padding: 1rem 1.25rem;
    }

    /* Hero Section */
    .hero-editorial {
        padding: 5rem 1.25rem 2rem;
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        gap: 2rem;
    }

    .hero-text {
        padding-bottom: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-image-main {
        min-height: 300px;
    }

    .hero-meta {
        gap: 2rem;
        flex-wrap: wrap;
    }

    /* Section titles */
    .section-title {
        padding: 0 1.25rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Editorial Intro */
    .editorial-intro {
        padding: 4rem 1.25rem;
    }

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

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .intro-lead {
        font-size: 1.1rem;
    }

    /* Ring Grid */
    .ring-grid-section {
        padding: 4rem 0;
    }

    .ring-editorial-grid {
        grid-template-columns: 1fr;
    }

    .ring-item {
        aspect-ratio: 4/3;
    }

    .ring-item.large,
    .ring-item.tall {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    /* Show ring details on mobile (touch devices can't hover) */
    .ring-details {
        transform: translateY(0);
        background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 50%);
        padding: 1.5rem;
    }

    .ring-details h3,
    .ring-details p {
        transform: translateY(0);
        opacity: 1;
    }

    .ring-details h3 {
        font-size: 1.1rem;
    }

    .ring-details p {
        font-size: 0.9rem;
    }

    .grid-cta {
        padding: 2rem 1.25rem;
    }

    .btn-view {
        display: inline-block;
        padding: 1rem 1.5rem;
        min-height: 48px;
    }

    /* Quote Section */
    .quote-section {
        padding: 5rem 1.25rem;
    }

    .quote-section::before {
        font-size: 10rem;
        top: 1rem;
        left: 0;
    }

    .quote-section p {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .quote-section cite {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* Testimonials */
    .testimonials-editorial {
        padding: 4rem 0;
    }

    .testimonials-layout {
        padding: 0 1.25rem;
        gap: 1.25rem;
    }

    .testimonial-large {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }

    .testimonial-image {
        min-height: 200px;
        order: -1;
    }

    .testimonial-small {
        padding: 1.5rem;
    }

    .testimonial-small p {
        font-size: 1rem;
    }

    /* About Section */
    .about-editorial {
        padding: 4rem 1.25rem;
    }

    .about-layout {
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-image .image-frame {
        min-height: 300px;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    /* Contact Section */
    .contact-editorial {
        padding: 4rem 1.25rem;
    }

    .contact-layout {
        gap: 2rem;
    }

    .contact-content h2 {
        font-size: 3rem;
    }

    .contact-phone {
        font-size: 1.5rem;
        padding: 0.5rem 0;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }

    .btn-schedule {
        padding: 1rem 2rem;
        min-height: 48px;
        text-align: center;
    }

    .contact-visual {
        display: none;
    }

    /* Footer */
    .footer-editorial {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-nav a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Small phones (480px breakpoint) */
@media (max-width: 480px) {
    /* Base font size adjustment for readability */
    body {
        font-size: 15px;
    }

    /* Navigation */
    .nav {
        padding: 0.875rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    /* Mobile nav content */
    .mobile-nav-content a {
        font-size: 1.75rem;
    }

    /* Hero */
    .hero-editorial {
        padding: 4.5rem 1rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .issue-number {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-image-main {
        min-height: 250px;
    }

    .hero-meta {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .meta-value {
        font-size: 1rem;
    }

    /* Section Title */
    .section-title {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .title-number {
        font-size: 0.75rem;
    }

    /* Editorial Intro */
    .editorial-intro {
        padding: 3rem 1rem;
    }

    .intro-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .intro-lead {
        font-size: 1rem;
    }

    .image-frame {
        min-height: 220px;
    }

    .image-caption {
        font-size: 0.75rem;
    }

    /* Ring Grid */
    .ring-grid-section {
        padding: 3rem 0;
    }

    .ring-item {
        aspect-ratio: 1;
    }

    .ring-details {
        padding: 1.25rem;
    }

    .ring-details h3 {
        font-size: 1rem;
    }

    .ring-details p {
        font-size: 0.8rem;
    }

    .grid-cta {
        padding: 1.5rem 1rem;
    }

    /* Quote */
    .quote-section {
        padding: 4rem 1rem;
    }

    .quote-section::before {
        font-size: 8rem;
    }

    .quote-section p {
        font-size: 1.25rem;
    }

    /* Testimonials */
    .testimonials-editorial {
        padding: 3rem 0;
    }

    .testimonials-layout {
        padding: 0 1rem;
        gap: 1rem;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-image {
        min-height: 150px;
    }

    .testimonial-small {
        padding: 1.25rem;
    }

    .testimonial-small p {
        font-size: 0.95rem;
    }

    /* About */
    .about-editorial {
        padding: 3rem 1rem;
    }

    .about-image .image-frame {
        min-height: 250px;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-editorial {
        padding: 3rem 1rem;
    }

    .contact-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-phone {
        font-size: 1.35rem;
    }

    .contact-hours {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-schedule {
        width: 100%;
        display: block;
    }

    /* Footer */
    .footer-editorial {
        padding: 2rem 1rem 1rem;
    }

    .footer-top {
        margin-bottom: 1.5rem;
    }

    .logo-full {
        font-size: 1.25rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-nav {
        gap: 1rem;
    }

    .footer-nav a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ============================================
   TOUCH TARGET IMPROVEMENTS
   ============================================ */

/* Ensure all interactive elements have minimum 44px touch targets */
@media (max-width: 1024px) {
    a, button {
        min-height: 44px;
    }

    /* Logo touch target */
    .logo {
        padding: 0.5rem;
        margin: -0.5rem;
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================
   PREVENT HORIZONTAL OVERFLOW
   ============================================ */

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent text from causing overflow */
h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* ============================================
   LANDSCAPE PHONE ADJUSTMENTS
   ============================================ */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-editorial {
        min-height: auto;
        padding-top: 4rem;
    }

    .hero-grid {
        min-height: auto;
    }

    .mobile-nav-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .mobile-nav-content a {
        font-size: 1.25rem;
    }
}
