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

:root {
    --site-max-width: 1400px;
    --site-gutter: 4vw;
    --text-color: hsl(30, 12.5%, 18.82%);
    --text-color-light: hsl(0, 0%, 45%);
    --background-color: hsl(42, 35.71%, 94.51%);
    --border-color: hsl(0, 0%, 91%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Navigation */
header {
    padding: 2.5vw var(--site-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.logo a {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 2em;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.15s ease;
    letter-spacing: 0.02em;
}

nav a:hover {
    opacity: 0.5;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    min-width: 140px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 100;
}

/* Create invisible bridge between trigger and menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    display: none;
}

.dropdown:hover::after,
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(0,0,0,0.04);
    opacity: 1;
}

/* Main Content */
main {
    min-height: 70vh;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 5vw var(--site-gutter);
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6vw;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 1.5em;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-color-light);
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    max-width: 900px;
    margin: 0 auto 4vw;
}

h1 {
    font-size: clamp(32px, 3.5vw, 40px);
    font-weight: 500;
    margin-bottom: 1.5em;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    margin: 2.5em 0 1em;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

p {
    margin-bottom: 1.2em;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: var(--text-color);
    text-decoration: underline;
    transition: opacity 0.15s ease;
}

a:hover {
    opacity: 0.6;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 11px;
    margin: 4vw 0;
    max-width: var(--site-max-width);
}

.image-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.image-grid img:hover {
    opacity: 0.85;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3vw;
    margin: 4vw 0;
    align-items: start;
}

.product-item {
    display: flex;
    flex-direction: column;
}

.product-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.8em;
    margin-top: 0;
    letter-spacing: 0.01em;
}

.product-item p {
    font-size: 15px;
    color: var(--text-color-light);
    line-height: 1.6;
    margin-top: 0;
}

/* Footer */
footer {
    margin-top: 8vw;
    padding: 3vw var(--site-gutter);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-color-light);
    font-size: 13px;
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
}

/* Hero Image Styling */
.hero img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2em;
    display: block;
    border-radius: 2px;
}

/* Product Item Images */
.product-item img {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin-bottom: 1em;
    display: block;
    object-fit: cover;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Fallback for browsers that support aspect-ratio */
@supports (aspect-ratio: 1 / 1) {
    .product-item img {
        height: auto;
        padding-bottom: 0;
        aspect-ratio: 1 / 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --site-gutter: 6vw;
    }

    header {
        flex-direction: column;
        padding: 6vw var(--site-gutter);
        gap: 3vw;
    }

    .logo a {
        font-size: 18px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5em;
        font-size: 13px;
    }

    main {
        padding: 8vw var(--site-gutter);
    }

    .hero img {
        max-width: 100%;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 6vw;
    }
}
