/* CSS Variables & Base Styles */
:root {
    --bg-color: #FDFDFA;
    --text-primary: #212121;
    --accent: #B2A697;
    --btn-text: #FFFFFF;

    --font-heading: 'Didot', 'Georgia', serif;
    --font-body: 'Helvetica Neue Light', 'Helvetica Neue', 'Helvetica', system-ui, sans-serif;

    --sidebar-width: 220px;
}

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

body {
    background-color: #ffffff;
    /* Starts white, JS will fade to FDFDFA */
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.4s ease;
}

body:not(.loading) {
    background-color: var(--bg-color);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}

a[href^="mailto:"] {
    color: var(--accent);
    text-decoration: none;
    transition: color 200ms ease, text-decoration 200ms ease;
}

a[href^="mailto:"]:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

p a:not([href^="mailto:"]),
.about-copy a:not([href^="mailto:"]) {
    color: var(--text-primary);
    transition: color 200ms ease;
}

p a:not([href^="mailto:"]):hover,
.about-copy a:not([href^="mailto:"]):hover {
    color: var(--accent);
}

/* Layout Split */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: #2D2824;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 3rem;
    z-index: 100;
}


#content-area {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    position: relative;
    background-image: url('/assets/background.png?v=3');
    background-repeat: repeat;
    background-size: auto;
    background-color: #FDFDFA;
}

/* Sidebar Components */
.sidebar-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

#logo {
    height: 48px;
    width: auto;
    margin-bottom: 2rem;
    transition: opacity 200ms ease;
}

#logo:hover {
    opacity: 0.8;
}

#brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: normal;
    margin-bottom: 0.5rem;
    position: relative;
    /* Min-height prevents layout shift while typing */
    min-height: 2rem;
    color: #FDFDFA;
}

/* Typewriter Cursor */
#brand-name::after {
    content: '|';
    opacity: 1;
    animation: blink 0.8s infinite;
    position: absolute;
    right: -10px;
}

.typing-complete#brand-name::after {
    display: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#tagline {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0;
    /* Faded in via JS */
    transition: opacity 0.6s ease;
    color: rgba(253, 253, 250, 0.65);
}

nav {
    width: 100%;
}

#main-nav {
    list-style: none;
    text-align: center;
}

.nav-item {
    margin-bottom: 2rem;
    opacity: 0;
    /* Faded in via JS */
    transition: opacity 0.4s ease;
}

.nav-item>a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #FDFDFA;
    transition: color 200ms ease;
}

.nav-item>a:hover {
    color: var(--accent);
}

/* Submenu */
.submenu {
    list-style: none;
    margin-top: 1rem;
    display: none;
    /* JS toggles expanding */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submenu.expanded {
    display: block;
    opacity: 1;
}

.submenu li {
    margin-bottom: 1rem;
}

.sub-link {
    font-size: 0.78rem;
    color: rgba(253, 253, 250, 0.75);
    text-transform: uppercase;
    transition: color 200ms ease;
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
}

.sub-link:hover {
    color: var(--accent);
}

/* Sidebar Social Footers */
.sidebar-socials {
    margin-top: auto;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 253, 250, 0.1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.sidebar-socials a {
    color: #FDFDFA;
    opacity: 1;
    transition: opacity 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-socials a:hover {
    opacity: 0.7;
}

/* Views (Content Area) */
.view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

.view.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

/* Hero Section */
#view-hero {
    overflow: hidden;
    background-color: var(--bg-color);
}

#hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Hover Zones & Arrows */
.hero-hover-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.33%;
    z-index: 20;
}

.hero-hover-zone.left {
    left: 0;
}

.hero-hover-zone.right {
    right: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: rgba(33, 33, 33, 0.15);
    border: none;
    color: #FDFDFA;
    transition: background-color 0.2s ease, opacity 0.2s ease, color 200ms ease;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
    /* Hover zone catches clicks/hovers */
}

.hero-hover-zone.left .slider-arrow {
    left: 0;
}

.hero-hover-zone.right .slider-arrow {
    right: 0;
}

body:not(.loading) .hero-hover-zone:hover .slider-arrow {
    opacity: 0.7;
    color: var(--accent);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(33, 33, 33, 0.3);
    transition: background-color 200ms ease;
}

.hero-dot:hover {
    background: rgba(33, 33, 33, 0.7);
}

.hero-dot.active {
    background: var(--accent);
}

.hero-caption {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
    opacity: 0;
    /* Faded in via JS */
    transition: opacity 0.8s ease;
}

.hero-caption p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent);
}

/* Gallery Section (Grid) */
#view-gallery {
    padding: 4rem 2rem 2rem;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
}

.series-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 32px;
    margin-top: 0;
    text-align: center;
    font-weight: normal;
}

.gallery-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}

.gallery-header::before,
.gallery-header::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(33, 33, 33, 0.18);
}

#gallery-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    text-transform: none;
    color: var(--text-primary);
    margin: 0 2rem;
    text-align: center;
    font-weight: 300;
}

.gallery-hero-banner {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 1200px;
}

.gallery-grid-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    cursor: crosshair;
    overflow: hidden;
}

.grid-img-original,
.grid-img-mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.4s ease;
}

.grid-img-mockup {
    opacity: 0;
    z-index: 10;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    transition: opacity 300ms ease;
    z-index: 20;
    pointer-events: none;
}

.gallery-hover-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-body);
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    opacity: 0;
    transition: opacity 300ms ease;
    z-index: 30;
    pointer-events: none;
}

.gallery-grid-item:hover .grid-img-original {
    opacity: 0;
}

.gallery-grid-item:hover .grid-img-mockup {
    opacity: 1;
}

.gallery-grid-item:hover .gallery-overlay,
.gallery-grid-item:hover .gallery-hover-title {
    opacity: 1;
}

/* For items with no mockup, preserve original on hover */
.gallery-grid-item.no-mockup:hover .grid-img-original {
    opacity: 1;
}

/* Sales View */
#view-sales {
    overflow-y: auto;
    padding: 4rem 2rem 6rem;
    justify-content: flex-start;
}

.sales-top-bar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.sales-sticky-bar {
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.sales-scroll-indicator {
    position: fixed;
    bottom: 32px;
    left: calc(var(--sidebar-width) + (100% - var(--sidebar-width)) / 2);
    transform: translateX(-50%);
    color: rgba(178, 166, 151, 0.6);
    z-index: 90;
    pointer-events: none;
    animation: salesScrollBob 1.4s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.sales-scroll-indicator.hidden {
    opacity: 0;
}

@keyframes salesScrollBob {
    0% {
        transform: translate(-50%, 0);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, 6px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0.6;
    }
}

.sales-inquire-sticky-link {
    width: 100%;
    height: 100%;
    background: #B2A697;
    border: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: background 200ms ease;
}

.sales-inquire-sticky-link:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.series-nav-container {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.series-nav-link,
.series-nav-divider {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(33, 33, 33, 0.4);
    cursor: pointer;
    transition: color 200ms ease;
    display: inline-block;
    padding: 0 8px;
}

.series-nav-link:hover {
    color: rgba(33, 33, 33, 0.8);
}

.series-nav-divider {
    cursor: default;
    padding: 0;
}

.series-nav-link.hidden,
.series-nav-divider.hidden {
    display: none !important;
}

.sales-back-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    transition: color 200ms ease;
}

.sales-back-btn:hover {
    color: var(--text-primary);
}

.sales-image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.sales-image-viewport {
    height: 65vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

#sales-active-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin: auto;
    cursor: crosshair;
    transition: opacity 300ms ease;
    opacity: 1;
}

#sales-active-image.fade-out {
    opacity: 0;
}

.view-switchers {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.view-pill {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(33, 33, 33, 0.4);
    cursor: pointer;
    transition: all 200ms ease;
}

.view-pill:hover {
    color: rgba(33, 33, 33, 0.8);
}

.view-pill.active {
    background-color: #2D2824;
    color: #FFFFFF;
}

.view-pill.hidden {
    display: none !important;
}

.sales-info-block {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

#sales-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

#sales-series {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: normal;
}

.sales-rule {
    border: none;
    border-top: 1px solid rgba(33, 33, 33, 0.1);
    margin: 16px 0;
    width: 100%;
}

.sales-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sales-inquire-btn {
    background: var(--accent);
    color: var(--btn-text);
    border: none;
    border-radius: 0;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    padding: 14px 32px;
    text-transform: uppercase;
    transition: background-color 200ms ease;
}

.sales-inquire-btn:hover {
    background: #9e9186;
    color: #FFFFFF;
}

/* About View Specifics */
#view-about {
    overflow-y: auto;
    padding: 6rem 2rem 4rem;
    align-items: center;
    justify-content: flex-start;
}

.about-top-section {
    display: flex;
    gap: 4rem;
    max-width: 900px;
    width: 100%;
    margin-bottom: 4rem;
    justify-content: center;
    align-items: flex-start;
}

.about-portrait-col {
    flex-shrink: 0;
}

.about-portrait-zone {
    width: 320px;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.about-portrait {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.about-portrait.active {
    opacity: 1;
}

.about-portrait-credits {
    position: relative;
    height: 20px;
    margin-top: 8px;
    text-align: right;
}

.portrait-credit {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.65rem;
    font-style: italic;
    color: rgba(33, 33, 33, 0.45);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 1s ease;
}

.portrait-credit.active {
    opacity: 1;
}

.about-bio-col {
    max-width: 420px;
    text-align: left;
}

.about-name {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: normal;
    margin-top: 0;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: normal;
}

.about-rule {
    border: none;
    border-top: 1px solid rgba(33, 33, 33, 0.1);
    width: 48px;
    margin: 20px 0;
}

.about-pullquote {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent);
    font-style: italic;
    max-width: 380px;
    margin-bottom: 2rem;
    font-weight: normal;
    line-height: 1.4;
}

.about-copy p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-copy .about-closing {
    margin-top: 1.6em;
}

.about-recognition-container {
    width: 100%;
    max-width: 800px;
    margin-top: 4rem;
}

.recognition-section {
    margin-bottom: 3.5rem;
}

.recognition-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: normal;
}

.recognition-rule {
    border: none;
    border-top: 1px solid rgba(33, 33, 33, 0.1);
    width: 100%;
    margin-bottom: 28px;
}

.recognition-content {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.awards-img {
    display: block;
    max-width: 480px;
    width: 100%;
    margin: 0 auto 16px;
    opacity: 0.85;
}

.recognition-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rec-row {
    display: flex;
    align-items: flex-start;
}

.rec-left {
    min-width: 160px;
    color: var(--accent);
    flex-shrink: 0;
}

.rec-right {
    flex: 1;
}

.cover-tag {
    color: var(--accent);
}

/* Pricing Section */
.pricing-cards-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    margin-top: 32px;
}

.pricing-card {
    flex: 1;
    border: 1px solid rgba(33, 33, 33, 0.1);
    background: transparent;
    padding: 28px;
    text-align: center;
}

.pricing-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-detail {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-top: 8px;
}

.pricing-paper {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(33, 33, 33, 0.55);
    margin-top: 4px;
}

.pricing-note {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-style: italic;
    color: var(--accent);
    margin-top: 8px;
}

.pricing-footer-note {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(33, 33, 33, 0.5);
    font-style: italic;
    text-align: center;
    margin-top: 24px;
    line-height: 1.6;
}

.inquiry-rule {
    border: none;
    border-top: 1px solid rgba(33, 33, 33, 0.08);
    margin: 36px 0;
}

.inquiry-cta-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(33, 33, 33, 0.5);
    font-style: italic;
    text-align: center;
    margin-bottom: 24px;
}

.form-footer-note {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(33, 33, 33, 0.45);
    text-align: center;
    margin-top: 12px;
}

/* Limited Editions View */
#view-limited-editions {
    overflow-y: auto;
    padding: 6rem 2rem 4rem;
    align-items: center;
}

.le-hero-text {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.le-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 2rem;
    color: var(--text-primary);
    font-weight: normal;
}

.le-subhead {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-top: 16px;
}

.le-rule {
    border: none;
    border-top: 1px solid rgba(33, 33, 33, 0.1);
    width: 60px;
    margin: 32px auto;
}

.le-email-link {
    color: var(--accent);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.le-email-link:hover {
    text-decoration: underline;
}

.le-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 800px;
    margin-bottom: 5rem;
}

.le-col {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.le-numeral {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: rgba(33, 33, 33, 0.08);
    display: block;
    margin-bottom: 0.5rem;
}

.le-col-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: normal;
}

.le-col-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.le-table-section {
    width: 100%;
    max-width: 800px;
    margin-bottom: 5rem;
}

.le-table-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: normal;
    text-align: center;
}

.le-table {
    width: 100%;
    border-top: 1px solid rgba(33, 33, 33, 0.1);
}

.le-table-header,
.le-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 2fr;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.le-table-header {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.le-row {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.status-open {
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.status-sold {
    color: rgba(33, 33, 33, 0.35);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.le-table-note {
    font-style: italic;
    font-size: 0.65rem;
    color: rgba(33, 33, 33, 0.5);
    text-align: center;
    margin-top: 1.5rem;
}

.le-cta-section {
    text-align: center;
    padding-bottom: 4rem;
}

.le-cta-text {
    font-size: 1rem;
    color: var(--text-primary);
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.le-cta-btn {
    background: var(--accent);
    color: var(--btn-text);
    border: none;
    border-radius: 0;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    padding: 14px 32px;
    text-transform: uppercase;
    transition: background-color 200ms ease;
}

.le-cta-btn:hover {
    background: #9e9186;
    color: #FFFFFF;
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(253, 253, 250, 0.96);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-image: url('/assets/background.png?v=3');
    background-repeat: repeat;
    background-size: auto;
    background-color: #FDFDFA;
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    transition: color 200ms ease;
}

.modal-close:hover {
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(33, 33, 33, 0.2);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    border-radius: 0;
    /* Square corners */
}

.regarding-block {
    padding: 14px 0;
    border-top: 1px solid rgba(33, 33, 33, 0.08);
    border-bottom: 1px solid rgba(33, 33, 33, 0.08);
    margin: 4px 0 16px;
    text-align: left;
}

.regarding-block.hidden {
    display: none;
}

.regarding-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.regarding-value {
    font-family: var(--font-body);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.form-group input[readonly] {
    background: rgba(33, 33, 33, 0.03);
    color: var(--accent);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--btn-text);
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    transition: background-color 200ms ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #9e9186;
    color: #FFFFFF;
}

.hidden {
    display: none !important;
}

#success-message {
    text-align: center;
    padding: 2rem 0;
}

/* Tablet Media Query (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Overrides (< 768px) */
#mobile-top-bar {
    display: none;
}

#mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FDFDFA;
    z-index: 200;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 24px;
    color: #212121;
    background: none;
    border: none;
    transition: color 200ms ease;
}

#mobile-menu-close:hover {
    color: var(--accent);
}

.mobile-nav-item {
    margin-bottom: 2rem;
    text-align: center;
    list-style: none;
}

.mobile-nav-item>a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #212121;
    text-decoration: none;
    transition: color 200ms ease;
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
}

.mobile-nav-item>a:hover,
.mobile-nav-item>a:active {
    color: #B2A697;
}

.mobile-submenu {
    display: none;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.mobile-submenu.expanded {
    display: block;
}

.mobile-submenu li {
    margin-bottom: 1rem;
}

.mobile-sub-link {
    font-size: 0.9rem;
    color: #B2A697;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
}

@media (max-width: 768px) {
    #mobile-top-bar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #FDFDFA;
        border-bottom: 1px solid rgba(33, 33, 33, 0.08);
        z-index: 100;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-logo {
        max-height: 36px;
        width: auto;
        margin-left: 16px;
    }

    #mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-right: 20px;
        background: none;
        border: none;
        color: #212121;
        transition: color 200ms ease;
    }

    #mobile-menu-toggle:hover {
        color: var(--accent);
    }

    #sidebar {
        display: none !important;
    }

    #content-area {
        margin-left: 0;
    }

    /* Views mobile tweaks */
    #view-hero,
    .view {
        padding-top: calc(60px + 2rem);
    }

    #hero-slider,
    .hero-slide {
        height: 70vh;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Remove arrows on mobile or make them smaller */
    .slider-arrow {
        width: 30px;
        height: 45px;
    }

    .pricing-cards-container {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .le-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .le-table-header,
    .le-row {
        font-size: 0.75rem;
        text-align: center;
    }

    .le-heading {
        font-size: 1.5rem;
    }

    .about-top-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-portrait-zone {
        width: 100%;
        max-width: 320px;
    }

    .about-bio-col {
        text-align: center;
    }

    .about-rule {
        margin: 20px auto;
    }

    .about-awards-img {
        max-width: 100%;
        padding: 0 1rem;
    }

    .rec-row {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 16px;
    }

    .sales-sticky-bar {
        left: 0;
        width: 100%;
        height: 52px;
    }

    .sales-scroll-indicator {
        left: 50%;
        bottom: 32px;
    }
}

/* --- Scroll Animation Classes --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 520ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-rule {
    max-width: 0 !important;
    opacity: 1;
    transition: max-width 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-rule.is-visible {
    max-width: 100% !important;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        transform: none !important;
        transition-duration: 150ms !important;
    }

    .scroll-animate-rule {
        transition-duration: 150ms !important;
    }
}