/* ============================================
   Master Blends Barbershop — Styles
   Palette: Plum (#4A1942) + Amber (#C8956C)
   Fonts: Lora (serif) + Montserrat (sans)
   ============================================ */

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

:root {
    --plum: #4A1942;
    --plum-deep: #2E0F28;
    --plum-light: #6B2D5C;
    --plum-muted: #8A3E75;
    --amber: #C8956C;
    --amber-light: #D4A87E;
    --amber-dark: #A87550;
    --cream: #F7F3EF;
    --cream-dark: #EDE8E2;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Typography ── */
.text-accent {
    color: var(--amber);
}

.text-accent-light {
    color: var(--amber-light);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn--amber {
    background: var(--amber);
    color: var(--white);
    border: 2px solid var(--amber);
}

.btn--amber:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.35);
}

.btn--dark {
    background: var(--plum);
    color: var(--white);
    border: 2px solid var(--plum);
}

.btn--dark:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum);
}

.btn--outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.875rem;
}

.btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

/* ── Section Headers ── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-eyebrow--light {
    color: var(--amber-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum);
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 540px;
}

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

/* ── Page Overlay (scroll reveal) ── */
.page-overlay {
    position: fixed;
    inset: 0;
    background: var(--plum);
    z-index: 9999;
    transform-origin: top;
    animation: overlayReveal 0.8s var(--ease-in-out) forwards;
}

@keyframes overlayReveal {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(0); }
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(247, 243, 239, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(74, 25, 66, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--plum);
    color: var(--amber);
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.logo:hover .logo-mark {
    background: var(--plum-deep);
    transform: rotate(-3deg);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--plum);
    letter-spacing: 0.02em;
}

.logo-mark--light {
    background: var(--amber);
    color: var(--plum);
}

.logo-text--light {
    color: var(--white);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a:not(.btn) {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s var(--ease-out);
}

.nav-desktop a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber);
    transition: width 0.3s var(--ease-out);
}

.nav-desktop a:not(.btn):hover {
    color: var(--plum);
}

.nav-desktop a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--plum);
    border-radius: 1px;
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active .hamburger span {
    opacity: 0;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-in-out);
}

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

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--cream);
    transition: color 0.3s var(--ease-out);
}

.mobile-nav-link:hover {
    color: var(--amber);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(1.25rem, 4vw, 3rem) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    border-radius: 0 0 0 30%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 30%;
    height: 70%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(200, 149, 108, 0.03) 40px,
        rgba(200, 149, 108, 0.03) 41px
    );
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--amber);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--plum);
    margin-bottom: 1.75rem;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-style: italic;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

.trust-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--amber);
}

.trust-item--divider {
    padding-left: 1.5rem;
    border-left: 1px solid var(--cream-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: clamp(480px, 70vh, 680px);
}

.hero-img-main {
    width: 75%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(74, 25, 66, 0.2);
    position: relative;
    z-index: 1;
}

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

.hero-img-float {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.15);
    z-index: 2;
    border: 4px solid var(--cream);
}

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

.float-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--plum);
    color: var(--cream);
    padding: 0.75rem 1rem;
    border-radius: 2px;
}

.float-badge-label {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.float-badge-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    z-index: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Marquee ── */
.marquee {
    background: var(--plum);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
    opacity: 0.85;
}

.marquee-dot {
    color: var(--amber) !important;
    opacity: 0.6 !important;
    font-size: 0.5rem !important;
}

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

/* ── Services ── */
.services {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.1);
    border-color: rgba(200, 149, 108, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1.25rem;
    transition: color 0.4s var(--ease-out);
}

.service-card:hover .service-card-num {
    color: rgba(200, 149, 108, 0.25);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgba(74, 25, 66, 0.06);
    color: var(--plum);
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-icon {
    background: var(--plum);
    color: var(--amber);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── About ── */
.about {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-primary {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(74, 25, 66, 0.12);
}

.about-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.15);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--plum);
    color: var(--cream);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    text-align: center;
    line-height: 1.4;
}

.about-content {
    padding: 1rem 0;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    margin: 2rem 0 2.5rem;
    list-style: none;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.value-item svg {
    color: var(--amber);
    flex-shrink: 0;
}

/* ── Gallery ── */
.gallery {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 25, 66, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover::after {
    opacity: 1;
}

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

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 16/12;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    aspect-ratio: 1;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 16/7;
}

/* ── CTA ── */
.cta {
    background: var(--plum);
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(200, 149, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 149, 108, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(200, 149, 108, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(247, 243, 239, 0.7);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ── Visit ── */
.visit {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.visit-info {
    padding-right: 1rem;
}

.visit-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.address-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-block svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--amber);
}

.address-block strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 0.25rem;
}

.address-block p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.address-block a {
    color: var(--plum);
    transition: color 0.3s var(--ease-out);
}

.address-block a:hover {
    color: var(--amber);
}

.visit-hours {
    background: var(--cream);
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-top: 1rem;
}

.hours-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 0.5rem;
}

.hours-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.visit-map {
    border-radius: 4px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.1);
}

/* ── Footer ── */
.footer {
    background: var(--plum-deep);
    color: var(--cream);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(247, 243, 239, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1rem;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    color: rgba(247, 243, 239, 0.6);
    font-style: italic;
    max-width: 280px;
    line-height: 1.6;
}

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

.footer-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 239, 0.7);
    transition: color 0.3s var(--ease-out);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(247, 243, 239, 0.4);
}

.footer-bottom a {
    color: rgba(247, 243, 239, 0.4);
    transition: color 0.3s var(--ease-out);
}

.footer-bottom a:hover {
    color: var(--amber);
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: 1;
        height: clamp(360px, 50vh, 500px);
    }

    .hero-img-main {
        width: 80%;
    }

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

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

    .about-visual {
        max-width: 560px;
        margin: 0 auto;
    }

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

    .visit-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
    }

    .hero::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        border-radius: 50% 50% 0 0;
    }

    .hero::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero-scroll {
        display: none;
    }

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

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

    .gallery-item--large {
        grid-column: 1 / 3;
    }

    .gallery-item--wide {
        grid-column: 1 / 3;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        aspect-ratio: 4/3;
    }

    .about-img-secondary {
        right: -10px;
        bottom: -20px;
        width: 55%;
    }

    .about-stat {
        left: -10px;
        top: -15px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: clamp(300px, 40vh, 400px);
    }

    .hero-img-main {
        width: 90%;
    }

    .hero-img-float {
        width: 65%;
        bottom: -10px;
    }

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

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1 / 2;
    }

    .marquee-track span {
        font-size: 0.75rem;
    }
}
