/**
 * ============================================
 * RESPALDO POLÍTICO - THE DOSSIER
 * Responsive Design System
 * ============================================
 * Mobile-first con breakpoints estratégicos
 * ============================================
 */

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */
.nav__mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-classic);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: 
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav__mobile--open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav__mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--beige-warm), transparent);
}

.nav__mobile a {
    font-family: var(--font-editorial);
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    color: var(--black-power);
    text-decoration: none;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--beige-warm);
    transition: 
        color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: block;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.nav__mobile a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--burgundy-power);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.nav__mobile a:active {
    color: var(--burgundy-power);
    transform: translateX(10px);
    border-color: var(--burgundy-power);
}

.nav__mobile a:active::before {
    width: 4px;
}

.nav__mobile a.nav__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding: 1.2em 2em;
    font-family: var(--font-mono);
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-classic);
    background: var(--burgundy-power);
    border: 2px solid var(--burgundy-power);
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 56px;
    box-shadow: 0 4px 20px rgba(84, 11, 14, 0.3);
}

.nav__mobile a.nav__mobile-cta::before {
    display: none;
}

.nav__mobile a.nav__mobile-cta:active {
    background: #6B0F12;
    border-color: #6B0F12;
    color: var(--cream-classic);
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(84, 11, 14, 0.2);
}

/* ============================================
   BREAKPOINT: SMALL TABLETS (640px)
   ============================================ */
@media (min-width: 640px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countries-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   BREAKPOINT: TABLETS (768px)
   ============================================ */
@media (min-width: 768px) {
    .stats-bar__inner {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   BREAKPOINT: SMALL DESKTOP (900px)
   ============================================ */
@media (min-width: 900px) {
    .masthead__nav {
        display: flex;
    }
    
    .masthead__menu-btn {
        display: none;
    }
}

/* ============================================
   BREAKPOINT: DESKTOP (1024px)
   ============================================ */
@media (min-width: 1024px) {
    .hero__main {
        grid-template-columns: 1.4fr 1fr;
        align-items: center;
    }
    
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .article__inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .article__inner--reverse {
        direction: rtl;
    }
    
    .article__inner--reverse > * {
        direction: ltr;
    }
    
    .coverage__inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-section__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .footer__grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

/* ============================================
   BREAKPOINT: LARGE DESKTOP (1280px)
   ============================================ */
@media (min-width: 1280px) {
    :root {
        --gutter: 3rem;
    }
    
    .hero__headline {
        font-size: clamp(3.5rem, 8vw, 7rem);
    }
}

/* ============================================
   BREAKPOINT: EXTRA LARGE (1536px)
   ============================================ */
@media (min-width: 1536px) {
    :root {
        --max-width: 1500px;
    }
}

/* ============================================
   MOBILE SPECIFIC (max-width)
   ============================================ */
@media (max-width: 899px) {
    .masthead__cta {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --gutter: 1.25rem;
        --space-4xl: 5rem;
        --space-3xl: 3.5rem;
    }
    
    /* Classified Section */
    .classified-section {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }
    
    .classified-bg__word,
    .classified-bg__number {
        display: none;
    }
    
    .classified-header {
        margin-bottom: var(--space-2xl);
    }
    
    .classified-header__meta {
        flex-direction: column;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
    }
    
    .classified-header__title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: var(--space-md);
    }
    
    .classified-header__deck {
        font-size: var(--text-base);
    }
    
    .classified-grid {
        gap: var(--space-2xl);
    }
    
    .dossier-fragment {
        margin-bottom: var(--space-xl);
    }
    
    .dossier-fragment__paper {
        padding: var(--space-lg);
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .dossier-fragment__header {
        flex-direction: column;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .dossier-stamp {
        align-self: flex-start;
        transform: rotate(5deg);
        font-size: var(--text-base);
        padding: 0.4em 0.8em;
    }
    
    .dossier-fragment__title {
        font-size: var(--text-xl);
    }
    
    .dossier-list__item {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .dossier-list__marker {
        font-size: var(--text-xs);
        width: 24px;
    }
    
    .paper-clip {
        display: none;
    }
    
    .booking-card {
        padding: 0;
    }
    
    .booking-card__layer,
    .booking-card__shadow {
        display: none;
    }
    
    .booking-card__main {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .booking-card__header {
        padding: var(--space-lg);
    }
    
    .booking-card__title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--space-sm);
    }
    
    .booking-card__subtitle {
        font-size: var(--text-sm);
    }
    
    .booking-card__body {
        padding: var(--space-lg);
    }
    
    .booking-cta {
        padding: 1.2em 1.5em;
        min-height: 56px;
    }
    
    .booking-cta__text {
        font-size: var(--text-sm);
    }
    
    .booking-card__note {
        font-size: 0.65rem;
        margin-top: var(--space-md);
    }
    
    .booking-card__meta-row {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
        text-align: center;
    }
    
    .booking-card__meta-item {
        font-size: var(--text-xs);
        justify-content: center;
    }
    
    /* Consent signature mobile */
    .consent-document__header {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
    
    .consent-signature__pad {
        height: 140px;
        border-width: 2px;
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .consent-signature__pad:active {
        border-color: var(--burgundy-power);
        background: rgba(84, 11, 14, 0.02);
    }
    
    .consent-signature__actions {
        flex-direction: column;
        gap: var(--space-md);
        align-items: stretch;
    }
    
    .consent-signature__clear {
        justify-content: center;
        padding: 0.8em 1.5em;
        min-height: 48px;
        font-size: var(--text-sm);
        border-width: 2px;
    }
    
    .consent-signature__date {
        text-align: center;
        font-size: var(--text-xs);
        padding: var(--space-sm) 0;
    }
    
    .consent-signature__label {
        font-size: var(--text-xs);
        margin-bottom: var(--space-md);
    }
    
    .classified-clipping {
        margin-top: var(--space-2xl);
    }
    
    .classified-clipping__paper {
        padding: var(--space-lg);
        transform: none;
    }
    
    .classified-clipping__tape {
        display: none;
    }
    
    /* Hero adjustments */
    .hero {
        padding-top: 72px;
        min-height: auto;
    }
    
    .hero__main {
        padding: var(--space-xl) 0;
        gap: var(--space-xl);
    }
    
    .hero__masthead-bar {
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-md);
    }
    
    .hero__masthead-bar .container {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
    
    .hero__edition,
    .hero__date {
        font-size: var(--text-xs);
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__headline {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: var(--space-lg);
        line-height: 1.1;
    }
    
    .hero__subhead {
        font-size: clamp(1rem, 4vw, 1.15rem);
        max-width: 100%;
        margin-bottom: var(--space-lg);
    }
    
    .hero__meta {
        justify-content: center;
        gap: var(--space-md);
        padding-top: var(--space-md);
    }
    
    .hero__meta-item {
        font-size: var(--text-xs);
        text-align: center;
    }
    
    .hero__visual {
        order: -1;
        margin-bottom: var(--space-lg);
    }
    
    .hero__image-frame {
        transform: none;
        padding: var(--space-sm);
    }
    
    .hero__image-frame::before {
        font-size: 0.65rem;
        padding: 0.2em 0.6em;
        top: -10px;
        left: 10px;
    }
    
    .hero__deco-number {
        display: none;
    }
    
    .stamp {
        display: none;
    }
    
    /* Stats */
    .stats-bar {
        padding: var(--space-lg) 0;
    }
    
    .stats-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
    
    .stat-item {
        padding: var(--space-lg) var(--space-md);
    }
    
    .stat-item__number {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--space-xs);
    }
    
    .stat-item__label {
        font-size: 0.65rem;
    }
    
    /* Lede */
    .lede__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    /* Modules */
    .modules-section {
        padding: var(--space-2xl) 0;
    }
    
    .modules__header {
        margin-bottom: var(--space-2xl);
    }
    
    .modules__number {
        font-size: 25vw;
    }
    
    .modules__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .modules-grid {
        gap: var(--space-md);
    }
    
    .module-card {
        padding: var(--space-lg);
        min-height: auto;
    }
    
    .module-card__number {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-sm);
    }
    
    .module-card__title {
        font-size: var(--text-lg);
        margin-bottom: var(--space-xs);
    }
    
    .module-card__subtitle {
        font-size: 0.65rem;
        margin-bottom: var(--space-sm);
    }
    
    .module-card__body {
        font-size: var(--text-sm);
        line-height: 1.6;
    }
    
    /* Articles */
    .article-section {
        padding: var(--space-2xl) 0;
    }
    
    .article__inner {
        gap: var(--space-xl);
    }
    
    .article__content {
        order: 2;
        max-width: 100%;
    }
    
    .article__figure {
        order: 1;
        margin-bottom: var(--space-lg);
    }
    
    .article__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: var(--space-md);
    }
    
    .article__deck {
        font-size: var(--text-base);
        margin-bottom: var(--space-md);
    }
    
    .article__body {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }
    
    .article__list {
        margin-bottom: var(--space-lg);
    }
    
    .article__list li {
        font-size: var(--text-sm);
        padding-left: 1.5em;
        margin-bottom: var(--space-xs);
    }
    
    .article__image-wrapper {
        padding: var(--space-xs);
    }
    
    .article__caption {
        font-size: 0.65rem;
        margin-top: var(--space-xs);
    }
    
    /* Blockquote */
    .blockquote-section {
        padding: var(--space-2xl) 0;
    }
    
    .blockquote {
        padding: 0 var(--space-lg);
    }
    
    .blockquote__text {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: var(--space-lg);
        line-height: 1.5;
    }
    
    .blockquote__cite {
        font-size: var(--text-xs);
    }
    
    /* Coverage */
    .coverage-section {
        padding: var(--space-2xl) 0;
    }
    
    .coverage__inner {
        gap: var(--space-xl);
    }
    
    .coverage__map {
        aspect-ratio: 1;
        margin-bottom: var(--space-lg);
    }
    
    .coverage__content {
        max-width: 100%;
    }
    
    .coverage__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--space-md);
    }
    
    .coverage__body {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }
    
    .countries-list {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
        margin-bottom: var(--space-lg);
    }
    
    .countries-list li {
        padding: var(--space-sm) 0;
        font-size: var(--text-sm);
    }
    
    /* Form */
    .form-section {
        padding: var(--space-2xl) 0;
    }
    
    .form-card {
        padding: var(--space-lg);
    }
    
    .form-group {
        margin-bottom: var(--space-md);
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1em;
        font-size: var(--text-base);
        min-height: 48px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .btn {
        width: 100%;
        padding: 1.2em 1.5em;
        min-height: 56px;
        font-size: var(--text-sm);
    }
    
    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding-bottom: var(--space-xl);
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__logo {
        font-size: var(--text-xl);
        margin-bottom: var(--space-sm);
    }
    
    .footer__tagline {
        font-size: var(--text-sm);
        line-height: 1.6;
    }
    
    .footer__title {
        font-size: var(--text-xs);
        margin-bottom: var(--space-md);
    }
    
    .footer__links li {
        margin-bottom: var(--space-xs);
    }
    
    .footer__links a {
        font-size: var(--text-sm);
        padding: var(--space-xs) 0;
        display: inline-block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        font-size: 0.65rem;
    }
    
    /* Stamp */
    .stamp {
        display: none;
    }
    
    /* Video Section */
    .video-section {
        padding: var(--space-2xl) 0;
    }
    
    .video-section__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--space-md);
    }
    
    .video-section__deck {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }
    
    .video-container {
        padding-bottom: 56.25%;
    }
    
    /* Lede */
    .lede {
        padding: var(--space-2xl) 0;
    }
    
    .lede__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--space-md);
    }
    
    .lede__body {
        font-size: var(--text-base);
        line-height: 1.8;
    }
}

/* ============================================
   VERY SMALL SCREENS (480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --gutter: 1rem;
        --space-4xl: 4rem;
        --space-3xl: 3rem;
        --space-2xl: 2rem;
    }
    
    .hero__headline {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        line-height: 1.1;
    }
    
    .hero__subhead {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }
    
    .hero__meta {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .hero__meta-item {
        width: 100%;
    }
    
    .kicker {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        padding: 0.25em 0.6em;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.1em 1.5em;
        min-height: 52px;
    }
    
    .lede__body {
        font-size: var(--text-base);
        line-height: 1.7;
    }
    
    .article__deck {
        font-size: var(--text-base);
        line-height: 1.6;
    }
    
    .nav__mobile {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .nav__mobile a {
        font-size: clamp(1.5rem, 7vw, 2rem);
        padding: var(--space-md) 0;
    }
    
    .dossier-fragment__paper {
        padding: var(--space-md);
    }
    
    .booking-card__header,
    .booking-card__body {
        padding: var(--space-md);
    }
    
    .consent-signature__pad {
        height: 120px;
    }
}

/* ============================================
   LANDSCAPE PHONES
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .hero__main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .hero__visual {
        order: 0;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */
@media (prefers-contrast: high) {
    :root {
        --gray-body: #4a4a4a;
        --beige-warm: #a89078;
    }
    
    .kicker {
        border-width: 2px;
    }
    
    .btn {
        border-width: 3px;
    }
    
    .module-card::before {
        width: 6px;
    }
}

/* ============================================
   DARK MODE (Future consideration)
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* 
     * El diseño actual es intencionalmente claro
     * para mantener la estética de periódico/dossier.
     * Dark mode podría implementarse como toggle opcional.
     */
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    /* Hide interactive elements */
    .masthead,
    .btn,
    .video-section,
    .form-section,
    .grain::before,
    .stamp,
    .hero__deco-number {
        display: none !important;
    }
    
    /* Reset backgrounds */
    body {
        font-size: 11pt;
        color: black;
        background: white !important;
    }
    
    .hero,
    .lede,
    .modules-section,
    .article-section,
    .coverage-section,
    .blockquote-section,
    .footer {
        background: white !important;
        color: black !important;
    }
    
    /* Typography adjustments */
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        page-break-after: avoid;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    /* Section breaks */
    .section,
    .article-section {
        padding: 1.5cm 0;
        page-break-inside: avoid;
    }
    
    /* Links */
    a {
        color: black !important;
        text-decoration: underline;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }
    
    /* Images */
    .article__image-wrapper::before {
        display: none;
    }
    
    .placeholder {
        background: #f0f0f0 !important;
        border: 1px solid #ccc;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS FOR MOBILE
   ============================================ */
@media (max-width: 767px) {
    /* Reduce grain intensity on mobile for better performance */
    .grain::before {
        opacity: 0.2;
    }
    
    /* Optimize animations */
    .reveal,
    .reveal--left,
    .reveal--right {
        will-change: transform, opacity;
    }
    
    /* Reduce backdrop blur on mobile for performance */
    .masthead--scrolled {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    /* Optimize transforms */
    .module-card,
    .btn,
    .booking-card__main {
        will-change: transform;
    }
    
    /* Reduce shadow complexity on mobile */
    .module-card:hover {
        box-shadow: 0 10px 30px rgba(13, 13, 13, 0.15);
    }
    
    .booking-card__main {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .dossier-fragment__paper {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal,
    .reveal--left,
    .reveal--right,
    .reveal--scale,
    .reveal--blur {
        opacity: 1;
        transform: none;
        filter: none;
    }
    
    [data-stagger-item] {
        opacity: 1;
        transform: none;
    }
    
    .grain::before {
        animation: none;
        display: none;
    }
    
    .hero__content,
    .hero__visual,
    .hero__masthead-bar,
    .stamp {
        opacity: 1;
        animation: none;
    }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch */
    .module-card:hover {
        transform: none;
        box-shadow: var(--shadow-paper);
    }
    
    .module-card:hover::before {
        height: 0;
    }
    
    .module-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-soft);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .article__image-wrapper:hover {
        transform: none;
    }
    
    .article__image-wrapper:hover::before {
        transform: translate(10px, 10px);
    }
    
    /* Larger touch targets - minimum 44x44px */
    .masthead__link {
        padding: 0.75em 0.5em;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .masthead__menu-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
    }
    
    .masthead__cta {
        min-height: 44px;
        padding: 0.8em 1.5em;
    }
    
    .countries-list li {
        padding: var(--space-sm) 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .footer__links a {
        padding: var(--space-xs) 0;
        display: inline-block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dossier-list__item {
        min-height: 60px;
        padding: var(--space-md);
    }
    
    .booking-card__meta-item {
        min-height: 44px;
        padding: var(--space-xs) 0;
    }
    
    /* Better touch feedback */
    .consent-signature__clear:active {
        transform: scale(0.95);
        background: rgba(84, 11, 14, 0.1);
    }
    
    .booking-cta:active {
        transform: scale(0.98);
    }
    
    /* Prevent text selection on interactive elements */
    .btn,
    .masthead__link,
    .nav__mobile a,
    .booking-cta {
        -webkit-tap-highlight-color: rgba(84, 11, 14, 0.2);
        -webkit-touch-callout: none;
    }
}

/* ============================================
   FOCUS VISIBLE (Accessibility)
   ============================================ */
:focus-visible {
    outline: 3px solid var(--burgundy-power);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 3px solid var(--burgundy-power);
    outline-offset: 3px;
}

.masthead__link:focus-visible,
.footer__links a:focus-visible {
    outline: 2px solid var(--burgundy-power);
    outline-offset: 2px;
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
    outline: none; /* Custom focus styles in main.css */
}
