*, *::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: #0a0f1a;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(10, 15, 26, 0.08), 0 1px 2px rgba(10, 15, 26, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 15, 26, 0.1), 0 2px 4px rgba(10, 15, 26, 0.06);
    --shadow-lg: 0 12px 40px rgba(10, 15, 26, 0.12), 0 4px 12px rgba(10, 15, 26, 0.08);
    --shadow-xl: 0 24px 60px rgba(10, 15, 26, 0.15), 0 8px 20px rgba(10, 15, 26, 0.1);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--teal-600);
    color: #fff;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}
.skip-link:focus {
    top: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}
.logo-icon {
    color: var(--teal-600);
    flex-shrink: 0;
}
.logo-light .logo-icon {
    color: var(--teal-400);
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.btn-nav {
    margin-left: 8px;
    background: var(--teal-600);
    color: #fff !important;
    border-radius: var(--radius-sm);
    padding: 8px 18px !important;
}
.btn-nav:hover {
    background: var(--teal-700) !important;
    color: #fff !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover {
    background: var(--slate-100);
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    top: 0;
}
.hamburger::before { transform: translateY(-6px); }
.hamburger::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a {
        padding: 12px 16px;
        font-size: 16px;
        width: 100%;
    }
    .btn-nav {
        margin-left: 0 !important;
        text-align: center;
        display: block;
    }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--teal-600);
    color: #fff;
    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-outline {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-300);
}
.btn-outline:hover {
    border-color: var(--teal-600);
    color: var(--teal-700);
    background: var(--teal-50);
}
.btn-white {
    background: #fff;
    color: var(--teal-800);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}
.btn-full {
    width: 100%;
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--slate-50) 0%, #fff 50%, var(--teal-50) 100%);
    overflow: hidden;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-600);
    margin-bottom: 20px;
}
.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--teal-600);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-headline br {
    display: none;
}

.hero-subheadline {
    font-size: 17px;
    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-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-900);
}
.stat-label {
    font-size: 13px;
    color: var(--slate-500);
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--slate-200);
}

/* Hero Image */
.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;
    display: block;
}
.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}
.hero-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-800);
    box-shadow: var(--shadow-lg);
}
.hero-badge svg {
    color: var(--teal-600);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image { order: -1; max-width: 560px; margin: 0 auto; }
    .hero-headline br { display: block; }
    .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

/* ─── Section shared ─── */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-600);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-600);
}

/* ─── Inventory ─── */
.inventory {
    background: #fff;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--teal-600);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}
.card-body {
    padding: 24px;
}
.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--slate-600);
    margin-bottom: 16px;
}
.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}
.card-link:hover {
    gap: 8px;
}

.section-cta {
    text-align: center;
}
.section-cta .btn { margin-bottom: 12px; }
.section-note {
    font-size: 14px;
    color: var(--slate-500);
}

/* ─── Services ─── */
.services {
    background: var(--slate-50);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.services-content .section-subtitle {
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.service-item {
    display: flex;
    gap: 16px;
}
.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    color: var(--teal-600);
}
.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}
.service-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--slate-600);
}

.services-image {
    position: relative;
}
.services-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.services-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.services-image-small {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-50);
}
.services-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-image { max-width: 560px; margin: 40px auto 0; }
    .services-image-small { right: 0; }
}

/* ─── About ─── */
.about {
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-group {
    position: relative;
}
.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-image-strip {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.about-image-strip img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    width: 50%;
    aspect-ratio: 16/11;
    object-fit: cover;
    display: block;
}
.about-content .section-subtitle {
    margin-bottom: 24px;
}
.about-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-group { order: -1; }
}

/* ─── Testimonials ─── */
.testimonials {
    background: var(--slate-900);
    color: #fff;
}
.testimonials .section-eyebrow { color: var(--teal-400); }
.testimonials .section-title { color: #fff; }
.testimonials .section-header { margin-bottom: 48px; }

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: background var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1;
    color: var(--teal-500);
    margin-bottom: 8px;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.author-location {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ─── CTA ─── */
.cta {
    background: var(--teal-700);
    padding: 80px 0;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cta-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .cta-inner { grid-template-columns: 1fr; }
    .cta-image { order: -1; max-height: 280px; }
}

/* ─── Contact ─── */
.contact {
    background: var(--slate-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}
.contact-item {
    display: flex;
    gap: 16px;
}
.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    color: var(--teal-600);
}
.contact-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    margin-bottom: 4px;
}
.contact-value {
    font-size: 15px;
    color: var(--slate-800);
    line-height: 1.6;
}
.contact-value a {
    color: var(--teal-600);
    font-weight: 600;
    transition: color var(--transition);
}
.contact-value a:hover {
    color: var(--teal-700);
}
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}
.required {
    color: var(--teal-600);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
    background: #fff;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    margin: 0 auto 16px;
}
.form-success h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 14px;
    color: var(--slate-600);
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { order: -1; }
}

/* ─── Footer ─── */
.footer {
    background: var(--slate-950);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 280px; }
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255,255,255,0.5);
}
.footer h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--teal-400);
}
.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 4px;
}
.footer-contact a {
    color: var(--teal-400);
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
