/* ============================================
   Exclusive 414 — Stylesheet
   Deep Navy + Warm Gold | Fresh & Airy
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-navy:        #1a2744;
    --color-navy-light:  #243352;
    --color-navy-dark:   #111c30;
    --color-gold:        #d4a843;
    --color-gold-light:  #e8c96a;
    --color-gold-dark:   #b8912e;
    --color-cream:       #faf6f0;
    --color-cream-dark:  #f0e8da;
    --color-white:       #ffffff;
    --color-text:        #2c3e50;
    --color-text-light:  #6b7f94;
    --color-text-muted:  #94a3b8;
    --color-border:      #e8e0d4;
    --color-card-bg:     #ffffff;
    --color-overlay:     rgba(26, 39, 68, 0.6);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  30px;

    --shadow-sm:  0 2px 8px rgba(26, 39, 68, 0.06);
    --shadow-md:  0 8px 30px rgba(26, 39, 68, 0.10);
    --shadow-lg:  0 16px 50px rgba(26, 39, 68, 0.14);
    --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1200px;
    --header-height: 76px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Background Decorative Shapes ---------- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bg-shape--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.bg-shape--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 39, 68, 0.04) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
}

.bg-shape--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
    top: 50%;
    right: 5%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(250, 246, 240, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-navy);
    transition: var(--transition);
}

.logo:hover { color: var(--color-navy-light); }

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

.logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--color-navy);
    color: var(--color-gold);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo:hover .logo__mark {
    background: var(--color-gold);
    color: var(--color-navy);
}

.logo--light .logo__mark {
    background: var(--color-gold);
    color: var(--color-navy);
}

.logo--light:hover .logo__mark {
    background: var(--color-white);
}

.logo__text--accent {
    color: var(--color-gold);
}

.logo--light .logo__text--accent {
    color: var(--color-gold-light);
}

/* ---------- Navigation ---------- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--color-navy);
    background: rgba(26, 39, 68, 0.05);
}

.nav-cta {
    margin-left: 8px;
}

/* ---------- Nav Toggle (Mobile) ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover { background: rgba(26, 39, 68, 0.05); }

.nav-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(26, 39, 68, 0.25);
}

.btn--primary:hover {
    background: var(--color-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 39, 68, 0.3);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--color-navy);
    border: 1.5px solid var(--color-border);
}

.btn--ghost:hover {
    border-color: var(--color-navy);
    background: rgba(26, 39, 68, 0.03);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 80px;
    background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, rgba(212, 168, 67, 0.06) 100%);
    overflow: hidden;
    z-index: 1;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero__left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge__dot {
    width: 7px;
    height: 7px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__right {
    position: relative;
    z-index: 2;
}

.hero-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520 / 620;
    background: var(--color-navy);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---------- Floating Stat Cards ---------- */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.float-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 39, 68, 0.07);
    border-radius: var(--radius-sm);
    color: var(--color-navy);
    flex-shrink: 0;
}

.float-card__icon--gold {
    background: rgba(212, 168, 67, 0.15);
    color: var(--color-gold-dark);
}

.float-card__body {
    display: flex;
    flex-direction: column;
}

.float-card__number {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-navy);
    line-height: 1.2;
}

.float-card__label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

.float-card--1 {
    top: 12%;
    left: -30px;
    animation-delay: 0s;
}

.float-card--2 {
    bottom: 28%;
    left: -20px;
    animation-delay: 1.3s;
}

.float-card--3 {
    bottom: 6%;
    right: -20px;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- Hero Wave ---------- */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- Section Labels & Titles ---------- */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 14px;
}

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

.section-header--center {
    text-align: center;
}

.section-header--center .section-desc {
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-title--light { color: var(--color-white); }

.section-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-light);
    max-width: 600px;
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: var(--color-cream);
    position: relative;
    z-index: 1;
}

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

.about__image-wrap {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 500 / 600;
}

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

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-cream);
    aspect-ratio: 280 / 340;
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: var(--color-navy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about__experience-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.about__experience-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about__content { padding: 20px 0; }

.about__text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-item__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-sm);
    color: var(--color-gold);
    flex-shrink: 0;
}

.highlight-item__title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.highlight-item__desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

/* ---------- Services ---------- */
.services {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border);
    background: var(--color-white);
}

.service-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 400 / 260;
}

.service-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__img-wrap img {
    transform: scale(1.05);
}

.service-card__body {
    padding: 28px;
}

.service-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: var(--radius-sm);
    color: var(--color-gold);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--color-gold);
    color: var(--color-navy);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 100px 0;
    background: var(--color-navy);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-us__text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

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

.why-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.why-list__item strong {
    color: var(--color-white);
}

.why-list__bullet {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us__visual { position: relative; }

.why-us__image-stack {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 420 / 520;
}

.why-us__image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us__stat-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.why-us__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    line-height: 1;
}

.why-us__stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

/* ---------- Visit ---------- */
.visit {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    position: relative;
    z-index: 1;
}

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit__text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-list__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-list__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-list__label svg {
    color: var(--color-gold-dark);
}

.contact-list__item dd {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.contact-list__item dd a {
    color: var(--color-navy);
    font-weight: 600;
    transition: var(--transition);
}

.contact-list__item dd a:hover {
    color: var(--color-gold-dark);
}

.contact-list__item dd span {
    color: var(--color-text-light);
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-height: 500px;
    box-shadow: var(--shadow-lg);
}

.map-placeholder__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    gap: 16px;
    background:
        linear-gradient(135deg, rgba(26, 39, 68, 0.95) 0%, rgba(36, 51, 82, 0.9) 100%),
        url('https://images.pexels.com/photos/5531551/pexels-photo-5531551.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=600&h=600') center/cover;
    color: var(--color-white);
}

.map-placeholder__inner svg {
    color: var(--color-gold);
    opacity: 0.9;
}

.map-placeholder__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.map-placeholder__text strong {
    color: var(--color-white);
    font-size: 1.1rem;
}

.map-placeholder__btn {
    margin-top: 8px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-navy-dark);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding-bottom: 40px;
}

.footer__brand {
    max-width: 400px;
}

.footer__tagline {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer__details svg {
    vertical-align: middle;
    margin-right: 4px;
    color: var(--color-gold);
    opacity: 0.7;
}

.footer__details a {
    transition: var(--transition);
}

.footer__details a:hover {
    color: var(--color-gold-light);
}

.footer__bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .about__container,
    .why-us__inner,
    .visit__inner {
        gap: 50px;
    }

    .float-card--1 { left: -10px; }
    .float-card--2 { left: -10px; }
    .float-card--3 { right: -10px; }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--color-border);
        padding: 16px 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        box-shadow: var(--shadow-md);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

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

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 60px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
    }

    .hero__left { order: 1; text-align: center; }
    .hero__right { order: 0; max-width: 480px; margin: 0 auto; width: 100%; }

    .hero__subheadline { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }

    .hero-card { aspect-ratio: 4 / 5; }

    .float-card { display: none; }

    .hero-wave svg { height: 50px; }

    /* Sections */
    .about,
    .services,
    .why-us,
    .visit {
        padding: 70px 0;
    }

    .about__container,
    .why-us__inner,
    .visit__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrap {
        max-width: 440px;
        margin: 0 auto;
    }

    .about__image-accent {
        width: 160px;
        right: -16px;
        bottom: -20px;
    }

    .about__experience-badge {
        width: 90px;
        height: 90px;
        left: -16px;
        top: -16px;
    }

    .about__experience-number { font-size: 1.4rem; }

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

    .why-us__inner { direction: ltr; }
    .why-us__visual { max-width: 440px; margin: 0 auto; }

    .visit__inner { direction: ltr; }
    .map-placeholder { aspect-ratio: 16 / 10; max-height: none; }

    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

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

    .hero__headline { font-size: 1.9rem; }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .about__image-accent { display: none; }
    .about__experience-badge { display: none; }

    .service-card__body { padding: 22px; }

    .footer__bottom { flex-direction: column; gap: 6px; }
}
