/* CSS Design System for Maison de Chann (Luxury Aesthetic) */

:root {
    --bg-dark: #F8F9FA;
    --bg-card: #0b2114;
    --bg-card-hover: #123320;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #9a761e;
    --brand-green: #22323F;
    --brand-green-light: #314b5e;
    --brand-green-hover: #3d5d74;
    --ink-dark: #243228;
    --text-base: #243228;
    --text-base-muted: #5a615d;
    --red-wine: #630c17;
    --red-wine-glow: rgba(99, 12, 23, 0.4);
    --white-wine-glow: rgba(212, 175, 55, 0.3);
    --text-light: #f5f5f7;
    --text-muted: #a1a1a6;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-color-hover: rgba(212, 175, 55, 0.5);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    background-color: var(--bg-dark);
    color: var(--text-base);
    font-family: 'Sarabun', sans-serif;
    overflow-x: hidden;
}

body {
    position: relative;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}


/* Typography */
h1, h2, h3, h4, .logo, .loader-logo, .gold-subtitle {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    letter-spacing: 0.15em;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-base) 15%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-base-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

strong {
    color: var(--brand-green);
    font-weight: 500;
}

/* Thai text should not use Latin-style tracking */
html[lang="th"] h1,
html[lang="th"] h2,
html[lang="th"] h3,
html[lang="th"] h4,
html[lang="th"] p,
html[lang="th"] .logo,
html[lang="th"] .loader-logo,
html[lang="th"] .loader-sub,
html[lang="th"] .gold-subtitle,
html[lang="th"] .nav-item,
html[lang="th"] .nav-btn,
html[lang="th"] .hero-tagline,
html[lang="th"] .hero-title,
html[lang="th"] .btn-primary,
html[lang="th"] .btn-secondary,
html[lang="th"] .btn-product-detail,
html[lang="th"] .scroll-indicator span,
html[lang="th"] .section-desc,
html[lang="th"] .badge-desc,
html[lang="th"] .product-category,
html[lang="th"] .input-group label,
html[lang="th"] .btn-submit,
html[lang="th"] .modal-spec-section h4,
html[lang="th"] .modal-pairing h4,
html[lang="th"] .contact-info-label,
html[lang="th"] .footer-tag,
html[lang="th"] .footer-title {
    letter-spacing: normal !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(34, 50, 63, 0.58);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-green);
}

/* Loader Screen */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-slow);
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2.2rem;
    color: var(--text-base);
    margin-bottom: 15px;
    letter-spacing: 0.3em;
    animation: fadeInText 1.5s ease forwards;
}

.loader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
    animation: expandLine 1.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loader-sub {
    margin-top: 15px;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.loader-fade-out {
    opacity: 0;
    pointer-events: none;
}

@keyframes expandLine {
    to { width: 250px; }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom layout container */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.max-width-small {
    max-width: 800px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
    padding: 1.85rem 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(248, 249, 250, 0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Srisakdi', 'Prompt', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-item {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
    text-transform: uppercase;
}

.nav-item:hover {
    color: var(--gold-primary);
}

.navbar.scrolled .nav-item {
    color: rgba(36, 50, 40, 0.86);
}

.navbar.scrolled .nav-item:hover {
    color: var(--gold-dark);
}

.nav-btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    background: transparent;
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--gold-primary);
    color: var(--ink-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.navbar.scrolled .logo {
    background: linear-gradient(135deg, var(--text-base) 20%, #b8892d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--text-base);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all var(--transition-fast);
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow-x: clip;
    overflow-y: visible;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/sanaejan.webp');
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    padding: 7rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: min(520px, 80vw);
    height: auto;
    object-fit: contain;
    margin-bottom: 2.5rem;
    pointer-events: none;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #ffffff 40%, #edd8a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #dedede;
    margin-bottom: 3rem;
    line-height: 1.8;
    word-break: keep-all;
    word-wrap: break-word;
    pointer-events: none;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 30;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1rem 2.2rem;
    background: var(--gold-primary);
    color: var(--bg-dark);
    border: 1px solid var(--gold-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    z-index: 30;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
    user-select: none;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.hero-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(231, 218, 188, 0.36);
    border-radius: 999px;
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: 0 12px 26px rgba(29, 51, 64, 0.18);
}

.hero-buttons .btn-primary:hover {
    background: rgba(231, 218, 188, 0.2);
    color: #fff7e6;
    border-color: rgba(231, 218, 188, 0.58);
    box-shadow: 0 16px 32px rgba(29, 51, 64, 0.24);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1rem 2.2rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    z-index: 30;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
    user-select: none;
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.nav-btn,
.btn-primary,
.btn-secondary,
.btn-product-detail,
.btn-carousel-detail,
.btn-submit,
.product-switch-btn,
.product-tab,
.floating-contact-toggle,
.floating-action,
.close-modal {
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
}

.nav-btn *,
.btn-primary *,
.btn-secondary *,
.btn-product-detail *,
.btn-carousel-detail *,
.btn-submit *,
.product-switch-btn *,
.product-tab *,
.floating-contact-toggle *,
.floating-action * {
    cursor: pointer;
    pointer-events: none;
}

.nav-btn,
.btn-carousel-detail,
.btn-submit,
.product-switch-btn,
.product-tab,
.floating-contact-toggle,
.floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: rgba(245, 245, 247, 0.78);
    pointer-events: none;
}

.scroll-dot {
    width: 16px;
    height: 16px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: translateX(-50%) rotate(45deg);
    animation: scrollArrowDown 1.5s infinite;
}

@keyframes scrollArrowDown {
    0% { top: -2px; opacity: 0.35; }
    50% { top: 4px; opacity: 1; }
    100% { top: 10px; opacity: 0.25; }
}

/* Sections Header */
.section-header {
    margin-bottom: 3.5rem;
}

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

.gold-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--brand-green);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-desc {
    max-width: 1000px;
    margin: 0 auto;
}

/* Heritage Section styling */
.heritage {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(156, 166, 176, 0.12) 0%, var(--bg-dark) 80%);
}

.heritage-text {
    padding-right: 2rem;
}

.heritage-quote {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 1.15rem;
    color: var(--brand-green);
    border-left: 2px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin-top: 2.5rem;
    font-style: italic;
    line-height: 1.6;
}

.heritage-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.gold-frame {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    padding: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: border-color var(--transition-slow);
}

.gold-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}

.gold-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

.gold-frame:hover {
    border-color: var(--gold-primary);
}

.frame-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 7, 8, 0.8) 0%, transparent 100%);
}

.badge {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(7, 7, 8, 0.95);
    border: 1px solid var(--gold-primary);
    padding: 1.5rem;
    text-align: center;
    width: min(82%, 280px);
}

.badge-title {
    display: block;
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.badge-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

/* Collection / Products Styling */
.collection {
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-top: 4rem;
}

.product-card {
    background: #1D3340;
    border: 1px solid var(--border-color-hover);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all var(--transition-slow);
}

.product-card:hover {
    transform: translateY(0);
    border-color: var(--border-color);
    background: rgba(14, 22, 18, 0.92);
    box-shadow: none;
}

.product-card-switch {
    padding-top: 3rem;
}

.product-card-switch:hover {
    background:
        radial-gradient(circle at 50% 22%, rgba(212, 175, 55, 0.14) 0%, transparent 38%),
        linear-gradient(160deg, #263f4d 0%, #182a35 100%);
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.42);
}

.wine-showcase.red-active {
    background:
        radial-gradient(circle at 50% 24%, rgba(177, 82, 92, 0.18) 0%, transparent 36%),
        linear-gradient(160deg, #4f1823 0%, #2a1118 72%);
    border-color: rgba(177, 82, 92, 0.28);
}

.wine-showcase.red-active:hover {
    background:
        radial-gradient(circle at 50% 24%, rgba(238, 119, 128, 0.24) 0%, transparent 38%),
        linear-gradient(160deg, #7b2433 0%, #3b121d 74%);
    border-color: rgba(238, 119, 128, 0.42);
}

.wine-showcase.white-active {
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 241, 179, 0.32) 0%, transparent 36%),
        linear-gradient(160deg, #fff9e8 0%, #f2ead1 58%, #d8c79b 100%);
    border-color: rgba(178, 145, 50, 0.3);
    box-shadow: 0 20px 40px rgba(36, 50, 40, 0.18);
}

.wine-showcase.white-active:hover {
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 241, 179, 0.38) 0%, transparent 38%),
        linear-gradient(160deg, #fffdf2 0%, #efe0b8 58%, #c9aa63 100%);
    border-color: rgba(178, 145, 50, 0.46);
}

.wine-showcase.white-active .product-category {
    color: #8b6d1e;
}

.wine-showcase.white-active .product-name {
    color: var(--text-base);
}

.wine-showcase.white-active .product-desc {
    color: rgba(36, 50, 40, 0.84);
}

.wine-showcase.white-active .btn-product-detail {
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(139, 109, 30, 0.34);
    color: #6f5618;
}

.wine-showcase.white-active .btn-product-detail:hover {
    background: #8b6d1e;
    border-color: #8b6d1e;
    color: #ffffff;
}

.product-switch {
    display: inline-flex;
    align-self: center;
    gap: 0.4rem;
    padding: 0.35rem;
    margin-bottom: 1.75rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(231, 218, 188, 0.18);
    border-radius: 999px;
    position: relative;
    z-index: 8;
}

.wine-showcase.white-active .product-switch {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(139, 109, 30, 0.18);
}

.product-switch-btn {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(245, 245, 247, 0.7);
    cursor: pointer;
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.66rem 1rem;
    white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.product-switch-btn.active {
    background: rgba(231, 218, 188, 0.28);
    color: #fff7e6;
}

.product-switch-btn:hover {
    transform: translateY(-1px);
}

.wine-showcase.white-active .product-switch-btn {
    color: var(--text-base-muted);
}

.wine-showcase.white-active .product-switch-btn.active {
    background: rgba(139, 109, 30, 0.22);
    color: #5b4615;
}

.wine-showcase.red-active .product-switch-btn.active,
.modal-content.modal-red-wine .modal-product-switch .product-switch-btn.active {
    background: rgba(238, 119, 128, 0.24);
    color: #fff2f2;
}

.modal-content.modal-spirit .modal-product-switch .product-switch-btn.active {
    background: rgba(231, 218, 188, 0.28);
    color: #fff7e6;
}

.modal-content.modal-white-wine .modal-product-switch .product-switch-btn.active {
    background: rgba(139, 109, 30, 0.22);
    color: #5b4615;
}

.modal-content.modal-red-wine .modal-product-switch {
    border-color: rgba(238, 119, 128, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.modal-content.modal-spirit .modal-product-switch {
    border-color: rgba(231, 218, 188, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

.modal-content.modal-red-wine .modal-product-switch .product-switch-btn {
    color: rgba(255, 242, 242, 0.72);
}

.modal-content.modal-spirit .modal-product-switch .product-switch-btn {
    color: rgba(245, 245, 247, 0.7);
}

.modal-content.modal-red-wine .modal-product-switch .product-switch-btn.active,
.modal-content.modal-spirit .modal-product-switch .product-switch-btn.active,
.modal-content.modal-white-wine .modal-product-switch .product-switch-btn.active {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-variant {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-variant[hidden] {
    display: none;
}

.product-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.product-img {
    max-width: 100%;
    height: 420px;
    object-fit: contain;
    z-index: 5;
    transform: scale(1.05);
    transition: transform var(--transition-slow);
    pointer-events: none;
}

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

.product-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
    opacity: 0.35;
    z-index: 1;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.product-card:hover .product-glow {
    opacity: 0.15;
}

.white-glow {
    background-color: var(--gold-primary);
}

.red-glow {
    background-color: #7e1829;
}

.white-wine-glow {
    background-color: #f3e5ab;
}

.wine-product-img {
    width: 100%;
    object-fit: contain;
    border-radius: 1.25rem;
    filter: saturate(1.02);
    opacity: 1;
}

.white-active .wine-product-img {
    mix-blend-mode: normal;
    filter: saturate(0.98);
    opacity: 1;
}

.product-info {
    width: 100%;
    text-align: center;
    z-index: 5;
    position: relative;
}

.product-info:has(.btn-product-detail:hover) {
    cursor: pointer;
}

.product-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-desc {
    font-size: 0.95rem;
    color: rgba(245, 245, 247, 0.9);
    margin-bottom: 2rem;
    min-height: 80px;
}

.btn-product-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    padding: 0.8rem 2rem;
    min-height: 48px;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 20;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
    user-select: none;
    transition: all var(--transition-medium);
}

.btn-product-detail *,
.btn-product-detail::before,
.btn-product-detail::after {
    cursor: pointer;
}

.btn-product-detail:hover {
    border-color: var(--gold-primary);
    color: #ffffff;
    background: rgba(212, 175, 55, 0.18);
}

.product-carousel {
    margin-top: 4.5rem;
}

.product-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.carousel-title {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 1.65rem;
    color: var(--text-base);
    margin: 0;
}

.product-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    background: #ffffff;
    border: 1px solid rgba(34, 50, 63, 0.18);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(36, 50, 40, 0.08);
    overflow-x: auto;
    max-width: 100%;
}

.product-tab {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-base-muted);
    cursor: pointer;
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.product-tab.active {
    background: var(--brand-green-light);
    color: #ffffff;
}

.product-carousel-panel {
    position: relative;
}

.product-carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 0.25rem 0 1rem;
    -webkit-overflow-scrolling: touch;
}

.product-carousel-track::-webkit-scrollbar {
    height: 8px;
}

.product-carousel-track::-webkit-scrollbar-track {
    background: rgba(36, 50, 40, 0.08);
    border-radius: 999px;
}

.product-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(34, 50, 63, 0.55);
    border-radius: 999px;
}

.carousel-product-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 0;
    scroll-snap-align: start;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 250, 0.96) 100%);
    border: 1px solid rgba(34, 50, 63, 0.18);
    border-radius: 1.4rem;
    padding: 1.25rem;
    box-shadow: 0 18px 34px rgba(36, 50, 40, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

.carousel-product-card.white-vine-card {
    background:
        linear-gradient(180deg, rgba(255, 253, 239, 0.96) 0%, rgba(245, 248, 242, 0.98) 100%);
    border-color: rgba(178, 145, 50, 0.24);
}

.carousel-product-card.red-vine-card {
    background:
        linear-gradient(180deg, rgba(123, 36, 51, 0.96) 0%, rgba(74, 23, 35, 0.98) 58%, rgba(38, 11, 18, 0.98) 100%);
    border-color: rgba(238, 119, 128, 0.3);
}

.carousel-product-art {
    height: 190px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.carousel-product-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spirit-art {
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.2), rgba(29, 51, 64, 0.08) 62%);
}

.processed-art {
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15), rgba(36, 50, 40, 0.05) 62%);
}

.carousel-product-card.spirit-card {
    background: var(--brand-green-light);
    border-color: rgba(231, 218, 188, 0.28);
}

.carousel-product-card.spirit-card .carousel-product-type {
    color: var(--gold-light);
}

.carousel-product-card.spirit-card h4 {
    color: #ffffff;
}

.carousel-product-card.spirit-card p {
    color: rgba(245, 245, 247, 0.84);
}

.carousel-product-card.spirit-card .btn-carousel-detail {
    background: transparent;
    border-color: rgba(243, 229, 171, 0.44);
    color: #ffffff;
}

.carousel-product-card.spirit-card .btn-carousel-detail:hover {
    background: rgba(243, 229, 171, 0.18);
    border-color: var(--gold-light);
}

.white-vine-art {
    background:
        linear-gradient(135deg, rgba(255, 250, 218, 0.9), rgba(234, 241, 231, 0.9));
}

.white-vine-art img {
    object-fit: contain;
    mix-blend-mode: normal;
    opacity: 1;
}

.red-vine-art {
    background:
        radial-gradient(circle at 50% 28%, rgba(238, 119, 128, 0.22) 0%, transparent 48%),
        linear-gradient(135deg, rgba(123, 36, 51, 0.92), rgba(55, 14, 25, 0.96));
}

.red-vine-art img {
    object-fit: contain;
    opacity: 1;
    filter: saturate(1.04);
}

.carousel-product-type {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    color: var(--brand-green);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.red-vine-card .carousel-product-type {
    color: var(--gold-light);
}

.carousel-product-card h4 {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    color: var(--text-base);
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.red-vine-card h4 {
    color: #ffffff;
}

.carousel-product-card p {
    color: var(--text-base-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.red-vine-card p {
    color: rgba(245, 245, 247, 0.84);
}

.btn-carousel-detail {
    margin-top: auto;
    border: 1px solid rgba(34, 50, 63, 0.32);
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-green);
    cursor: pointer;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-carousel-detail:hover {
    background: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
}

.red-vine-card .btn-carousel-detail {
    background: transparent;
    border-color: rgba(243, 229, 171, 0.44);
    color: #ffffff;
}

.red-vine-card .btn-carousel-detail:hover {
    background: rgba(243, 229, 171, 0.18);
    border-color: var(--gold-light);
}

/* Craftsmanship / Process section */
.craftsmanship {
    position: relative;
    background-image: url('assets/sanaejan.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}

.craftsmanship-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(92, 108, 132, 0.5) 0%, rgba(92, 108, 132, 0.64) 100%),
        linear-gradient(120deg, rgba(212, 175, 55, 0.06) 0%, rgba(146, 160, 181, 0.16) 100%);
}

.craftsmanship .section-container {
    position: relative;
    z-index: 5;
}

.craftsmanship .gold-subtitle {
    color: var(--gold-light);
}

.craftsmanship .section-header h2 {
    background: linear-gradient(135deg, #ffffff 18%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(248, 249, 250, 0.94);
    border: 1px solid rgba(36, 50, 40, 0.08);
    padding: 3rem 2rem;
    box-shadow: 0 18px 36px rgba(36, 50, 40, 0.12);
    transition: all var(--transition-medium);
}

.step-card:hover {
    border-color: var(--brand-green);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(36, 50, 40, 0.16);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 3rem;
    color: var(--brand-green);
    opacity: 0.5;
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: opacity var(--transition-medium);
}

.step-card:hover .step-number {
    opacity: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--text-base);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-base-muted);
    margin-bottom: 0;
}

/* Reservation / Inquiry Form */
.reserve {
    background: radial-gradient(circle at 90% 10%, rgba(156, 166, 176, 0.12) 0%, var(--bg-dark) 82%);
    padding-bottom: 0;
}

.reserve .section-container {
    padding-bottom: 0.5rem;
}

.reserve-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4rem;
    position: relative;
}

.form-row {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2rem;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    background: rgba(7, 7, 8, 0.6);
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: var(--text-light);
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-medium);
    border-radius: 0;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.input-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-submit {
    position: relative;
    padding: 1.2rem 3.5rem;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: 'Sarabun', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.btn-submit .btn-text {
    position: relative;
    z-index: 5;
}

.btn-submit .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.btn-submit:hover {
    color: var(--ink-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-submit:hover .btn-glow {
    width: 350px;
    height: 350px;
}

/* Modal Details */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 8, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
    padding: 2rem;
}

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

.modal-content {
    background: #1D3340;
    border: 1px solid var(--gold-primary);
    width: 100%;
    max-width: 1120px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    padding: 0;
    transform: scale(0.9);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.modal-body-scroll {
    overflow-y: auto;
    padding: 4rem;
    width: 100%;
    height: 100%;
    max-height: 90vh;
}

.modal-content.modal-spirit {
    background:
        radial-gradient(circle at 24% 28%, rgba(212, 175, 55, 0.12) 0%, transparent 32%),
        linear-gradient(160deg, #263f4d 0%, #182a35 100%);
    border-color: rgba(212, 175, 55, 0.34);
}

.modal-content.modal-red-wine {
    background:
        radial-gradient(circle at 24% 28%, rgba(238, 119, 128, 0.18) 0%, transparent 34%),
        linear-gradient(160deg, #7b2433 0%, #4a1723 58%, #260b12 100%);
    border-color: rgba(238, 119, 128, 0.34);
}

.modal-content.modal-white-wine {
    background:
        radial-gradient(circle at 24% 28%, rgba(255, 241, 179, 0.36) 0%, transparent 34%),
        linear-gradient(160deg, #fffdf2 0%, #efe0b8 58%, #c9aa63 100%);
    border-color: rgba(178, 145, 50, 0.42);
}

.modal-content.modal-white-wine .close-modal,
.modal-content.modal-white-wine .modal-details p,
.modal-content.modal-white-wine .spec-val,
.modal-content.modal-white-wine .modal-pairing p {
    color: var(--text-base);
}

.modal-content.modal-white-wine .modal-details h2 {
    background: linear-gradient(135deg, var(--text-base) 20%, #8b6d1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content.modal-white-wine .modal-details .product-category,
.modal-content.modal-white-wine .modal-spec-section h4,
.modal-content.modal-white-wine .modal-pairing h4 {
    color: #6f5618;
}

.modal-content.modal-white-wine .spec-label {
    color: rgba(36, 50, 40, 0.68);
}

.modal-content.modal-white-wine .modal-spec-section,
.modal-content.modal-white-wine .modal-pairing {
    border-color: rgba(139, 109, 30, 0.24);
}

.modal-content.modal-white-wine .modal-details .btn-primary {
    background: #8b6d1e;
    border-color: #8b6d1e;
}

.modal-content.modal-white-wine .modal-details .btn-primary:hover {
    background: transparent;
    color: #6f5618;
    border-color: #8b6d1e;
}

.modal-content.modal-herbal {
    background:
        radial-gradient(circle at 24% 28%, rgba(243, 229, 171, 0.18) 0%, transparent 34%),
        linear-gradient(160deg, #4a3b1a 0%, #2b2210 58%, #1a140a 100%);
    border-color: rgba(212, 175, 55, 0.4);
}

.modal-content.modal-herbal .modal-details .product-category,
.modal-content.modal-herbal .modal-spec-section h4,
.modal-content.modal-herbal .modal-pairing h4 {
    color: #e9d9a8;
}

.modal-content.modal-herbal .modal-details .btn-primary {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #1a140a;
}

.modal-content.modal-herbal .modal-details .btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.32);
}

.modal-content.modal-processed {
    background:
        radial-gradient(circle at 24% 28%, rgba(224, 168, 78, 0.22) 0%, transparent 34%),
        linear-gradient(160deg, #5a3c12 0%, #331f08 58%, #1c1105 100%);
    border-color: rgba(184, 134, 11, 0.45);
}

.modal-content.modal-processed .modal-details .product-category,
.modal-content.modal-processed .modal-spec-section h4,
.modal-content.modal-processed .modal-pairing h4 {
    color: #f0c986;
}

.modal-content.modal-processed .modal-details .btn-primary {
    background: #c9820b;
    border-color: #c9820b;
    color: #1c1105;
}

.modal-content.modal-processed .modal-details .btn-primary:hover {
    background: transparent;
    color: #e0a84e;
    border-color: #e0a84e;
    box-shadow: 0 0 25px rgba(184, 134, 11, 0.35);
}

.modal.open .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2200;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.close-modal:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.modal-grid {
    display: grid;
    grid-template-columns: minmax(360px, 48%) 1fr;
    gap: 3rem;
    align-items: center;
}

.modal-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 620px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.modal-bottle-img {
    max-width: 100%;
    width: 100%;
    height: min(68vh, 620px);
    object-fit: contain;
}

.modal-product-switch {
    margin: 1.25rem 0 0;
}

.modal-content.modal-white-wine .modal-product-switch {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(139, 109, 30, 0.18);
}

.modal-content.modal-white-wine .modal-product-switch .product-switch-btn {
    color: var(--text-base-muted);
}

.modal-content.modal-white-wine .modal-product-switch .product-switch-btn.active {
    background: rgba(139, 109, 30, 0.22);
    color: #5b4615;
}

.modal-product-switch[hidden] {
    display: none;
}

.modal-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 20%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-details .product-category {
    color: #b8c4d7;
}

.modal-details p {
    color: rgba(245, 245, 247, 0.9);
}

.modal-spec-section {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.modal-spec-section h4, .modal-pairing h4 {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    color: #b8c4d7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.specs-grid-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.75rem;
    color: rgba(245, 245, 247, 0.68);
}

.spec-val {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.modal-pairing {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.modal-details .btn-primary {
    background: var(--brand-green-light);
    border-color: var(--brand-green-light);
    border-radius: 999px;
    color: var(--text-light);
}

.modal-details .btn-primary:hover {
    background: transparent;
    color: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    box-shadow: 0 0 25px rgba(49, 75, 94, 0.28);
}


.modal-content.modal-red-wine .modal-details .btn-primary {
    background: var(--red-wine);
    border-color: var(--red-wine);
    color: #ffffff;
}

.modal-content.modal-red-wine .modal-details .btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 25px rgba(99, 12, 23, 0.4);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-info-item:first-child {
    align-items: flex-start;
}

.contact-info-label {
    color: var(--brand-green);
    font-weight: 600;
    font-family: 'Prompt', 'Sarabun', sans-serif;
    min-width: 90px;
    display: inline-block;
}

.contact-info-value {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-info-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-address {
    line-height: 1.6;
}

.contact-info-strong {
    color: var(--text-base);
    font-weight: 500;
}

.contact-info-accent {
    color: var(--brand-green);
    font-weight: 500;
}

.contact-line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: #06c755;
    border: 1px solid #06c755;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition-medium);
}

.contact-line-btn:hover {
    background: transparent;
    color: #06c755;
    box-shadow: 0 0 20px rgba(6, 199, 85, 0.2);
}

.map-container {
    border: 1px solid var(--border-color);
    position: relative;
    height: 420px;
    width: 100%;
    overflow: hidden;
}

.map-frame {
    border: 0;
    opacity: 0.95;
}

.floating-contact {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
    pointer-events: none;
}

.floating-contact-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility 0s linear var(--transition-medium);
}

.floating-contact.open .floating-contact-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.floating-contact-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    gap: 0;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: var(--brand-green-light);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(36, 50, 40, 0.22);
    cursor: pointer;
    pointer-events: auto;
    transition: transform var(--transition-fast), box-shadow var(--transition-medium), background var(--transition-medium);
}

.floating-contact-toggle:hover {
    transform: translateY(-2px);
    background: var(--brand-green-hover);
    box-shadow: 0 22px 40px rgba(36, 50, 40, 0.28);
}

.floating-contact-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.floating-contact-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.floating-contact-label {
    position: absolute;
    top: 50%;
    right: calc(100% + 0.65rem);
    transform: translateY(-50%);
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(43, 63, 79, 0.92);
    box-shadow: 0 10px 22px rgba(34, 50, 63, 0.16);
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    pointer-events: none;
}

.floating-action {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 220px;
    justify-content: flex-start;
    padding: 0.75rem 1rem 0.75rem 0.8rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(36, 50, 40, 0.14);
    transition: transform var(--transition-fast), box-shadow var(--transition-medium), background var(--transition-medium);
    pointer-events: none !important;
}

.floating-contact.open .floating-action {
    pointer-events: auto !important;
}

.floating-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(36, 50, 40, 0.2);
}

.floating-action-line {
    background: #06c755;
    color: #ffffff;
}

.floating-action-call {
    background: #ffffff;
    color: var(--text-base);
    border: 1px solid rgba(36, 50, 40, 0.08);
}

.floating-action-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.floating-action-line .floating-action-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.floating-action-icon-call {
    background: var(--brand-green);
    color: #ffffff;
    font-size: 1rem;
}

.floating-action-text {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: currentColor;
    white-space: nowrap;
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 6rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-slogan {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-green);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
}

.footer-col h4 {
    color: var(--text-base);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.footer-col a {
    display: block;
    color: var(--text-base-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.warning-text {
    display: block;
    font-size: 0.75rem;
    color: #cc3333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(36, 50, 40, 0.12);
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

/* Animations using Interaction Observer */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(40px);
    }
}

/* Fade-in transitions for Hero */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: simpleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes simpleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .section-container {
        padding: 6rem 1.75rem;
    }

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

    .heritage-text {
        padding-right: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 4rem auto 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .distributors {
        padding: 6rem 0;
    }

    .modal-content {
        padding: 3rem 2rem;
    }

    .map-container {
        height: 380px;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 320px);
        height: 100vh;
        height: 100svh;
        background: var(--brand-green-light);
        border-left: 1px solid rgba(231, 218, 188, 0.15);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right var(--transition-medium);
        padding: 2rem;
    }

    .nav-links .nav-item {
        color: #ffffff !important;
    }

    .nav-links .nav-item:hover {
        color: var(--gold-primary) !important;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .section-container {
        padding: 5rem 1.5rem;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .logo {
        font-size: 1.45rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        align-items: center;
    }

    .hero-content {
        min-height: 100vh;
        min-height: 100svh;
        width: 100%;
        justify-content: center;
        padding: 6.5rem 1.5rem 2.5rem;
    }

    .hero-logo {
        width: min(520px, 80vw);
        height: auto;
        object-fit: contain;
        margin-bottom: 2.5rem;
    }

    .hero-tagline {
        font-size: 0.78rem;
        letter-spacing: 0.2em;
    }

    .hero-title {
        letter-spacing: 0.12em;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: min(100%, 360px);
    }

    .btn-primary,
    .btn-secondary,
    .btn-product-detail,
    .btn-carousel-detail {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-height: 52px;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .badge {
        top: auto;
        bottom: 1rem;
        transform: translateX(-50%);
        padding: 1rem 0.9rem;
    }

    .badge-title {
        font-size: 1rem;
    }

    .badge-desc {
        font-size: 0.68rem;
    }
    
    .reserve-form {
        padding: 2.5rem 1.5rem;
    }
    
    .modal-content {
        padding: 2.5rem 1.25rem 1.5rem;
        max-height: min(92vh, 92svh);
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-visual {
        min-height: min(58vh, 520px);
        padding: 0.75rem;
    }
    
    .modal-bottle-img {
        height: min(52vh, 480px);
    }

    .specs-grid-detail {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 2rem 1.5rem;
    }

    .product-img {
        height: 300px;
        max-width: 100%;
    }

    .product-image-container {
        margin-bottom: 1.5rem;
    }

    .product-name {
        font-size: 1.55rem;
    }

    .product-carousel-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .product-tabs {
        width: 100%;
    }

    .carousel-product-card {
        flex-basis: calc((100% - 1rem) / 2);
        min-height: 430px;
        padding: 1rem;
    }

    .carousel-product-art {
        height: 160px;
    }

    .carousel-product-card h4 {
        font-size: 1rem;
    }

    .note-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .category-header {
        align-items: flex-start;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .contact-info-label {
        min-width: 0;
    }

    .map-container {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1.1rem 0;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        min-height: 100vh;
        min-height: 100svh;
        padding: 5.75rem 1rem 2rem;
    }

    .section-container {
        padding: 4.5rem 1rem;
    }

    .gold-frame {
        padding: 12px;
    }

    .gold-frame::before,
    .gold-frame::after {
        width: 22px;
        height: 22px;
    }

    .product-card,
    .vendor-board,
    .step-card {
        padding: 1.75rem 1.1rem;
    }

    .modal {
        padding: 0.65rem;
    }

    .modal-content {
        padding: 0;
        max-height: min(94vh, 94svh);
    }

    .modal-body-scroll {
        padding: 3.25rem 0.5rem 1.25rem;
        max-height: min(94vh, 94svh);
    }

    .modal-grid {
        gap: 1.25rem;
    }

    .modal-visual {
        width: 100%;
        min-height: auto;
        padding: 0;
    }

    .modal-bottle-img {
        width: min(100%, 380px);
        height: auto;
        max-height: min(44vh, 420px);
    }

    .modal-product-switch {
        margin-top: 0.85rem;
    }

    .modal-details h2 {
        font-size: 1.8rem;
    }

    .close-modal {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }

    .map-container {
        height: 280px;
    }

    .floating-contact {
        right: 1rem;
        bottom: 1rem;
    }

    .floating-contact-toggle {
        width: 3.45rem;
        height: 3.45rem;
        padding: 0;
        gap: 0;
    }

    .floating-contact-icon {
        width: 100%;
        height: 100%;
    }

    .floating-contact-label {
        display: none;
    }

    .floating-action {
        min-width: 0;
        width: min(82vw, 270px);
        padding: 0.72rem 0.9rem 0.72rem 0.72rem;
    }

    .floating-action-icon {
        width: 2.2rem;
        height: 2.2rem;
    }

    .floating-action-text {
        font-size: 0.84rem;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        font-size: 1.65rem;
        letter-spacing: 0.18em;
    }

    .loader-sub {
        letter-spacing: 0.25em;
    }

    .hero-title {
        font-size: clamp(2.5rem, 14vw, 3.5rem);
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.95rem 1.25rem;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .product-img {
        height: 260px;
    }

    .product-carousel {
        margin-top: 3rem;
    }

    .carousel-title {
        font-size: 1.35rem;
    }

    .product-tab {
        font-size: 0.78rem;
        padding: 0.62rem 0.82rem;
    }

    .product-carousel-track {
        gap: 0.75rem;
    }

    .carousel-product-card {
        flex-basis: calc((100% - 0.75rem) / 2);
        min-height: 410px;
        border-radius: 1rem;
        padding: 0.85rem;
    }

    .carousel-product-art {
        height: 128px;
        border-radius: 0.75rem;
    }

    .carousel-product-card p {
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .step-number {
        font-size: 2.35rem;
    }

    .vendor-group-title {
        font-size: 1.05rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .craftsmanship {
        background-attachment: scroll;
    }
}


/* Distributors Section */
.distributors {
    position: relative;
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.distributors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .distributors-grid {
        grid-template-columns: 1fr;
    }
}

.vendor-board {
    position: relative;
    background: var(--brand-green-light);
    border: 2px solid rgba(231, 218, 188, 0.28);
    border-radius: 2.25rem;
    padding: 2rem;
    box-shadow: 0 18px 38px rgba(34, 50, 63, 0.18);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), background var(--transition-medium);
}

.vendor-board:hover {
    transform: translateY(-4px);
    background: var(--brand-green-hover);
    box-shadow: 0 22px 44px rgba(34, 50, 63, 0.24);
}

.vendor-group + .vendor-group {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(245, 245, 247, 0.16);
}

.vendor-group-title {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-size: 1.18rem;
    line-height: 1.25;
    color: #fff7e6;
    margin-bottom: 0.8rem;
}

.distributor-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem 1.2rem;
}

@media (min-width: 1100px) {
    .distributor-list:has(.distributor-link:nth-child(4)) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.distributor-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.distributor-link {
    text-decoration: none;
    padding: 0.18rem 0 0.18rem 1.05rem;
    position: relative;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.distributor-link::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: rgba(231, 218, 188, 0.82);
    font-size: 1rem;
    line-height: 1;
}

.distributor-link:hover {
    transform: translateX(4px);
}

.distributor-link:hover .distributor-name {
    color: #ffffff;
}

.distributor-link:hover .distributor-loc {
    color: rgba(255, 247, 230, 0.88);
}

.distributor-name {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(245, 245, 247, 0.92);
    line-height: 1.45;
}

.distributor-loc {
    font-size: 0.78rem;
    color: rgba(245, 245, 247, 0.68);
    line-height: 1.35;
}

/* Site Footer */
.site-footer {
    background: var(--brand-green);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(231, 218, 188, 0.12);
}

.site-footer-container {
    display: block;
    width: 100%;
    text-align: center;
}

.site-footer p {
    color: rgba(245, 245, 247, 0.45);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', 'Sarabun', sans-serif;
    margin: 0;
    text-align: center;
}

/* Global Floating Parallax Nutmegs styling */
.global-parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-nutmeg,
.floating-nutmeg-group {
    position: absolute;
    will-change: transform;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

/* Cast a premium, realistic drop shadow representing the table top depth */
.floating-nutmeg,
.fn-sub {
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.82));
}

/* Placements & Sizes */
.hero-nutmeg-1 {
    position: absolute;
    bottom: -150px;
    left: -60px;
    width: 280px;
    z-index: 10;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.82));
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.frame-content {
    position: relative;
    overflow: visible !important;
    background: #fdfaf2;
    border: 1px solid #e5dcbf;
    border-radius: 1.5rem;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.05), 0 15px 35px rgba(0, 0, 0, 0.18);
}

.heritage-photo {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 0.25rem;
    border: 6px solid #ffffff;
    background: #ffffff;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
    margin-top: 0.5rem;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
    transform: rotate(-2deg);
}

.heritage-visual .badge {
    background: var(--brand-green-light) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    z-index: 2;
    bottom: 2rem;
    top: auto;
    transform: translateX(-50%);
}

.heritage-nutmeg {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.75));
    will-change: transform;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.hn-2 {
    width: 140px;
    top: -5%;
    left: -18%;
    z-index: 5;
}

.hn-4 {
    width: 150px;
    top: 25%;
    right: -16%;
    z-index: 4;
}

.hn-5 {
    width: 100px;
    bottom: 8%;
    left: -10%;
    z-index: 3;
}

.hero-nutmeg-3 {
    position: absolute;
    top: 180px;
    right: -40px;
    width: 160px;
    z-index: 10;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.75));
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.craft-nutmeg-5 {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 140px;
    z-index: 6;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.75));
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.craft-nutmeg-1 {
    position: absolute;
    left: -5%;
    top: 45%;
    width: 150px;
    z-index: 6;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.75));
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.fn-6 {
    top: 4200px;
    left: -60px;
    width: 240px;
}

.fn-7 {
    top: 5050px;
    right: -70px;
    width: 200px;
}

.fn-group-2 {
    top: 5750px;
    left: 6%;
    width: 260px;
    height: 240px;
}

.fn-8 {
    position: absolute;
    width: 150px;
    left: 0;
    top: 0;
}

.fn-9 {
    position: absolute;
    width: 120px;
    right: 0;
    bottom: 0;
}

/* Native CSS Scroll-driven animations linked to viewport progress */
@supports (animation-timeline: scroll()) {
    .floating-nutmeg,
    .floating-nutmeg-group,
    .hero-nutmeg-1,
    .hero-nutmeg-3,
    .heritage-nutmeg,
    .craft-nutmeg-5,
    .craft-nutmeg-1,
    .heritage-photo {
        transition: none; /* Disable JS transition since CSS scroll-driven animations are natively supported */
    }

    .hero-nutmeg-1 { animation: float-1 linear both; animation-timeline: scroll(root); }
    .hero-nutmeg-3 { animation: float-3 linear both; animation-timeline: scroll(root); }
    .fn-6 { animation: float-6 linear both; animation-timeline: scroll(root); }
    .fn-7 { animation: float-7 linear both; animation-timeline: scroll(root); }
    .fn-group-2 { animation: float-group-2 linear both; animation-timeline: scroll(root); }

    .hn-2 { animation: float-hn2 linear both; animation-timeline: scroll(root); }
    .hn-4 { animation: float-hn4 linear both; animation-timeline: scroll(root); }
    .hn-5 { animation: float-hn5 linear both; animation-timeline: scroll(root); }
    .craft-nutmeg-5 { animation: float-craft5 linear both; animation-timeline: scroll(root); }
    .craft-nutmeg-1 { animation: float-craft1 linear both; animation-timeline: scroll(root); }
    .heritage-photo { animation: float-photo linear both; animation-timeline: scroll(root); }
}

@keyframes float-1 {
    from { transform: translateY(-150px) rotate(-10deg); }
    to { transform: translateY(450px) rotate(35deg); }
}
@keyframes float-3 {
    from { transform: translateY(-100px) rotate(-15deg); }
    to { transform: translateY(350px) rotate(25deg); }
}
@keyframes float-6 {
    from { transform: translateY(-120px) rotate(-10deg); }
    to { transform: translateY(400px) rotate(30deg); }
}
@keyframes float-7 {
    from { transform: translateY(120px) rotate(10deg); }
    to { transform: translateY(-380px) rotate(-30deg); }
}
@keyframes float-group-2 {
    from { transform: translateY(-150px) rotate(-20deg); }
    to { transform: translateY(350px) rotate(25deg); }
}

@keyframes float-hn2 {
    from { transform: translateY(-40px) rotate(-10deg); }
    to { transform: translateY(120px) rotate(15deg); }
}
@keyframes float-hn4 {
    from { transform: translateY(60px) rotate(15deg); }
    to { transform: translateY(-140px) rotate(-20deg); }
}
@keyframes float-hn5 {
    from { transform: translateY(-30px) rotate(-5deg); }
    to { transform: translateY(80px) rotate(15deg); }
}

/* Ensure main content sections and elements render on top of the floating background elements */
.hero-content,
.section-container,
.carousel-product-card,
.vendor-board,
.step-card,
.product-card {
    position: relative;
    z-index: 5;
}

@keyframes float-craft5 {
    from { transform: translateY(-60px) rotate(-10deg); }
    to { transform: translateY(180px) rotate(20deg); }
}

@keyframes float-craft1 {
    from { transform: translateY(-40px) rotate(-10deg); }
    to { transform: translateY(140px) rotate(15deg); }
}

@keyframes float-photo {
    from { transform: translateY(-40px) rotate(-3deg); }
    to { transform: translateY(50px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
    .floating-nutmeg,
    .floating-nutmeg-group {
        animation: none !important;
        transform: none !important;
    }
}

/* Hide or scale down on mobile screens to ensure best UX */
@media (max-width: 768px) {
    .hero-nutmeg-1 { width: 170px; left: -40px; bottom: -160px; }
    .hero-nutmeg-3 { width: 155px; right: -35px; top: 190px; }
    .craft-nutmeg-5 { width: 90px; right: -5%; top: 20%; }
    .craft-nutmeg-1 { width: 90px; left: -5%; top: 40%; }
    .frame-content { min-height: 380px; padding: 1.5rem 1.1rem; }
    .heritage-photo { height: 230px; }
    .hn-2 { width: 110px; left: -8%; top: 5%; }
    .hn-4 { width: 120px; right: -8%; top: 30%; }
    .hn-5 { width: 80px; left: 10%; bottom: 12%; }
    .fn-6 { width: 110px; left: -25px; }
    .fn-7 { width: 90px; right: -25px; }
    .fn-group-2 { width: 140px; height: 120px; left: 2%; }
    .fn-8 { width: 90px; }
    .fn-9 { width: 70px; }
}
