/* ── Anti-Copy Protection ─────────────────────── */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* ── Soft Warm Neutral Palette ── */
    --navy:    #f5ead8;      /* warm light beige */
    --navy-l:  #efe3cf;      /* medium warm light */
    --green:   #f0e4d0;      /* warm light partner */
    --green-l: #eadcc6;      /* warm surface light */
    --gold:    #b8904a;      /* rich amber-gold – suits warm backgrounds */
    --gold-l:  #d4ab6e;      /* soft light gold */
    --cream:   #ede0cb;      /* warm parchment – text on dark */
    --white:   #faf6ef;      /* warm off-white */
    --light:   #ede0cb;      /* primary page background – cream */
    --light-2: #e6d9c0;      /* warm secondary background */
    --sand:    #e6d9c0;      /* sand – borders, card accents */
    --text:    #c2ae90;      /* warm muted – text on dark sections */
    --text-m:  #9a856a;      /* warm taupe mid */
    --text-dk: #2a2218;      /* deep warm – primary text on light */
    --text-dk-m: #7a6a52;    /* warm umber – secondary text on light */
}

html { scroll-behavior: auto; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--text-dk);
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--text-dk);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gold-line {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

.btn {
    display: inline-block;
    padding: 14px 42px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn:hover::before { left: 0; }
.btn:hover { color: #2a2218; }
.btn span { position: relative; z-index: 1; }

.section-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* ── Navigation ───────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 36px 0;
    transition: top 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s ease,
                padding 0.4s ease,
                box-shadow 0.4s ease;
}

/* Hide-on-scroll-down (mobile only, applied via JS) */
.nav--hidden {
    top: -120px;
}

.nav.scrolled {
    background: rgba(245, 234, 216, 0.96);
    backdrop-filter: blur(20px);
    padding: 24px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}

.nav.menu-open,
.nav.menu-open.scrolled {
    background: var(--cream);
    backdrop-filter: none;
    box-shadow: none;
    top: 0 !important; /* never hide while drawer is open */
}

body.menu-open {
    overflow: hidden;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.nav-logo .top {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    font-weight: 400;
}

.nav-logo .mid {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 5px;
    line-height: 1.1;
}

.nav-logo .bot {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    font-weight: 400;
}

/* Image logo (nav & footer) */
.nav-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    transition: color 0.3s;
    font-weight: 400;
}

.nav-links a:hover { color: var(--gold); }

/* Keep dark text when nav has light bg */
.nav.scrolled .nav-links a,
.nav.menu-open .nav-links a { color: var(--text-dk-m); }
.nav.scrolled .nav-links a:hover,
.nav.menu-open .nav-links a:hover { color: var(--gold); }

.nav-cta {
    padding: 12px 34px !important;
    font-size: 0.75rem !important;
    color: var(--gold) !important;
}
.nav-cta:hover { color: #2a2218 !important; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 16px;
    z-index: 1001;
}
.lang-btn {
    padding: 4px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-dk-m);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}
.nav.scrolled .lang-btn,
.nav.menu-open .lang-btn { color: var(--text-dk-m); }
.nav.scrolled .lang-btn:hover,
.nav.menu-open .lang-btn:hover { color: var(--gold); }
.nav.scrolled .lang-btn.active,
.nav.menu-open .lang-btn.active { color: var(--gold); border-color: var(--gold); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 24px; height: 1.5px;
    background: var(--text-dk);
    transition: all 0.3s;
    transform-origin: center;
}

.nav.scrolled .hamburger span,
.nav.menu-open .hamburger span { background: var(--text-dk); }

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────── */
/* ═══════════════════════════════════════════════
   HERO — PRODUCT SHOWCASE
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--light);
    color: var(--text-dk);
    padding-top: 80px;
}

/* ── Soft ambient background ── */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(184,144,74,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(230,217,192,0.25) 0%, transparent 60%),
        var(--light);
    pointer-events: none;
}

/* Subtle grain */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

/* ── Hero Header (text) ── */
.hero-head {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 40px 48px 60px 80px;
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.eyebrow-line {
    display: block;
    width: 36px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    animation: lineExpand 0.9s cubic-bezier(0.16,1,0.3,1) 0.7s both;
    transform-origin: left;
}

@keyframes lineExpand {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.hero-eyebrow span:last-child {
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ── Stagger word reveal ── */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 5.4rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text-dk);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.hero-title .word {
    display: block;
    opacity: 0;
    transform: translateY(28px);
    padding-bottom: 4px;
}

.hero-title .w1 { animation: wordReveal 1.1s cubic-bezier(0.16,1,0.3,1) 0.35s forwards; }
.hero-title .w2 { animation: wordReveal 1.1s cubic-bezier(0.16,1,0.3,1) 0.50s forwards; }
.hero-title .w3 { animation: wordReveal 1.1s cubic-bezier(0.16,1,0.3,1) 0.65s forwards; }

@keyframes wordReveal {
    0%   { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-dk-m);
    max-width: 440px;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeIn 0.9s ease 0.85s forwards;
}

/* ── CTA + Stats inside hero-head ── */
.hero-head .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    opacity: 0;
    animation: heroFadeIn 0.9s ease 1s forwards;
}

.hero-head .hero-stats-row {
    opacity: 0;
    animation: heroFadeIn 0.9s ease 1.15s forwards;
}

/* ── Product Showcase ── */
.hero-showcase {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 16px;
    align-items: stretch;
    padding: 40px 24px 40px 0;
    min-height: 0;
    opacity: 0;
    animation: showcaseIn 1.2s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}

@keyframes showcaseIn {
    0%   { opacity: 0; transform: translateY(50px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Main featured image */
.showcase-main {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 624px;
}

.showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

.showcase-main:hover .showcase-img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(184,144,74,0.25) 0%,
        rgba(184,144,74,0.08) 35%,
        transparent 65%);
    pointer-events: none;
}

/* Label on main image */
.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 36px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.showcase-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(250,246,239,0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250,246,239,0.25);
    color: var(--white);
    font-size: 0.55rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-radius: 2px;
    transition: opacity 0.4s;
}

.showcase-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: opacity 0.4s;
}

/* Navigation on main image */
.showcase-nav {
    position: absolute;
    bottom: 36px;
    right: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.showcase-btn {
    width: 40px; height: 40px;
    background: rgba(250,246,239,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(250,246,239,0.25);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.showcase-btn svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.showcase-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-dk);
}

.showcase-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(250,246,239,0.8);
    letter-spacing: 2px;
}

.showcase-sep {
    margin: 0 3px;
    opacity: 0.5;
}

/* ── Thumbnail strip ── */
.showcase-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 110px;
    flex-shrink: 0;
}

.showcase-thumb {
    position: relative;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    aspect-ratio: 4/3;
    transition: border-color 0.4s, opacity 0.4s, transform 0.4s;
    opacity: 0.5;
    transform: scale(0.95);
}

.showcase-thumb.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1);
}

.showcase-thumb:hover {
    opacity: 0.85;
    transform: scale(1);
}

.showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Image transition (JS-driven) */
.showcase-main.is-leaving .showcase-img {
    animation: imgLeave 0.45s cubic-bezier(0.4,0,0.2,1) forwards;
}
.showcase-main.is-entering .showcase-img {
    animation: imgEnter 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
.showcase-main.is-leaving .showcase-label {
    animation: labelLeave 0.3s ease forwards;
}
.showcase-main.is-entering .showcase-label {
    animation: labelEnter 0.5s ease 0.15s forwards;
}

@keyframes imgLeave {
    to { opacity: 0; transform: scale(1.04); }
}
@keyframes imgEnter {
    from { opacity: 0; transform: scale(1.06); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes labelLeave {
    to { opacity: 0; transform: translateY(10px); }
}
@keyframes labelEnter {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}



.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    transition: color 0.3s, gap 0.3s;
}
.hero-link svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
}
.hero-link:hover { color: var(--gold); gap: 16px; }
.hero-link:hover svg { transform: translateX(4px); }

/* ── Stats row ── */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-suf { font-size: 1.2rem; color: var(--gold); vertical-align: super; line-height: 1; }

.hero-stat-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-m);
}

.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--sand);
    flex-shrink: 0;
}

/* ── Scroll indicator ── */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-hint span {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-m);
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.6;
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.25; transform: scaleY(1); }
    50%       { opacity: 0.8; transform: scaleY(1.2); }
}

/* ── About / Intro Section ────────────────────── */
.about {
    padding: 140px 0;
    position: relative;
    background: var(--light);
    color: var(--text-dk);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .img-box {
    width: 100%;
    aspect-ratio: 3/4;
    background:
        linear-gradient(145deg, var(--sand), var(--cream));
    position: relative;
    overflow: hidden;
}

.about-image .img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08), transparent 70%);
}

/* Interior illustration inside the box */
.img-box-inner {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-inner svg {
    width: 60%;
    height: auto;
    opacity: 0.15;
}

.about-image .frame {
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    pointer-events: none;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about .section-label {
    color: var(--gold);
}

.about .section-title {
    color: var(--text-dk);
}

.stat h3 {
    font-size: 2.4rem;
    color: var(--gold);
    font-weight: 300;
}

.stat p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    margin-top: 4px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-dk-m);
    margin-bottom: 20px;
}

/* ── Services ─────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--light-2);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184, 144, 74, 0.2), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184, 144, 74, 0.15);
}

.service-card {
    background: var(--navy);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.service-card:hover::after { width: 60px; }
.service-card:hover { background: rgba(184, 144, 74, 0.08); }

.service-icon {
    width: 48px; height: 48px;
    margin: 0 auto 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-dk-m);
}

/* ── Gallery ──────────────────────────────────── */
.gallery {
    padding: 140px 0 100px;
    position: relative;
    background: var(--cream);
    color: var(--text-dk);
    overflow: hidden;
}

.gallery .section-label {
    color: var(--gold);
}

.gallery .section-title {
    color: var(--text-dk);
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.gallery-nav {
    display: flex;
    gap: 12px;
}

.gallery-arrow {
    width: 52px; height: 52px;
    border: 1px solid var(--text-dk);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.gallery-arrow svg {
    width: 20px; height: 20px;
    stroke: var(--text-dk);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease;
}

.gallery-arrow:hover {
    background: var(--text-dk);
}

.gallery-arrow:hover svg {
    stroke: var(--cream);
}

/* Showcase: full-width overflow area */
.gallery-showcase {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.gallery-track {
    display: flex;
    gap: 32px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Individual Slide */
.gallery-slide {
    flex: 0 0 420px;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.35;
    transform: scale(0.88);
    filter: grayscale(60%) brightness(0.7);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%) brightness(1);
    z-index: 2;
}

.gallery-slide.prev,
.gallery-slide.next {
    opacity: 0.55;
    transform: scale(0.92);
    filter: grayscale(30%) brightness(0.85);
}

.slide-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--sand);
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide.active .slide-img img {
    transform: scale(1.03);
}

/* Gold border highlight on active */
.gallery-slide.active .slide-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    pointer-events: none;
    animation: borderFadeIn 0.5s ease forwards;
}

@keyframes borderFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Vignette overlay on inactive */
.slide-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(184, 144, 74, 0.25) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.gallery-slide.active .slide-img::before {
    opacity: 0.6;
}

/* Slide Info */
.slide-info {
    padding: 20px 4px 0;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(10px);
}

.gallery-slide.active .slide-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.slide-info span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.slide-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-dk);
    font-weight: 400;
    margin-top: 4px;
}

/* Dots + Counter */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.gallery-dots span {
    width: 8px; height: 8px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.35s ease;
    background: transparent;
}

.gallery-dots span.active {
    background: var(--gold);
    transform: rotate(45deg);
}

.gallery-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.gallery-current {
    color: var(--gold);
    font-weight: 600;
    min-width: 24px;
    text-align: right;
}

.gallery-divider {
    color: var(--text-dk-m);
    font-weight: 300;
}

.gallery-total {
    color: var(--text-dk-m);
    font-weight: 300;
    min-width: 24px;
    text-align: left;
}

/* ── Testimonial ──────────────────────────────── */
.testimonial {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sand), var(--cream));
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 40px; left: 10%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: rgba(184, 144, 74, 0.06);
    line-height: 1;
}

.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dk);
    margin-bottom: 32px;
    font-weight: 300;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dots span {
    width: 8px; height: 8px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-dots span.active {
    background: var(--gold);
}

/* ── Process ──────────────────────────────────── */
.process {
    padding: 140px 0;
    position: relative;
    background: var(--light);
    color: var(--text-dk);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(184, 144, 74, 0.22);
}

.step {
    text-align: center;
}

.process .section-label {
    color: var(--gold);
}

.process .section-title {
    color: var(--text-dk);
}

.step-num {
    width: 56px; height: 56px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    background: var(--light);
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dk);
}

.step p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-dk-m);
}

/* ── CTA Strip ────────────────────────────────── */
.cta-strip {
    padding: 100px 0;
    background: var(--light-2);
    text-align: center;
    position: relative;
}

.cta-strip::before,
.cta-strip::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184, 144, 74, 0.2), transparent);
}

.cta-strip::before { top: 0; }
.cta-strip::after { bottom: 0; }

.cta-strip h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-strip p {
    color: var(--text-m);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

/* Booking Form */
.booking-form {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full {
    margin-bottom: 30px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #c0392b;
}

.form-group.error::after {
    content: 'E detyrueshme';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c0392b;
}

.form-group.full.error::after {
    top: 14px;
    transform: none;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-dk);
    background: rgba(250, 246, 239, 0.75);
    border: 1px solid rgba(184, 144, 74, 0.3);
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-dk-m);
}

.booking-form select {
    color: var(--text-m);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.booking-form select option {
    background: var(--white);
    color: var(--text-dk);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--gold);
    background: rgba(250, 246, 239, 0.95);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.booking-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form-success.visible {
    display: block;
    animation: fadeUp 0.6s ease forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
}

.success-icon svg {
    width: 28px;
    height: 28px;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-m);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Contact Page ─────────────────────────────── */
.contact-page {
    padding: 140px 0 80px;
    background: var(--light);
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--text-dk-m);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-detail a,
.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-dk);
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 16px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-social a:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.contact-social a svg {
    width: 18px;
    height: 18px;
    fill: var(--text-dk-m);
    transition: fill 0.3s;
}

.contact-social a:hover svg {
    fill: var(--white);
}

.contact-form-wrap {
    background: #f5ead8;
    border: 1px solid #ddd0b8;
    border-radius: 12px;
    padding: 48px;
}

.contact-form-wrap .booking-form {
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-page {
        padding: 120px 0 60px;
    }
    .contact-form-wrap {
        padding: 32px 24px;
    }
}

/* ── Wide Map (below contact grid) ── */
.contact-map-wide {
    margin-top: 64px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--sand);
}

.contact-map-wide iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
    filter: saturate(0.85) contrast(1.05);
    transition: filter 0.5s ease;
}

.contact-map-wide:hover iframe {
    filter: saturate(1) contrast(1);
}

.map-directions-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--white);
    border-top: 1px solid var(--sand);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dk-m);
    font-weight: 500;
    transition: all 0.3s;
}

.map-directions-link:hover {
    color: var(--gold);
    background: var(--light-2);
}

.map-directions-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .contact-map-wide {
        margin-top: 40px;
    }
    .contact-map-wide iframe {
        height: 260px;
    }
}

/* ── Footer ───────────────────────────────────── */
.footer {
    padding: 80px 0 40px;
    background: var(--light-2);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 8px 14px;
    margin-bottom: 24px;
}

/* Larger logo size in footer */
.footer-brand .nav-logo-img {
    height: 52px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-dk-m);
    margin-top: 20px;
    max-width: 300px;
}

.footer h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer ul li { margin-bottom: 12px; }

.footer ul a {
    font-size: 0.85rem;
    color: var(--text-dk-m);
    transition: color 0.3s;
}

.footer ul a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(184, 144, 74, 0.25);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-dk-m);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 36px; height: 36px;
    border: 1px solid rgba(184, 144, 74, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(184, 144, 74, 0.12);
}

.social-links svg {
    width: 14px; height: 14px;
    fill: var(--text-dk-m);
    transition: fill 0.3s;
}

.social-links a:hover svg { fill: var(--gold); }

/* ── Animations ───────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Hero has its own entrance animations — skip the reveal hide */
.hero.reveal {
    opacity: 1;
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-slide { flex: 0 0 340px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { padding: 32px 0; }
    .nav.scrolled { padding: 24px 0; }

    /* Dark backdrop overlay on the background */
    body.menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(42, 34, 24, 0.45);
        z-index: 999;
        animation: backdropIn 0.35s ease forwards;
    }

    @keyframes backdropIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 220px;
        max-width: 60vw;
        background: var(--cream);
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        z-index: 1000;
        padding: 80px 28px 40px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s ease;
        border-left: 1px solid rgba(184, 144, 74, 0.15);
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s;
    }

    .nav-links.open a:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.12s; }
    .nav-links.open a:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.17s; }
    .nav-links.open a:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.22s; }
    .nav-links.open a:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.27s; }
    .nav-links.open a:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.32s; }
    .nav-links.open a:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.37s; }
    .nav-links.open a:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.42s; }

    .hamburger { display: flex; }

    .nav-inner {
        padding: 0 20px;
    }

    .lang-switcher {
        display: none;
    }

    .nav-links .lang-switcher-mobile {
        display: flex;
        gap: 8px;
        margin: 0 0 12px 0;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(184, 144, 74, 0.15);
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.open .lang-switcher-mobile {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.08s;
    }

    .lang-switcher-mobile .lang-btn {
        padding: 6px 14px;
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        color: var(--text-dk-m);
        border: 1px solid transparent;
        background: transparent;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    .lang-switcher-mobile .lang-btn:hover {
        color: var(--gold);
    }

    .lang-switcher-mobile .lang-btn.active {
        color: var(--gold);
        border-color: var(--gold);
    }

    .nav-logo-img {
        height: 150px;
    }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 3px;
        width: 100%;
        padding: 4px 0;
        border-bottom: 1px solid rgba(184, 144, 74, 0.1);
    }

    .nav-links .nav-cta {
        margin-top: 20px;
        font-size: 0.65rem !important;
        padding: 12px 20px !important;
        width: auto;
        display: inline-block;
        border-bottom: none;
        text-align: center;
        box-sizing: border-box;
        max-width: 100%;
        letter-spacing: 2px !important;
    }

    /* Hero showcase – stack on mobile, products first */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 0;
        gap: 0;
    }
    .hero-showcase {
        order: -1;
        padding: 0;
        flex-direction: column;
        gap: 10px;
    }
    .showcase-main {
        height: 70svh;
        border-radius: 0;
    }
    .showcase-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        gap: 10px;
        padding: 0 16px 8px;
    }
    .showcase-thumb {
        width: 72px;
        flex-shrink: 0;
        aspect-ratio: 4/3;
    }
    .hero-head {
        padding: 32px 24px 40px;
        text-align: center;
    }
    .hero-head .hero-actions { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .hero-head .hero-stats-row { justify-content: center; gap: 16px; }
    .hero-eyebrow { justify-content: center; }
    .hero-title { align-items: center; font-size: clamp(2.2rem, 8vw, 3.4rem); }
    .hero-desc { max-width: 100%; margin: 0 auto 32px; }
    .scroll-hint { display: none; }

    /* About */
    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image .frame { top: -12px; right: -12px; }
    .about-stats { gap: 24px; flex-wrap: wrap; }
    .stat h3 { font-size: 2rem; }

    /* Services */
    .services { padding: 80px 0; }
    .services-header { margin-bottom: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px 24px; }

    /* Gallery */
    .gallery { padding: 80px 0 60px; }
    .gallery-slide { flex: 0 0 280px; }
    .gallery-track { gap: 20px; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .gallery-arrow { width: 44px; height: 44px; }

    /* Testimonial */
    .testimonial { padding: 80px 0; }
    .testimonial blockquote { font-size: 1.3rem; line-height: 1.6; }
    .testimonial::before { font-size: 12rem; top: 10px; left: 5%; }

    /* Process */
    .process { padding: 80px 0; }
    .process-header { margin-bottom: 48px; }
    .process-steps { grid-template-columns: 1fr; }

    /* CTA / Booking */
    .cta-strip { padding: 80px 0; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer { padding: 60px 0 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .nav-inner { padding: 0 12px; }
    .nav-logo .mid { font-size: 3.2rem; letter-spacing: 6px; }

    .nav-logo-img { height: 120px; }

    .lang-switcher { margin-right: 8px; gap: 1px; }
    .lang-btn { padding: 4px 8px; font-size: 0.65rem; letter-spacing: 1px; }
    .nav-logo .top,
    .nav-logo .bot { font-size: 0.8rem; letter-spacing: 6px; }

    /* Hero */
    .hero-head { padding: 24px 16px 32px; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
    .hero-desc { font-size: 0.82rem; }
    .showcase-main { height: 60svh; min-height: 260px; }
    .showcase-label { padding: 20px 20px; }
    .showcase-name { font-size: 1.2rem; }
    .showcase-nav { bottom: 20px; right: 20px; gap: 10px; }
    .showcase-btn { width: 34px; height: 34px; }
    .showcase-thumb { width: 60px; }

    /* About */
    .about { padding: 60px 0; }
    .about-stats { justify-content: center; }
    .stat h3 { font-size: 1.8rem; }
    .stat p { font-size: 0.6rem; }
    .about-text p { font-size: 0.88rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    /* Services */
    .services { padding: 60px 0; }
    .service-card { padding: 30px 20px; }
    .service-card h3 { font-size: 1.2rem; }
    .service-card p { font-size: 0.8rem; }

    /* Gallery */
    .gallery { padding: 60px 0 40px; }
    .gallery-slide { flex: 0 0 260px; }
    .gallery-track { gap: 16px; }
    .gallery-dots span { width: 6px; height: 6px; }
    .gallery-counter { font-size: 1rem; }

    /* Testimonial */
    .testimonial { padding: 60px 0; }
    .testimonial blockquote { font-size: 1.1rem; }
    .testimonial cite { font-size: 0.6rem; }
    .testimonial::before { font-size: 8rem; }

    /* Process */
    .process { padding: 60px 0; }
    .step-num { width: 48px; height: 48px; font-size: 1rem; }
    .step h3 { font-size: 1.1rem; }
    .step p { font-size: 0.78rem; }

    /* CTA / Booking */
    .cta-strip { padding: 60px 0; }
    .cta-strip p { font-size: 0.85rem; }
    .booking-form input,
    .booking-form select,
    .booking-form textarea { padding: 12px 14px; font-size: 0.8rem; }
    .booking-form .btn { padding: 14px 24px; }

    /* Footer */
    .footer { padding: 48px 0 24px; }
    .footer-brand p { font-size: 0.8rem; }
    .footer ul a { font-size: 0.8rem; }
    .footer h4 { font-size: 0.65rem; margin-bottom: 18px; }
    .footer-bottom p { font-size: 0.7rem; }
}
