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

:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-dark: #5C1F2C;
    --color-burgundy-light: #9A3D4E;
    --color-blush: #F5E6E0;
    --color-blush-light: #FAF3F0;
    --color-blush-dark: #E8D0C8;
    --color-cream: #FDF9F7;
    --color-text: #1A1210;
    --color-text-muted: #6B5E5A;
    --color-text-light: #9A8E8A;
    --color-line: rgba(123, 45, 59, 0.12);
    --color-line-strong: rgba(123, 45, 59, 0.25);
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

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

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

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-burgundy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-burgundy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
}

body:hover .cursor-dot { opacity: 1; }
body:hover .cursor-ring { opacity: 1; }

a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot,
.product-card:hover ~ .cursor-dot {
    width: 8px;
    height: 8px;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-md);
    transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
    background: rgba(253, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    transition: padding var(--transition);
}

.nav.scrolled .nav-inner {
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-text);
    transition: color var(--transition);
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--color-burgundy);
    border-radius: 50%;
    position: relative;
    transition: transform var(--transition);
}

.nav-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--color-blush);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(15deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-burgundy);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--color-burgundy);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-line {
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--color-burgundy);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 8rem var(--space-md) 4rem;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-bg-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--color-line);
    transform: translateX(-50%);
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
}

.hero-content {
    padding-right: var(--space-md);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-burgundy);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-burgundy);
    color: var(--color-cream);
}

.btn-primary:hover {
    background: var(--color-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 59, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-line-strong);
}

.btn-ghost:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 700px;
}

.hero-image {
    position: absolute;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-image--primary {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-image--accent {
    width: 280px;
    height: 200px;
    bottom: 180px;
    right: 60px;
    z-index: 3;
    border: 4px solid var(--color-cream);
}

.hero-image--detail {
    width: 200px;
    height: 260px;
    bottom: 0;
    right: 20px;
    z-index: 1;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-line-strong);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-burgundy);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-blush-light);
}

.philosophy-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.philosophy-label-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.philosophy-text {
    padding-top: var(--space-md);
}

.philosophy-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.philosophy-body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.philosophy-visual {
    position: relative;
}

.philosophy-image {
    overflow: hidden;
}

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

.philosophy-stat {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--color-burgundy);
    padding: 2rem;
    z-index: 2;
}

.philosophy-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-blush);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.philosophy-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-blush-dark);
}

/* ===== PRODUCTS ===== */
.products {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-cream);
}

.products-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.products-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.products-label-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.products-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.products-heading em {
    font-style: italic;
    color: var(--color-burgundy);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.product-card {
    background: var(--color-blush-light);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-content {
    padding: var(--space-md);
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.product-card-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ===== DIVIDER ===== */
.section-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--color-line-strong);
}

.divider-text {
    flex-shrink: 0;
    max-width: 300px;
}

.divider-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-burgundy);
    line-height: 1.5;
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-blush-light);
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.about-image {
    overflow: hidden;
}

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

.about-image--secondary {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 60%;
    overflow: hidden;
    border: 6px solid var(--color-blush-light);
}

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

.about-text-col {
    padding-left: var(--space-md);
}

.about-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.about-label-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.about-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text);
}

.about-value-icon {
    width: 24px;
    height: 24px;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

/* ===== VISIT ===== */
.visit {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-cream);
}

.visit-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.visit-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.visit-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.visit-label-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.visit-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.visit-heading em {
    font-style: italic;
    color: var(--color-burgundy);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.visit-info-item {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-line);
}

.visit-info-item:last-child {
    border-bottom: none;
}

.visit-info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.visit-info-value {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.8;
}

.visit-info-link {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 2px;
    transition: border-color var(--transition), color var(--transition);
}

.visit-info-link:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.visit-map {
    height: 400px;
    background: var(--color-blush);
    overflow: hidden;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.6) contrast(1.05);
    transition: filter var(--transition);
}

.visit-map:hover iframe {
    filter: saturate(0.8) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-text);
    color: var(--color-blush);
    padding: var(--space-xl) var(--space-md);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(245, 230, 224, 0.1);
}

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

.footer-logo-mark {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-burgundy);
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
}

.footer-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--color-blush);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.footer-logo-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-blush);
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-blush);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-light);
}

/* ===== UTILITY ===== */
.text-accent {
    color: var(--color-burgundy);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-image-stack {
        height: 500px;
    }
    
    .hero-image--primary {
        width: 280px;
        height: 380px;
    }
    
    .hero-image--accent {
        width: 200px;
        height: 150px;
    }
    
    .hero-image--detail {
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-image-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .philosophy-grid,
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .philosophy-text {
        order: 2;
    }
    
    .philosophy-visual {
        order: 1;
        max-width: 500px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image-col {
        max-width: 500px;
    }
    
    .about-text-col {
        padding-left: 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 7rem;
    }
    
    .hero-image-stack {
        height: 350px;
    }
    
    .hero-image--primary {
        width: 220px;
        height: 300px;
    }
    
    .hero-image--accent {
        width: 160px;
        height: 120px;
        right: 30px;
    }
    
    .hero-image--detail {
        width: 130px;
        height: 170px;
    }
    
    .section-divider {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .divider-line {
        width: 60px;
        height: 1px;
    }
    
    .about-image--secondary {
        right: 0;
        bottom: -2rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        height: 300px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .hero {
        padding: 6rem 1.25rem 3rem;
    }
    
    .hero-image-stack {
        height: 280px;
    }
    
    .hero-image--primary {
        width: 180px;
        height: 240px;
    }
    
    .hero-image--accent {
        width: 130px;
        height: 100px;
    }
    
    .hero-image--detail {
        width: 110px;
        height: 140px;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
}
