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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #080d18;
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16), 0 8px 20px rgba(15, 23, 42, 0.08);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    background: var(--slate-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--slate-900);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.nav__logo span {
    font-weight: 600;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
    color: var(--slate-900);
    background: var(--slate-100);
}

.nav__link--cta {
    background: var(--teal-600);
    color: white;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--teal-700);
    color: white;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: white;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
    background: var(--teal-700);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.4);
    transform: translateY(-1px);
}

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

.btn--ghost:hover {
    border-color: var(--teal-600);
    color: var(--teal-700);
    background: var(--teal-50);
}

.btn--full {
    width: 100%;
}

/* ===== Hero ===== */
.hero {
    padding: 120px 0 80px;
    background: var(--slate-50);
    overflow: hidden;
}

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

.hero__eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline em {
    font-style: italic;
    color: var(--teal-700);
}

.hero__body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal-600);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

/* ===== Wave Divider ===== */
.wave-divider {
    margin-top: -1px;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header__eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header__body {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--slate-500);
}

/* ===== Menu ===== */
.menu {
    padding: 80px 0 100px;
    background: var(--slate-900);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-700);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card__img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.menu-card__body {
    padding: 28px;
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--slate-50);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.menu-card__desc {
    font-size: 0.938rem;
    line-height: 1.65;
    color: var(--slate-400);
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--slate-50);
}

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

.about__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 7/8;
}

.about__image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--teal-600);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.about__content {
    max-width: 520px;
}

.about__content .section-header__title {
    text-align: left;
}

.about__content .section-header__eyebrow {
    text-align: left;
}

.about__text {
    font-size: 1.063rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 16px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--slate-700);
}

.about__feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-sm);
}

/* ===== Location ===== */
.location {
    padding: 100px 0;
    background: var(--slate-100);
}

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

.location__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--slate-200);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.location__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location__card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-md);
}

.location__card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.location__card-text {
    font-size: 0.938rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.location__card-text a {
    color: var(--teal-600);
    transition: color 0.2s;
}

.location__card-text a:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--slate-50);
}

.cta__inner {
    background: var(--slate-900);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta__body {
    font-size: 1.063rem;
    color: var(--slate-400);
    line-height: 1.6;
}

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

.cta__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta__label {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.cta__input,
.cta__textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--slate-700);
    border-radius: var(--radius-md);
    background: var(--slate-800);
    color: white;
    font-family: var(--font-body);
    font-size: 0.938rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.cta__input::placeholder,
.cta__textarea::placeholder {
    color: var(--slate-500);
}

.cta__input:focus,
.cta__textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.cta__textarea {
    resize: vertical;
    min-height: 120px;
}

.cta__form-note {
    font-size: 0.813rem;
    color: var(--slate-500);
    text-align: center;
}

.cta__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.cta__success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
}

.cta__success-body {
    font-size: 1rem;
    color: var(--slate-400);
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-950);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--slate-800);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: white;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.938rem;
    color: var(--slate-500);
    line-height: 1.6;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a,
.footer__list span {
    font-size: 0.938rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer__list a:hover {
    color: var(--teal-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.813rem;
    color: var(--slate-600);
}

/* ===== Reveal Animation ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__grid,
    .about__grid {
        gap: 40px;
    }
    
    .cta__inner {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 96px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav__links.active {
        right: 0;
    }
    
    .nav__link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav__link--cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        width: 100%;
    }
    
    .nav-overlay {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .menu__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        order: -1;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .location__grid {
        grid-template-columns: 1fr;
    }
    
    .cta__inner {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 40px;
    }
    
    .cta__form-row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__headline {
        font-size: 2rem;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }
}
