/* ============================================================
   Bex Rae Hart — Global Stylesheet
   PHP 7.4 / MariaDB 10.1 compatible site
   Colours: #1a1710 (bg), #c9a84c (gold), #e8d5a3 (cream), #d4813a (amber)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: #1a1710;
    color: #e8d5a3;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Northern lights aurora glow + canvas paint texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        /* Aurora band — teal/green sweep top-left */
        radial-gradient(ellipse 120% 40% at 15% 12%, rgba(40,180,140,0.10) 0%, transparent 70%),
        /* Aurora band — emerald glow top-centre */
        radial-gradient(ellipse 80% 35% at 50% 8%, rgba(60,200,120,0.07) 0%, transparent 65%),
        /* Aurora band — purple/violet upper-right */
        radial-gradient(ellipse 90% 45% at 85% 15%, rgba(120,80,180,0.08) 0%, transparent 70%),
        /* Deep blue wash mid-left */
        radial-gradient(ellipse 70% 50% at 10% 50%, rgba(30,60,120,0.06) 0%, transparent 60%),
        /* Warm amber hearth glow bottom */
        radial-gradient(ellipse 100% 40% at 50% 95%, rgba(180,120,50,0.08) 0%, transparent 65%),
        /* Subtle teal shimmer mid-right */
        radial-gradient(ellipse 60% 30% at 80% 55%, rgba(50,160,150,0.05) 0%, transparent 55%);
    pointer-events: none;
}

/* Canvas / paint texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='canvas'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='6' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.5 0.3 0.15 0 0.03 0.35 0.25 0.1 0 0.02 0.15 0.1 0.05 0 0.01 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23canvas)' opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 400px 400px;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ── Parchment texture helper — apply to sections ─────────── */
.parchment {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

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

a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #e8d5a3;
}

ul {
    list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    line-height: 1.3;
    color: #c9a84c;
    letter-spacing: 0.05em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

p {
    color: #c8b89a;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-gold    { color: #c9a84c; }
.text-cream   { color: #e8d5a3; }
.text-amber   { color: #d4813a; }
.text-muted   { color: #9a8a7a; }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.2em; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: rgba(38,31,18,0.85);
}

.section--slightly-light {
    background-color: rgba(42,35,24,0.82);
}

.section--warm {
    background-color: rgba(40,33,26,0.85);
}

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
    width: 60px;
    height: 2px;
    background: #c9a84c;
    margin: 20px auto;
}

.divider--left {
    margin-left: 0;
}

.divider--full {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a84c40, transparent);
    margin: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--gold {
    background-color: #c9a84c;
    color: #0d0d0d;
}

.btn--gold:hover {
    background-color: #e8d5a3;
    color: #0d0d0d;
}

.btn--outline {
    background-color: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c;
}

.btn--outline:hover {
    background-color: #c9a84c;
    color: #0d0d0d;
}

.btn--amber {
    background-color: #d4813a;
    color: #0d0d0d;
}

.btn--amber:hover {
    background-color: #e8d5a3;
    color: #0d0d0d;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.75rem;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header__label {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #d4813a;
    margin-bottom: 10px;
    display: block;
}

.section-header__title {
    font-size: 2.2rem;
    color: #c9a84c;
    margin-bottom: 15px;
}

.section-header__sub {
    color: #a08060;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Header / Navigation ──────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(32, 27, 16, 0.97);
    border-bottom: 1px solid #c9a84c22;
    padding: 0 24px;
    transition: background 0.3s ease;
}

#site-header.scrolled {
    background-color: rgba(32, 27, 16, 0.99);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo img {
    height: 44px;
    width: auto;
}

.header__logo-text {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    font-family: 'Georgia', serif;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 48px;
}

.header__nav a {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8b89a;
    transition: color 0.2s ease;
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.25s ease;
}

.header__nav a:hover,
.header__nav a.active {
    color: #c9a84c;
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

.header__social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid #c9a84c22;
}

.header__social a {
    color: #9a8a7a;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.header__social a:hover {
    color: #c9a84c;
}

.header__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Auth links */
.header__auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}
.header__auth-link {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9a8a7a;
    text-decoration: none;
    transition: color 0.2s;
}
.header__auth-link:hover { color: #c9a84c; }
.header__auth-link--join {
    color: #c9a84c;
    border: 1px solid #c9a84c44;
    padding: 5px 12px;
}
.header__auth-link--join:hover {
    background: #1a1508;
    color: #c9a84c;
}
.header__auth-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a1508;
    border: 1px solid #c9a84c44;
    color: #c9a84c;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s;
}
.header__auth-avatar:hover { border-color: #c9a84c; }

/* Hamburger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #c9a84c;
    transition: all 0.3s ease;
}

/* Mobile nav */
.header__mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #201b10;
    border-bottom: 1px solid #c9a84c22;
    padding: 20px 24px;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.header__mobile-nav.open {
    display: block;
}

.header__mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8b89a;
    border-bottom: 1px solid #1a1a1a;
}

.header__mobile-nav a:hover {
    color: #c9a84c;
}

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    filter: brightness(0.9);
    transform: scale(1.03);
    transition: transform 8s ease;
}

#hero.loaded .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,8,2,0.45) 0%,
        rgba(10,8,2,0.25) 30%,
        rgba(10,8,2,0.20) 55%,
        rgba(10,8,2,0.40) 80%,
        rgba(10,8,2,0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 110px 24px 0;
}

.hero__name {
    font-size: 1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero__slogan {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: #e8d5a3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero__slogan span {
    color: #c9a84c;
}

.hero__sub {
    font-size: 1rem;
    color: #a08060;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9a8a7a;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 20px;
    height: 20px;
    fill: #c9a84c;
}

/* ── Welcome Strip ────────────────────────────────────────── */
#welcome {
    background: linear-gradient(135deg, #272116 0%, #221e14 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #c9a84c22;
    border-bottom: 1px solid #c9a84c22;
}

.welcome__text {
    font-size: 1.15rem;
    color: #c8b89a;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.9;
}

.welcome__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid #c9a84c33;
    color: #c8b89a;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.social-pill svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-pill:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: #c9a84c11;
}

.subscribe-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #c9a84c;
    color: #0d0d0d;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    margin-top: 20px;
}

.subscribe-all-btn:hover {
    background: #e8d5a3;
}

/* ── About Snapshot ───────────────────────────────────────── */
#about-snap {
    padding: 80px 0;
}

.about-snap__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-snap__image {
    position: relative;
}

.about-snap__image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-snap__image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #c9a84c33;
    z-index: -1;
}

.about-snap__label {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #d4813a;
    margin-bottom: 12px;
}

.about-snap__title {
    font-size: 2.4rem;
    color: #c9a84c;
    margin-bottom: 20px;
}

.about-snap__text {
    color: #a08060;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* ── Latest Videos ────────────────────────────────────────── */
#latest-videos {
    padding: 80px 0;
    background-color: #2a2318;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: #2e2618;
    border: 1px solid #c9a84c22;
    transition: border-color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.video-card:hover {
    border-color: #c9a84c44;
    transform: translateY(-4px);
}

.video-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}

.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: contrast(1.05) saturate(1.05);
}

.video-card:hover .video-card__thumb img {
    transform: scale(1.05);
}

.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,13,13,0.4);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.video-card:hover .video-card__play {
    opacity: 1;
}

.video-card__play svg {
    width: 48px;
    height: 48px;
    fill: #c9a84c;
}

.video-card__body {
    padding: 16px;
}

.video-card__title {
    font-size: 0.95rem;
    color: #e8d5a3;
    margin-bottom: 6px;
    line-height: 1.4;
}

.video-card__date {
    font-size: 0.75rem;
    color: #9a8a7a;
    letter-spacing: 0.1em;
}

/* ── Latest Blog Posts ────────────────────────────────────── */
#latest-blog {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #c9a84c22;
    background: #28211a;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    border-color: #c9a84c44;
    transform: translateY(-4px);
}

.blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #252116;
}

.blog-card__image-link {
    display: block;
    cursor: pointer;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__cat {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4813a;
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 1.05rem;
    color: #e8d5a3;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 0.88rem;
    color: #9a8a7a;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card__link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    align-self: flex-start;
}

.blog-card__link:hover {
    color: #e8d5a3;
}

/* ── Shop Preview ─────────────────────────────────────────── */
#shop-preview {
    padding: 80px 0;
    background-color: #261f14;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #2e2618;
    border: 1px solid #c9a84c22;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
    border-color: #c9a84c44;
    transform: translateY(-4px);
}

.product-card__image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #2a2618;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card__body {
    padding: 16px;
}

.product-card__name {
    font-size: 0.9rem;
    color: #e8d5a3;
    margin-bottom: 6px;
}

.product-card__price {
    font-size: 0.95rem;
    color: #c9a84c;
}

/* ── Community Teaser ─────────────────────────────────────── */
#community-teaser {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1e1810 0%, #1a1410 100%);
}

.community-teaser__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.community-teaser__title {
    font-size: 2.4rem;
    color: #c9a84c;
    margin-bottom: 16px;
}

.community-teaser__text {
    max-width: 620px;
    margin: 0 auto 40px;
    color: #a08060;
    line-height: 1.9;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.community-stat__number {
    font-size: 2.5rem;
    color: #c9a84c;
    display: block;
    font-family: 'Georgia', serif;
}

.community-stat__label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9a8a7a;
}

/* ── Discount Teaser ──────────────────────────────────────── */
#discounts-teaser {
    padding: 60px 0;
    background: #221c12;
    border-top: 1px solid #c9a84c22;
    border-bottom: 1px solid #c9a84c22;
}

.discounts-teaser__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.discounts-teaser__text h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.discounts-teaser__text p {
    color: #9a8a7a;
}

/* ── Social Feeds ─────────────────────────────────────────── */
#social-feeds {
    padding: 80px 0;
    background: #2a2318;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-tab {
    padding: 10px 24px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #c9a84c22;
    color: #9a8a7a;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Georgia', serif;
}

.social-tab.active,
.social-tab:hover {
    background: #c9a84c;
    color: #0d0d0d;
    border-color: #c9a84c;
}

.social-feed-panel {
    display: none;
}

.social-feed-panel.active {
    display: block;
}

/* ── Buy Me a Coffee ──────────────────────────────────────── */
#buy-me-coffee {
    padding: 60px 0;
    text-align: center;
    background: #272116;
}

.coffee__text {
    max-width: 500px;
    margin: 0 auto 30px;
    color: #a08060;
}

/* ── Newsletter ───────────────────────────────────────────── */
#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #28221a 0%, #221e14 100%);
    text-align: center;
    border-top: 1px solid #c9a84c22;
}

.newsletter__title {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 12px;
}

.newsletter__sub {
    color: #a08060;
    margin-bottom: 30px;
}

.newsletter__form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    background: #2e2618;
    border: 1px solid #c9a84c33;
    border-right: none;
    color: #e8d5a3;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.newsletter__input::placeholder {
    color: #4a3a2a;
}

.newsletter__input:focus {
    border-color: #c9a84c;
}

.newsletter__btn {
    padding: 14px 28px;
    background: #c9a84c;
    color: #0d0d0d;
    border: none;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: background 0.25s ease;
}

.newsletter__btn:hover {
    background: #e8d5a3;
}

/* ── Contact Strip ────────────────────────────────────────── */
#contact-strip {
    padding: 80px 0;
    background: #221e14;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #2a2318;
    border: 1px solid #c9a84c22;
    color: #e8d5a3;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.25s ease;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4a3a2a;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c9a84c;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    color: #9a8a7a;
    font-size: 0.85rem;
}

.contact-form__checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #c9a84c;
}

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
    background: #1c1810;
    border-top: 1px solid #c9a84c22;
    padding: 50px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand-name {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 10px;
}

.footer__slogan {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8a7a6a;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.85rem;
    color: #7a6a5a;
    line-height: 1.7;
}

.footer__heading {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    font-size: 0.85rem;
    color: #8a7a6a;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #c9a84c;
}

.footer__social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__social a {
    color: #7a6a5a;
    transition: color 0.2s ease;
    display: flex;
}

.footer__social a:hover {
    color: #c9a84c;
}

.footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer__bottom {
    border-top: 1px solid #c9a84c22;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 0.75rem;
    color: #8a7a6a;
    letter-spacing: 0.1em;
}

/* ── Gold border top on sections ─────────────────────────── */
.gold-top {
    border-top: 2px solid #c9a84c;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .shop-grid        { grid-template-columns: repeat(2, 1fr); }
    .footer__grid     { grid-template-columns: 1fr 1fr; }
    .videos-grid      { grid-template-columns: repeat(2, 1fr); }
    .blog-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    /* Hide desktop nav, show burger */
    .header__nav    { display: none; }
    .header__social { display: none; }
    .header__auth   { display: none; }
    .header__burger { display: flex; }

    /* Hero */
    .hero__content  { padding: 90px 20px 0; }
    .hero__slogan   { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero__sub      { font-size: 0.78rem; letter-spacing: 0.12em; }

    /* About */
    .about-snap__grid { grid-template-columns: 1fr; gap: 30px; }
    .about-snap__image { max-width: 340px; margin: 0 auto; }

    /* Grids */
    .videos-grid    { grid-template-columns: 1fr; }
    .blog-grid      { grid-template-columns: 1fr; }
    .shop-grid      { grid-template-columns: repeat(2, 1fr); }
    .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
    .footer__grid   { grid-template-columns: 1fr 1fr; gap: 28px; }

    /* Community */
    .community-stats { gap: 30px; }

    /* Discounts strip */
    .discounts-teaser__inner { flex-direction: column; text-align: center; }

    /* Newsletter — stack input + button */
    .newsletter__form   { flex-direction: column; }
    .newsletter__input  { border-right: 1px solid #c9a84c33; border-bottom: none; }
    .newsletter__btn    { width: 100%; }

    /* Container breathing room */
    .container { padding: 0 16px; }

    /* Section vertical rhythm */
    .section      { padding: 44px 0; }
    #about-snap   { padding: 44px 0; }
    #latest-videos { padding: 44px 0; }
    #latest-blog  { padding: 44px 0; }
}

@media (max-width: 480px) {
    .shop-grid      { grid-template-columns: 1fr; }
    .footer__grid   { grid-template-columns: 1fr; }
    .hero__buttons  { flex-direction: column; align-items: center; }
    .hero__buttons .btn { width: 100%; max-width: 280px; text-align: center; }
    .social-pill    { font-size: 0.7rem; padding: 8px 14px; }
    .welcome__text  { font-size: 1rem; }

    /* Section header titles on very small screens */
    .section-header__title { font-size: 1.3rem; }
}
