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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

ul {
    list-style: none;
}

/* ── Geometric Background (fixed) ── */
.geometric-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 500px;
    height: 500px;
    background: #0d9488;
    top: -100px;
    right: -100px;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: #0d9488;
    bottom: 20%;
    left: -80px;
}

.geo-square {
    position: absolute;
    opacity: 0.05;
    background: #0d9488;
}

.geo-square--1 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-triangle {
    position: absolute;
    opacity: 0.04;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 0 173px 100px;
    border-color: transparent transparent #0d9488 transparent;
    top: 60%;
    left: 3%;
    transform: rotate(-20deg);
}

.geo-dots {
    position: absolute;
    opacity: 0.08;
    background-image: radial-gradient(circle, #0d9488 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    width: 180px;
    height: 180px;
    top: 15%;
    left: 8%;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Labels & Titles ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #0d9488;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 20px;
}

.text-teal {
    color: #0d9488;
}

.section-sub {
    font-size: 1.1rem;
    color: #475569;
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}

.btn--primary:hover {
    background: #0f766e;
    border-color: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: #0d9488;
    border-color: #0d9488;
}

.btn--outline:hover {
    background: #0d9488;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--white {
    background: #ffffff;
    color: #0d9488;
    border-color: #ffffff;
}

.btn--white:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn--ghost-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ── Navigation ── */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    transition: box-shadow 0.3s ease;
}

.nav-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0d9488;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(-8deg) scale(1.05);
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0f172a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #475569;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.06);
}

.nav-link--cta {
    background: #0d9488;
    color: #ffffff !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: #0f766e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0f172a;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #042f2e 0%, #134e4a 40%, #0f766e 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.08;
}

.hero-shape--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 3px solid #2dd4bf;
    top: -100px;
    right: -80px;
}

.hero-shape--rect {
    width: 200px;
    height: 200px;
    background: #2dd4bf;
    bottom: 10%;
    left: 45%;
    transform: rotate(45deg);
}

.hero-shape--diamond {
    width: 120px;
    height: 120px;
    background: #5eead4;
    top: 20%;
    left: 5%;
    transform: rotate(30deg);
}

.hero-shape--stripes {
    width: 300px;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(45, 212, 191, 0.05) 20px,
        rgba(45, 212, 191, 0.05) 40px
    );
    right: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: #5eead4;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-accent {
    color: #2dd4bf;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-image-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
    max-width: 440px;
    margin-left: auto;
}

.hero-img-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-img-card--1 {
    flex: 1.4;
}

.hero-img-card--2 {
    flex: 1;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img-card:hover img {
    transform: scale(1.03);
}

/* ── About ── */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.about-accent-block {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #0d9488;
    color: #ffffff;
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.3);
}

.about-accent-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.about-accent-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.about-text {
    padding: 16px 0;
}

.about-body {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-body em {
    color: #0d9488;
    font-style: normal;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teal-bg {
    background: #0d9488;
}

.slate-bg {
    background: #1e293b;
}

.about-feature-desc {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 2px;
}

/* ── Collections ── */
.collections {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-sub {
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.collection-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.collection-card--teal {
    border: 2px solid rgba(13, 148, 136, 0.15);
}

.collection-card--slate {
    border: 2px solid rgba(30, 41, 59, 0.1);
}

.collection-card--accent {
    border: 2px solid rgba(13, 148, 136, 0.15);
}

.collection-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.collection-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-img img {
    transform: scale(1.06);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.collection-card-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(13, 148, 136, 0.85);
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.collection-card-body {
    padding: 24px;
}

.collection-card-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.collection-card-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* ── Why Us ── */
.why-us {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #ffffff;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-num {
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(13, 148, 136, 0.2);
    line-height: 1;
    padding-top: 4px;
}

.why-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.why-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

.why-us-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 440px;
    object-fit: cover;
    aspect-ratio: 11/15;
}

.why-geo-shape {
    position: absolute;
    opacity: 0.12;
}

.why-geo-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #0d9488;
    top: -20px;
    right: -20px;
}

.why-geo-square {
    width: 80px;
    height: 80px;
    background: #0d9488;
    bottom: 40px;
    left: -20px;
    transform: rotate(20deg);
}

.why-geo-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 87px 50px;
    border-color: transparent transparent #0d9488 transparent;
    bottom: -10px;
    right: 20px;
    transform: rotate(-15deg);
}

/* ── Testimonial ── */
.testimonial {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, #042f2e 0%, #134e4a 100%);
    overflow: hidden;
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(45, 212, 191, 0.15);
    line-height: 1;
    position: absolute;
    top: -40px;
    left: -10px;
    pointer-events: none;
}

.testimonial-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.2);
    border: 2px solid rgba(45, 212, 191, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5eead4;
}

.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

.testimonial-location {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* ── Visit ── */
.visit {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #f8fafc;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info {
    padding: 16px 0;
}

.visit-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-detail strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.visit-detail a {
    color: #0d9488;
    transition: color 0.2s ease;
}

.visit-detail a:hover {
    color: #0f766e;
    text-decoration: underline;
}

.visit-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    min-height: 420px;
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #115e59 100%);
    overflow: hidden;
}

.cta-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    opacity: 0.1;
}

.cta-shape--1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #2dd4bf;
    top: -100px;
    left: -80px;
}

.cta-shape--2 {
    width: 150px;
    height: 150px;
    background: #5eead4;
    bottom: -40px;
    right: 10%;
    transform: rotate(30deg);
}

.cta-shape--3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    top: 20%;
    right: 25%;
}

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

.cta-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Footer ── */
.footer {
    position: relative;
    z-index: 1;
    background: #0f172a;
    color: #ffffff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0d9488;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 10px;
}

.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav strong,
.footer-contact strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #2dd4bf;
}

.footer-contact span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #2dd4bf;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p {
    margin: 0;
}

/* ── Mobile Menu ── */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 24px 24px;
    border-bottom: 2px solid rgba(13, 148, 136, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    gap: 4px;
}

.nav-links.mobile-open .nav-link {
    padding: 12px 16px;
    width: 100%;
}

.nav-links.mobile-open .nav-link--cta {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

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

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

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

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

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

    .hero-image-col {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }

    .about-grid,
    .why-us-inner,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-accent-block {
        right: 16px;
        bottom: -16px;
    }
}

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

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    .hero-image-col {
        display: none;
    }

    .visit-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .visit-cta {
        flex-direction: column;
    }

    .visit-cta .btn {
        width: 100%;
    }

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

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
