/* ============================================
   Variedades Nathalie — Styles
   Clean Minimalist · Forest Green + Off-White
   ============================================ */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #1B4332;
    background-color: #F5F5F0;
    -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;
    color: inherit;
}

ul, ol {
    list-style: none;
}

label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2D6A4F;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    line-height: 1.15;
    color: #1B4332;
}

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

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

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1B4332;
    color: #F5F5F0;
    padding: 8px 16px;
    z-index: 9999;
    font-size: 14px;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* --- Header --- */
.site-header {
    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(27, 67, 50, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1B4332;
}

.logo-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: #2D6A4F;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2D6A4F;
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* --- Nav --- */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(27, 67, 50, 0.06);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(245, 245, 240, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(27, 67, 50, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-close:hover {
    background: rgba(27, 67, 50, 0.06);
    border-color: #2D6A4F;
}

.nav-links {
    text-align: center;
}

.nav-links li {
    margin-bottom: 16px;
}

.nav-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #1B4332;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: #2D6A4F;
    font-style: italic;
}

.nav-cta {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
    padding: 12px 28px;
    border: 1px solid #1B4332;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
    background: #1B4332;
    color: #F5F5F0 !important;
    font-style: normal !important;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.82) 0%,
        rgba(27, 67, 50, 0.65) 50%,
        rgba(27, 67, 50, 0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 72px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.7);
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    color: #F5F5F0;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-headline em {
    font-style: italic;
    color: #95D6A8;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.8);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid;
    border-radius: 0;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: #F5F5F0;
    color: #1B4332;
    border-color: #F5F5F0;
}

.btn-primary:hover {
    background: transparent;
    color: #F5F5F0;
    border-color: #F5F5F0;
}

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

.btn-ghost:hover {
    border-color: #F5F5F0;
    background: rgba(245, 245, 240, 0.08);
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 245, 240, 0.5);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- Intro Strip --- */
.intro-strip {
    padding: 64px 0;
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

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

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 0;
        align-items: center;
    }
    .intro-item {
        padding: 0 32px;
    }
}

.intro-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #2D6A4F;
    display: block;
    margin-bottom: 8px;
}

.intro-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #2D6A4F;
}

.intro-item strong {
    font-weight: 500;
    color: #1B4332;
}

.intro-divider {
    width: 1px;
    height: 48px;
    background: rgba(27, 67, 50, 0.12);
    display: none;
}

@media (min-width: 768px) {
    .intro-divider {
        display: block;
    }
}

/* --- Section Shared --- */
.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D6A4F;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.15;
}

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

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #2D6A4F;
    max-width: 560px;
    margin: 0 auto 56px;
    text-align: center;
    font-weight: 300;
}

/* --- About --- */
.about {
    padding: 120px 0;
}

.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: 80px;
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #2D6A4F;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* --- Products --- */
.products {
    padding: 120px 0;
    background: #EDEDE8;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.product-card {
    background: #F5F5F0;
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.08);
}

.product-card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-card h3 {
    font-size: 22px;
    font-weight: 400;
    padding: 24px 24px 0;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #2D6A4F;
    padding: 0 24px 28px;
    font-weight: 300;
}

/* --- Why --- */
.why {
    padding: 120px 0;
}

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

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

.why-content .section-title {
    margin-bottom: 40px;
}

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

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

.why-list svg {
    color: #2D6A4F;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1B4332;
    margin-bottom: 4px;
}

.why-list span {
    font-size: 15px;
    line-height: 1.7;
    color: #2D6A4F;
    font-weight: 300;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: #EDEDE8;
}

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

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

.visit-info .section-title {
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.visit-detail-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #95D6A8;
}

.visit-detail-value {
    font-size: 16px;
    line-height: 1.7;
    color: #1B4332;
    font-weight: 400;
}

.visit-detail-value a {
    color: #1B4332;
    border-bottom: 1px solid rgba(27, 67, 50, 0.2);
    transition: border-color 0.2s ease;
}

.visit-detail-value a:hover {
    border-color: #2D6A4F;
}

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

.visit-actions .btn-primary {
    background: #1B4332;
    color: #F5F5F0;
    border-color: #1B4332;
}

.visit-actions .btn-primary:hover {
    background: transparent;
    color: #1B4332;
    border-color: #1B4332;
}

.visit-actions .btn-ghost {
    color: #1B4332;
    border-color: rgba(27, 67, 50, 0.3);
}

.visit-actions .btn-ghost:hover {
    border-color: #1B4332;
    background: rgba(27, 67, 50, 0.04);
}

.visit-map {
    aspect-ratio: 4/3;
    background: #D4D4CE;
    overflow: hidden;
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
}

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

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

.contact-text .section-title {
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #2D6A4F;
    font-weight: 300;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 639px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #1B4332;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(27, 67, 50, 0.2);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #95A89A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2D6A4F;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D6A4F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

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

.form-note {
    font-size: 13px;
    color: #95A89A;
    text-align: center;
    font-weight: 300;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
    color: #2D6A4F;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 400;
    color: #1B4332;
}

.form-success p {
    font-size: 15px;
    color: #2D6A4F;
    font-weight: 300;
}

/* --- Footer --- */
.site-footer {
    background: #1B4332;
    color: #F5F5F0;
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(245, 245, 240, 0.1);
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-brand .logo-mark {
    border-color: rgba(245, 245, 240, 0.4);
    color: #F5F5F0;
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: transparent;
}

.footer-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
    color: #F5F5F0;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.6);
    font-weight: 300;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(245, 245, 240, 0.7);
    transition: color 0.2s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: #95D6A8;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.6);
    font-weight: 300;
    margin-bottom: 4px;
}

.footer-contact a {
    color: #95D6A8;
    border-bottom: 1px solid rgba(149, 214, 168, 0.3);
    transition: border-color 0.2s ease;
}

.footer-contact a:hover {
    border-color: #95D6A8;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 245, 240, 0.4);
    font-weight: 300;
}
