/* Grand Wine - Aristocratic Luxury Design System */
/* Heritage • Discretion • Timeless Elegance */

:root {
    /* Aristocratic Color Palette */
    --near-black: #0a0a0a;
    --deep-charcoal: #1a1a1a;
    --warm-charcoal: #2a2520;
    --muted-gold: #c9a961;
    --dark-gold: #9d7f42;
    --ivory: #f5f3ed;
    --off-white: #faf8f2;
    --rich-burgundy: #4a1e1e;
    
    /* Subtle accents */
    --border-subtle: rgba(201, 169, 97, 0.15);
    --shadow-soft: rgba(10, 10, 10, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garamond', 'Georgia', 'Times New Roman', serif;
    color: var(--deep-charcoal);
    background-color: var(--near-black);
    line-height: 1.75;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Typography - Aristocratic Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Garamond', 'Baskerville', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--muted-gold);
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.75em;
    margin-bottom: 0.6em;
}

h2 {
    font-size: 2.75em;
    margin-bottom: 0.75em;
}

h3 {
    font-size: 1.85em;
    margin-bottom: 0.65em;
}

h4 {
    font-size: 1.35em;
    margin-bottom: 0.55em;
    font-weight: 500;
}

p {
    margin-bottom: 2rem;
    line-height: 1.85;
}

/* Better text separation for cards */
.card p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

a {
    color: var(--muted-gold);
    text-decoration: none;
    transition: color 0.35s ease, opacity 0.35s ease;
}

a:hover {
    color: var(--dark-gold);
    opacity: 0.85;
}

/* Header - Minimal Aristocratic Authority */
header {
    background-color: #000000;
    color: var(--ivory);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Top Right Corner (Aristocratic Placement) */
.logo {
    position: absolute;
    right: 4rem;
    top: 1.5rem;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.2));
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 1;
}

/* Navigation - Left Side (Aristocratic) */
nav {
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: flex-start;
}

nav a {
    color: var(--ivory);
    font-size: 0.85em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Garamond', serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--muted-gold);
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.75em;
    cursor: pointer;
    position: absolute;
    left: 2rem;
}

/* Hero Section - Dark Aristocratic Luxury */
.hero {
    background: var(--near-black);
    color: var(--ivory);
    padding: 12rem 4rem 10rem;
    margin-top: 5rem;
    position: relative;
    border-bottom: 1px solid #000000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* Hero Content Wrapper - Logo Left, Text Right */
.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* Hero Logo - Left Side */
.hero-logo {
    flex-shrink: 0;
    width: 320px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(201, 169, 97, 0.25));
}

/* Hero Text - Right Side */
.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    color: var(--ivory);
    font-size: 4em;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero .subtitle {
    font-size: 1.6em;
    color: var(--muted-gold);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero p {
    max-width: 100%;
    margin: 0;
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--off-white);
}

/* Content Sections - Aristocratic Spacing */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10rem 4rem;
    background-color: var(--ivory);
    position: relative;
    border-bottom: 1px solid #000000;
}

.section-narrow {
    max-width: 1000px;
}

.section-wide {
    max-width: 1700px;
}

.section-alt {
    background-color: var(--off-white);
    border-bottom: 1px solid #000000;
}

.section-dark {
    background-color: var(--deep-charcoal);
    color: var(--ivory);
    border-bottom: 1px solid #000000;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--muted-gold);
}

.section-dark p {
    color: var(--off-white);
}

/* Section Logo Watermark - Aristocratic Touch */
.section-logo-watermark {
    position: absolute;
    top: 3rem;
    right: 3rem;
    opacity: 0.08;
    pointer-events: none;
}

.section-logo-watermark img {
    height: 120px;
    width: auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* Cards - Refined Elegance */
.card {
    background-color: var(--ivory);
    padding: 3.5rem;
    border: 1px solid var(--border-subtle);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.card:hover {
    box-shadow: 0 10px 40px var(--shadow-soft);
    transform: translateY(-3px);
}

.card h3 {
    margin-top: 0;
    color: var(--deep-charcoal);
}

/* Quote Block - Aristocratic Emphasis */
.quote-block {
    background: linear-gradient(135deg, var(--rich-burgundy) 0%, var(--deep-charcoal) 100%);
    border-left: 4px solid var(--muted-gold);
    padding: 4rem 5rem;
    margin: 5rem 0;
    font-style: italic;
    font-size: 1.4em;
    line-height: 1.9;
    color: var(--ivory);
    box-shadow: 0 8px 32px rgba(10, 10, 10, 0.3);
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 6em;
    color: var(--muted-gold);
    opacity: 0.2;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.quote-block .attribution {
    font-style: normal;
    font-size: 0.75em;
    margin-top: 2.5rem;
    color: var(--muted-gold);
    font-family: 'Garamond', serif;
    text-align: right;
    letter-spacing: 0.08em;
    opacity: 1;
    text-transform: uppercase;
}

/* Wine Label Cards */
.wine-label-card {
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wine-label-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.15);
}

.wine-label-card img {
    transition: all 0.4s ease;
    border: 1px solid var(--border-subtle);
}

.wine-label-card:hover img {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.2);
}

/* Wine List - Compact Design */
.wine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wine-list li {
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.wine-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wine-list strong {
    color: var(--deep-charcoal);
    font-weight: 500;
    display: inline;
    margin-bottom: 0;
}

/* Selected Experience Section - Extra Compact */
.section-narrow .grid-2 h4 {
    font-size: 1.2em;
    margin-bottom: 0.8rem;
    color: var(--muted-gold);
}

.section-narrow .grid-2 > div {
    margin-bottom: 1.5rem;
}

/* Wine Label Icons - Compact UX Design */
.wine-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem auto 5rem;
    padding: 2rem;
}

.wine-label-card {
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.wine-label-card:hover {
    transform: translateY(-4px);
    opacity: 0.85;
}

.wine-label-card img {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.wine-label-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.wine-label-card h4 {
    font-size: 0.75em;
    color: var(--muted-gold);
    margin: 1rem 0 0.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wine-label-card p {
    font-size: 0.7em;
    color: var(--warm-charcoal);
    margin: 0;
    opacity: 0.7;
}

/* Investment Charts - Aristocratic Display */
.chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 32px var(--shadow-soft);
    margin: 4rem auto;
    display: block;
    border: 1px solid var(--border-subtle);
}

.chart-container {
    background: var(--ivory);
    padding: 4rem;
    border-radius: 8px;
    margin: 4rem auto;
    max-width: 1100px;
    box-shadow: 0 6px 24px var(--shadow-soft);
    border: 1px solid var(--border-subtle);
}

/* Forms */
.contact-form {
    max-width: 700px;
    margin: 5rem auto;
}

.form-group {
    margin-bottom: 2.5rem;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    font-family: 'Garamond', serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-charcoal);
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid var(--border-subtle);
    background-color: var(--off-white);
    font-family: 'Garamond', serif;
    font-size: 1.05em;
    color: var(--deep-charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--muted-gold);
    box-shadow: 0 2px 12px rgba(201, 169, 97, 0.15);
}

/* Buttons */
button,
.btn {
    background-color: var(--deep-charcoal);
    color: var(--ivory);
    padding: 1.25rem 3.5rem;
    border: 1px solid var(--muted-gold);
    cursor: pointer;
    font-family: 'Garamond', serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.35s ease;
    display: inline-block;
}

button:hover,
.btn:hover {
    background-color: var(--warm-charcoal);
    border-color: var(--dark-gold);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.2);
}

/* Contact Info */
.contact-info {
    background-color: var(--off-white);
    padding: 4rem;
    border: 1px solid var(--border-subtle);
    margin: 4rem 0;
}

.contact-detail {
    margin: 2rem 0;
    font-size: 1.1em;
}

.contact-detail strong {
    display: block;
    color: var(--warm-charcoal);
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Office Locations */
.map-container {
    background-color: var(--off-white);
    padding: 5rem;
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.office {
    padding: 3rem 2rem;
    background-color: var(--ivory);
    border: 1px solid var(--border-subtle);
    transition: box-shadow 0.3s ease;
}

.office:hover {
    box-shadow: 0 6px 24px var(--shadow-soft);
}

.office h4 {
    color: var(--deep-charcoal);
    margin-bottom: 0.75rem;
}

.office p {
    font-size: 0.95em;
    color: var(--warm-charcoal);
    margin: 0;
}

/* Footer - Aristocratic Foundation */
footer {
    background-color: var(--near-black);
    color: var(--ivory);
    padding: 8rem 4rem 4rem;
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.footer-logo {
    text-align: center;
    margin-bottom: 5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    opacity: 0.85;
}

/* About Page Logo Section */
.about-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-logo {
    flex-shrink: 0;
    width: 280px;
}

.about-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(201, 169, 97, 0.2));
}

.about-content {
    flex: 1;
}

@media (max-width: 768px) {
    .about-logo-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-logo {
        width: 200px;
        margin: 0 auto;
    }
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-section h4 {
    color: var(--muted-gold);
    margin-bottom: 2rem;
    font-size: 1.1em;
    letter-spacing: 0.08em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--ivory);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--muted-gold);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
    font-size: 0.85em;
    color: rgba(245, 243, 237, 0.6);
    letter-spacing: 0.05em;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 1.5rem 3rem;
    }
    
    .logo {
        right: 3rem;
    }
    
    .section {
        padding: 8rem 3rem;
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .office-locations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .header-container {
        padding: 1.5rem 2rem;
    }
    
    .logo {
        right: 2rem;
        top: 1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Hero responsive layout */
    .hero-content-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-logo {
        width: 220px;
        margin: 0 auto;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero .subtitle {
        font-size: 1.3em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 2.5rem;
        border-top: 1px solid var(--border-subtle);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 12rem 2rem 8rem;
    }
    
    .hero h1 {
        font-size: 2.75em;
    }
    
    .hero-logo {
        max-width: 240px;
    }
    
    .section {
        padding: 6rem 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2.75em; }
    h2 { font-size: 2.25em; }
    
    .quote-block {
        padding: 3rem 2.5rem;
        font-size: 1.2em;
    }
}

@media print {
    header,
    footer,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
