/* ============================================
   DANIEL LANE VINEYARD — STYLESHEET
   Deep Navy (#0A1628) + Warm Gold (#C9A84C)
   ============================================ */

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

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

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1A2A3A;
    background-color: #FAFAF8;
    -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;
}

ul {
    list-style: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #0A1628;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.section-body {
    font-size: 1.05rem;
    color: #3D5A7A;
    line-height: 1.8;
    max-width: 600px;
}

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

.section-header.centered .section-body {
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #C9A84C;
    color: #0A1628;
    border-color: #C9A84C;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: #B8943F;
    border-color: #B8943F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #0A1628;
    border-color: #0A1628;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background-color: #0A1628;
    color: #FAFAF8;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAFAF8;
    letter-spacing: 0.02em;
}

.logo-accent {
    color: #C9A84C;
}

.logo-icon {
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250, 250, 248, 0.75);
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C9A84C;
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #C9A84C;
}

.main-nav a::after {
    width: 100%;
}

.nav-cta {
    background: #C9A84C;
    color: #0A1628 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

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

.nav-cta:hover {
    background: #B8943F;
    transform: translateY(-1px);
}

/* NAV TOGGLE */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #FAFAF8;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #FAFAF8;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.pexels.com/photos/14160612/pexels-photo-14160612.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.82) 50%,
        rgba(10, 22, 40, 0.55) 100%
    );
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 0;
}

.hero-content {
    padding: 40px 0;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: #FAFAF8;
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.hero-sub {
    font-size: 1.1rem;
    color: rgba(250, 250, 248, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-actions .btn-secondary {
    border-color: rgba(250, 250, 248, 0.5);
    color: #FAFAF8;
}

.hero-actions .btn-secondary:hover {
    background: #FAFAF8;
    color: #0A1628;
    border-color: #FAFAF8;
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

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

.hero-accent-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #0A1628;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.accent-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
}

.accent-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FAFAF8;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: #FAFAF8;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #FAFAF8;
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.15);
}

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

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

.about-content .section-body {
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #0A1628;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B8AA8;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(10, 22, 40, 0.12);
}

/* WINES */
.wines {
    padding: 100px 0;
    background: #F3F1EC;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.wine-card {
    background: #FAFAF8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.14);
}

.wine-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.wine-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #C9A84C;
    color: #0A1628;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}

.wine-card-body {
    padding: 24px;
}

.wine-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.wine-notes {
    font-size: 0.9375rem;
    color: #6B8AA8;
    line-height: 1.7;
}

.wines-cta {
    text-align: center;
    margin-top: 56px;
}

/* EXPERIENCE */
.experience {
    padding: 100px 0;
    background: #0A1628;
}

.experience .section-title {
    color: #FAFAF8;
}

.experience .section-body {
    color: rgba(250, 250, 248, 0.6);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.exp-card {
    background: rgba(250, 250, 248, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.exp-card:hover {
    background: rgba(250, 250, 248, 0.07);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-4px);
}

.exp-card-icon {
    margin-bottom: 24px;
}

.exp-card-title {
    font-size: 1.25rem;
    color: #FAFAF8;
    margin-bottom: 12px;
}

.exp-card-desc {
    font-size: 0.9375rem;
    color: rgba(250, 250, 248, 0.6);
    line-height: 1.8;
}

/* VISIT */
.visit {
    padding: 100px 0;
    background: #FAFAF8;
}

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

.visit-info {
    padding: 20px 0;
}

.visit-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visit-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: #1A2A3A;
}

.visit-details a {
    color: #1A2A3A;
    transition: color 0.3s ease;
}

.visit-details a:hover {
    color: #C9A84C;
}

.detail-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0A1628;
    color: #FAFAF8;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.map-cta:hover {
    background: #C9A84C;
    color: #0A1628;
}

/* CONTACT */
.contact {
    padding: 100px 0;
    background: #F3F1EC;
}

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

.contact-info {
    padding: 20px 0;
}

.contact-direct {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    background: #FAFAF8;
    border-radius: 8px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    transition: all 0.3s ease;
}

.contact-direct-item:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
}

.contact-direct-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
}

.contact-direct-value {
    font-size: 1rem;
    font-weight: 500;
    color: #0A1628;
}

.contact-form {
    background: #FAFAF8;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0A1628;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    color: #1A2A3A;
    background: #F3F1EC;
    border: 1.5px solid rgba(10, 22, 40, 0.12);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #C9A84C;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9BB5CC;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: #6B8AA8;
    margin-top: 16px;
}

.form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.95);
    z-index: 10;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

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

.success-inner {
    text-align: center;
    padding: 40px;
}

.success-inner svg {
    margin: 0 auto 20px;
}

.success-inner h3 {
    font-size: 1.5rem;
    color: #FAFAF8;
    margin-bottom: 12px;
}

.success-inner p {
    font-size: 1rem;
    color: rgba(250, 250, 248, 0.7);
    line-height: 1.7;
}

/* FOOTER */
.site-footer {
    background: #0A1628;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: rgba(250, 250, 248, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav-title,
.footer-contact .footer-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(250, 250, 248, 0.6);
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: #C9A84C;
}

.footer-contact li {
    font-size: 0.9375rem;
    color: rgba(250, 250, 248, 0.6);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 250, 248, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 250, 248, 0.35);
}

/* MOBILE NAV OVERLAY */
.main-nav.mobile-open {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.main-nav.mobile-open ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
}

.main-nav.mobile-open a {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .wine-grid,
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .main-nav.open {
        opacity: 1;
        pointer-events: all;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .main-nav a {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        font-size: 0.875rem;
        padding: 12px 28px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 100px;
    }
    
    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-accent-card {
        bottom: -12px;
        left: -8px;
        padding: 14px 18px;
    }
    
    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-accent {
        right: 0;
        bottom: -20px;
    }
    
    .wine-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: no-preference) {
    .wine-card,
    .exp-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
