/* ===================================
   スナック 凛 -rin-
   Warm & Welcoming — 気軽に寄れる大人の社交場
   =================================== */

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

:root {
    /* Brand green from sign */
    --green-deep: #1a5a3e;
    --green-dark: #14503a;
    --green-rich: #1f7050;
    --green-light: #7fc8a0;
    --green-muted: #5a9e7d;
    /* Warm tones matching interior */
    --warm-bg: #f7f3ee;
    --warm-card: #ffffff;
    --warm-section: #f0ebe3;
    --warm-dark: #2c2420;
    --warm-brown: #5c4a3a;
    --warm-amber: #c89664;
    --gold: #d4a847;
    --cream: #faf8f5;
    /* Text */
    --text-primary: #2c2420;
    --text-secondary: #6b5e54;
    --text-muted: #9a8e84;
    /* Borders & shadows */
    --border: rgba(44, 36, 32, 0.1);
    --border-hover: rgba(44, 36, 32, 0.2);
    --shadow-soft: 0 4px 20px rgba(44, 36, 32, 0.08);
    --shadow-glow: 0 8px 30px rgba(44, 36, 32, 0.12);
    /* Fonts */
    --font-jp: 'Shippori Mincho', 'Noto Sans JP', serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--warm-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Noise texture removed for warm light theme --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* --- Status Bar --- */
.status-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: var(--green-deep);
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.status-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem clamp(20px, 5vw, 60px);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-jp);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-open .status-dot {
    background: #5cdb7f;
    box-shadow: 0 0 8px rgba(92, 219, 127, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-closed .status-dot {
    background: #e86c5e;
    box-shadow: none;
    animation: none;
}

.status-closed .status-label {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}

.status-detail {
    color: rgba(255, 255, 255, 0.9);
}

.status-detail strong {
    color: #fff;
    font-weight: 600;
}

.status-time {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
}

@media (max-width: 480px) {
    .status-bar-inner {
        gap: 0.6rem;
        font-size: 0.75rem;
        padding: 0.45rem 15px;
    }

    .status-time {
        display: none;
    }
}

/* --- Screen reader only (visually hidden, accessible to crawlers & AT) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.6s var(--ease-out-expo);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 90, 62, 0.95);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(20px, 5vw, 60px);
    height: 90px;
    transition: height 0.6s var(--ease-out-expo);
}

.header.scrolled .nav-container {
    height: 70px;
}

.logo h1 {
    font-family: var(--font-jp);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.15em;
}

.logo span {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    color: var(--green-light);
    letter-spacing: 0.05em;
}

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

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    transition: color 0.4s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--green-light);
    transition: all 0.4s var(--ease-out-expo);
    transform: translateX(-50%);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 1px;
    background: var(--cream);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s var(--ease-out-expo);
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
}

.hero-carousel .carousel-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) saturate(0.85);
    transform: scale(1.05);
    transition: transform 8s linear;
}

.hero-carousel .carousel-slide.active img {
    transform: scale(1);
}

/* Hero overlays for depth */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(26, 90, 62, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(26, 90, 62, 0.5) 0%, rgba(26, 90, 62, 0.35) 50%, rgba(26, 90, 62, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-title {
    font-family: var(--font-jp);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
    color: var(--green-light);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 1s var(--ease-out-expo) 0.9s forwards;
}

/* Decorative vertical text */
.hero::after {
    content: '凛';
    position: absolute;
    right: clamp(20px, 5vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-jp);
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    z-index: 2;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    pointer-events: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--green-deep);
    color: #fff;
    border-color: var(--green-deep);
}

.btn-primary:hover {
    background: var(--green-rich);
    color: #fff;
    border-color: var(--green-rich);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140, 197, 168, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: rgba(240, 230, 211, 0.3);
}

.btn-secondary:hover {
    border-color: var(--cream);
    background: rgba(240, 230, 211, 0.05);
    transform: translateY(-2px);
}

/* --- Hero Carousel Controls --- */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-carousel-btn:hover {
    background: rgba(140, 197, 168, 0.15);
    border-color: var(--green-light);
    color: var(--cream);
    transform: translateY(-50%) scale(1.08);
}

.hero-carousel-prev { left: clamp(15px, 3vw, 40px); }
.hero-carousel-next { right: clamp(15px, 3vw, 40px); }

.hero-carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 4;
}

.hero-indicator {
    width: 32px;
    height: 2px;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
}

.hero-indicator.active {
    background: var(--green-light);
    width: 48px;
}

.hero-indicator:hover {
    background: rgba(140, 197, 168, 0.5);
}

/* --- Section Shared Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--green-light);
    margin: 1.5rem auto 0;
}

.section-title {
    font-family: var(--font-jp);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* --- Services Section --- */
.services {
    padding: 6rem 0;
    background: var(--warm-bg);
    position: relative;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--warm-card);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 90, 62, 0.03);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(44, 36, 32, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    border-color: var(--green-deep);
    background: var(--green-deep);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--green-light);
}

.service-card h3 {
    font-family: var(--font-jp);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* --- Pricing Section --- */
.pricing {
    padding: 6rem 0;
    background: var(--warm-section);
    position: relative;
}

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

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

.pricing-card {
    background: var(--warm-card);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.6s var(--ease-out-expo);
    overflow: hidden;
    border-radius: 12px;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.pricing-card:hover::after {
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.pricing-card.featured {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: #fff;
    transform: none;
}

.pricing-card.featured::after {
    background: var(--green-light);
    height: 2px;
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gold);
    color: #fff;
    padding: 0.3rem 1rem;
    font-family: var(--font-jp);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-family: var(--font-jp);
    font-size: 1rem;
    font-weight: 500;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.pricing-card.featured h3 {
    color: var(--green-light);
}

.price {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card.featured .amount {
    color: #fff;
}

.pricing-card.featured .currency {
    color: var(--green-light);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.currency {
    font-family: var(--font-jp);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '—';
    color: var(--green-light);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
    content: '◆';
    font-size: 0.5rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.pricing-note p {
    margin-bottom: 0.4rem;
}

/* --- Access & Contact Section --- */
.access-contact {
    padding: 6rem 0;
    background: var(--warm-bg);
    position: relative;
}

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

.access-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.access-info h2 {
    font-family: var(--font-jp);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.2rem;
}

.info-item i {
    color: var(--green-light);
    font-size: 0.9rem;
    margin-top: 0.4rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-jp);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-light);
    margin-bottom: 0.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

.info-item a {
    color: var(--green-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-item a:hover {
    color: var(--green-rich);
    border-color: var(--green-rich);
}

.map-wrapper {
    margin-top: 1.5rem;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    box-shadow: var(--shadow-soft);
}

/* --- Footer --- */
.footer {
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-family: var(--font-jp);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.footer-logo span {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--green-light);
}

.footer-logo p {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* --- Focus States --- */
.btn:focus-visible,
.hero-carousel-btn:focus-visible,
.hero-indicator:focus-visible {
    outline: 2px solid var(--green-deep);
    outline-offset: 2px;
}

/* --- Animations --- */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Scroll reveal */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s var(--ease-out-expo);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.services-grid .service-card.fade-in:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card.fade-in:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .pricing-card.fade-in:nth-child(1) { transition-delay: 0s; }
.pricing-grid .pricing-card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .pricing-card.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* === Responsive — Tablet === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* === Responsive — Mobile === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 90, 62, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s var(--ease-out-expo);
        z-index: 1000;
    }

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

    .nav-menu a {
        color: var(--cream);
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s var(--ease-out-expo);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: none; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: none; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: none; }

    .hero::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .access-contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .services,
    .pricing,
    .access-contact {
        padding: 5rem 0;
    }
}

/* === Responsive — Small phones === */
@media (max-width: 480px) {
    .hero-carousel-btn {
        width: 38px;
        height: 38px;
    }

    .hero-carousel-prev { left: 12px; }
    .hero-carousel-next { right: 12px; }

    .hero-indicator {
        width: 24px;
    }

    .hero-indicator.active {
        width: 36px;
    }

    .pricing-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* === Print === */
@media print {
    .header,
    .hero-carousel-btn,
    .hero-carousel-indicators,
    .hamburger {
        display: none !important;
    }

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

    .hero-content {
        position: static;
        color: #000;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section-title {
        color: #000;
    }

    .service-card,
    .pricing-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
