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

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

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Utility ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

/* ── Section Labels & Headlines ── */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0D7377;
    margin-bottom: 16px;
}

.section-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a18;
    margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #0D7377;
    color: #F5F5F0;
    border: 2px solid #0D7377;
}

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

.btn--outline {
    background: transparent;
    color: #F5F5F0;
    border: 2px solid rgba(245, 245, 240, 0.5);
}

.btn--outline:hover {
    border-color: #F5F5F0;
    background: rgba(245, 245, 240, 0.1);
    transform: translateY(-2px);
}

.btn--light {
    background: #F5F5F0;
    color: #1a1a18;
    border: 2px solid #F5F5F0;
}

.btn--light:hover {
    background: transparent;
    color: #F5F5F0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 24, 0.08);
    transition: all 0.3s ease;
}

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

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

@media (min-width: 768px) {
    .nav-inner {
        padding: 0 48px;
    }
}

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

.nav-logo-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0D7377;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0D7377;
    border-radius: 4px;
}

.nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a18;
    letter-spacing: -0.01em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5a5a57;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0D7377;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0D7377;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    background: #0D7377;
    color: #F5F5F0 !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: #065f60;
    color: #F5F5F0 !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

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

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: #1a1a18;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a18;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: #0D7377;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    background: #0D7377;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

@media (min-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 245, 240, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 245, 240, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(245, 245, 240, 0.15) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 64px 0 64px;
    }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.7);
    margin-bottom: 32px;
}

.hero-label-line {
    width: 40px;
    height: 2px;
    background: rgba(245, 245, 240, 0.5);
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #F5F5F0;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    font-style: italic;
    font-weight: 600;
    color: #5eead4;
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.75);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    height: 50vh;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .hero-image {
        height: 100vh;
        min-height: 700px;
        border-radius: 0;
    }
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.5);
    z-index: 3;
    animation: float 2s ease-in-out infinite;
}

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

/* ── Marquee ── */
.marquee {
    background: #1a1a18;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.6);
    padding: 0 24px;
}

.marquee-dot {
    color: #0D7377 !important;
    font-size: 0.5rem !important;
    padding: 0 16px !important;
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: #F5F5F0;
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #0D7377;
    border-radius: 4px;
    z-index: -1;
}

@media (min-width: 768px) {
    .about-image-wrap img {
        height: 600px;
    }
}

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

.about-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a57;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e3;
}

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

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0D7377;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #737370;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: #d1d1cc;
}

/* ── Products ── */
.products {
    padding: 120px 0;
    background: #F5F5F0;
}

.products-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.products-header .section-headline {
    margin-bottom: 16px;
}

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

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    height: 240px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-content {
    padding: 24px;
}

.product-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a18;
    margin-bottom: 8px;
}

.product-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #737370;
}

/* ── Feature ── */
.feature {
    padding: 120px 0;
    background: #0D7377;
    overflow: hidden;
}

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

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.feature-text .section-label {
    color: #5eead4;
}

.feature-text .section-headline {
    color: #F5F5F0;
}

.feature-text .section-headline .text-teal-600 {
    color: #5eead4;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(245, 245, 240, 0.85);
    line-height: 1.5;
}

.feature-list li svg {
    color: #5eead4;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-image {
    overflow: hidden;
    border-radius: 6px;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .feature-image img {
        height: 600px;
    }
}

/* ── Visit ── */
.visit {
    padding: 120px 0;
    background: #1a1a18;
    overflow: hidden;
}

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

@media (min-width: 768px) {
    .visit .container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.visit-content .section-label {
    color: #5eead4;
}

.visit-headline {
    color: #F5F5F0;
}

.visit-headline .text-slate-50 {
    color: #F5F5F0;
}

.visit-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 245, 240, 0.65);
    margin-bottom: 40px;
    max-width: 480px;
}

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

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

.visit-detail svg {
    color: #0D7377;
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #F5F5F0;
    margin-bottom: 2px;
}

.visit-detail span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.55);
}

.visit-image {
    overflow: hidden;
    border-radius: 6px;
}

.visit-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .visit-image img {
        height: 600px;
    }
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: #F5F5F0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a57;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a18;
    transition: color 0.2s ease;
}

.contact-method:hover {
    color: #0D7377;
}

.contact-method svg {
    color: #0D7377;
}

/* ── Form ── */
.contact-form-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5a5a57;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a18;
    background: #F5F5F0;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 14px 16px;
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: #a8a8a3;
}

.form-input:focus {
    border-color: #0D7377;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0D7377;
}

.form-success.visible {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
}

/* ── Footer ── */
.footer {
    background: #0d0d0b;
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 245, 240, 0.08);
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #F5F5F0;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.45);
}

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

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 245, 240, 0.55);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #5eead4;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(245, 245, 240, 0.3);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    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; }
