/* Theme Variables */

:root {
    --bg-color: hsl(36, 30%, 96%);
    --text-color: hsl(25, 18%, 20%);
    --header-bg: hsla(36, 30%, 96%, 0.95);
    --logo-bg: hsl(36, 30%, 96%);
    --header-text: hsl(25, 18%, 25%);
    --home-bg: hsl(34, 32%, 95%);
    --paragraph-color: hsl(25, 12%, 32%);
    --accent-gold: hsl(42, 65%, 48%);
    --gold-shimmer: linear-gradient(90deg, hsl(42 65% 48%) 0%, hsl(45 70% 65%) 50%, hsl(42 65% 48%) 100%);
    --accent-burgundy: hsl(354, 45%, 35%);
    --accent-dark: hsl(30, 30%, 12%);
    --nav-item-size: 1.3rem;
    --logo-width: 110px;
    --logo-height: 48px;
    --logo-pad-left: 0.15rem;
    --logo-pad-right: 0.15rem;
    --logo-bg: hsla(36, 30%, 96%, 0.9);
}

body.dark-mode {
    --bg-color: hsl(0, 0%, 6%);
    --text-color: hsl(0, 0%, 92%);
    --header-bg: hsla(0, 0%, 8%, 0.95);
    --logo-bg: hsl(0, 0%, 8%);
    --header-text: hsl(0, 0%, 92%);
    --home-bg: hsl(0, 0%, 8%);
    --paragraph-color: hsl(0, 0%, 72%);
    --accent-gold: hsl(42, 60%, 52%);
    --accent-burgundy: hsl(0, 0%, 16%);
    --accent-dark: hsl(0, 0%, 4%);
    --logo-bg: hsla(0, 0%, 10%, 0.9);
}

/* Gold shimmer utility */
.gold-shimmer {
    background: linear-gradient(90deg, hsl(42 65% 48%) 0%, hsl(45 70% 65%) 50%, hsl(42 65% 48%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Body Style */

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    height: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
    letter-spacing: 0.2px;
}

/* Header Section Styles */

header {

    /* Header Size */
    width: 100%;
    height: 75px;

    /* Header Layout */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Header Positioning */
    position: fixed;
    top: 0;
    left: 0;

    /* Header Content Color */
    color: var(--header-text);

    /* Header Z-index */
    z-index: 1000;

}

header nav {

    /* Navigation Size */
    width: 100%;
    height: inherit;

    /* Navigation Content Layout */
    display: flex;
    align-items: center;
    justify-content: flex-end;

    /* Navigation Container Styles */
    background-color: transparent;
    box-shadow: none;
    border-bottom: 0;
    padding-inline-start: 1.5rem;
    padding-inline-end: 1.5rem;

    /* Text Style */
    color: var(--header-text);
    font-weight: 500;
    font-family: "Crimson Pro", "Cormorant Garamond", serif;
    transition: background-color 0.3s ease, color 0.3s ease;

    /* Navigation Positioning */
    position: relative; 

    /* Navigation Container Z-index */
    z-index: 999; 
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
    text-decoration: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    position: relative;
    z-index: 3;
    height: 100%;
}

.brand-logo img {
    width: auto;
    height: 100%;
    max-height: 100%;
    filter: saturate(1.35) contrast(1.1);
}

.brand-logo:hover img {
    filter: saturate(1.55) contrast(1.15);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-left: auto;
}

header nav a,
#nav-buttons button {
    color: inherit;
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--nav-item-size);
}

body.nav-scrolled header nav {
    background-color: var(--header-bg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 0;
}

body.nav-open header nav {
    background-color: var(--header-bg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 0;
}

body.nav-open header nav a,
body.nav-open #nav-buttons button {
    opacity: 1;
}

body:not(.dark-mode).nav-open header nav a {
    color: hsl(30, 25%, 10%);
}

body.nav-open header nav ul li a:hover,
body.nav-open header nav ul li a.active {
    color: var(--accent-gold);
}

body.nav-scrolled header nav a,
body.nav-scrolled #nav-buttons button {
    opacity: 1;
}

body.nav-scrolled header {
    background-color: var(--header-bg);
}


/* Header Navigation Logo Styles */
header nav > span {

    /* Navigation Logo Container Size */
    width: 120px;
    height: auto;

    /* Navigation Logo Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: 0;
}

/* Header Navigation Link List Styles */
header nav ul {

    /* Navigation Link List Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;

}

header nav ul li a {
    font-size: var(--nav-item-size);

}

header nav ul li a.active {
    color: var(--accent-gold);
}

header nav ul li a:hover {
    color: var(--accent-gold);
}

/* Header Navigation Styles on Mobile */

#nav-buttons {

    /* Navigation Button Size */
    width: auto;

    /* Mobile Toggle Button Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    column-gap: 0;

    /* Mobile Toggle Button Styles */
    cursor: pointer;

}

#nav-buttons button {
    margin-inline-end: 0;
}

#nav-buttons button:first-child {
    margin-inline-end: 1rem;
}

#nav-buttons button:last-child {
    
    /* Hide on Large Displays */
    display: none;

}

#nav-buttons button:last-child i {
    
    /* Button Size */
    font-size: var(--nav-item-size);

}

#nav-buttons i,
.footer-contact i,
.about-actions i {
    font-size: var(--nav-item-size);
}

@media (max-width: 768px) {

    /* Navigation Mobile Menu Toggle Button */

    #nav-buttons button:last-child {
        
        /* Mobile Toggle Button Visibility */
        display: flex;
    }

    /* Navigation Mobile Dropdown Menu*/
    
    header nav ul {

        /* Navigation Link List Size */
        width: 100%;
        height: auto;
        padding: 1.6rem 0;

        /* Navigation Link List Layout */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        /* Navigation Link List Positioning */
        position: absolute;
        top: -1000px;
        left: 0;

        background-color: hsl(0, 0%, 100%);
        background: transparent;
        backdrop-filter: blur(25px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    }

    header nav ul li {

        /* Navigation Link List Item's Size */
        width: 100%;

        /* Navigation Link List Item's Layout */
        display: block;
        place-content: center;
        text-align: center;
        
    }

    header nav ul li a {

        /* Navigation Link List Item Fill Width of List Container*/
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        padding: 1.2rem 0;

        text-align: center;

        /* Transtions */
        transition: color 0.3s ease-in-out;

    }

    header nav ul[open] {
        top: 75px;
        opacity: 1;
    }

    header nav {
        justify-content: center;
    }

    .brand-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
    }

    #home {
        --frame-gap-width: 100px;
        --frame-gap-start: calc(50% - (var(--frame-gap-width) / 2));
    }

}
    
/* Main Section */

main {

    /* Main Section Sizing */
    width: 100%;
    height: auto;

}

/* Home Section */

#home {

    /* Home Section Size */
    width: 100%;
    min-height: 85vh;
    padding: 6rem 1.5rem;

    /* Home Section Layout */
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;

    /* Home Section Container Style */
    background-color: var(--home-bg);
    background-image: url("../Img/Co%20Previen-2%20-%20Edited.png");
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
    background-size: contain;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    color: hsl(36, 40%, 96%);
    position: relative;
    --frame-inset: 1.2rem;
    --frame-color: rgba(255, 213, 140, 0.45);
    --frame-gap-width: 0px;
    --frame-gap-start: 0px;

}


#home::after {
    content: "";
    position: absolute;
    inset: var(--frame-inset);
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(var(--frame-color), var(--frame-color)) left top / 100% 1px no-repeat,
        linear-gradient(var(--frame-color), var(--frame-color)) left bottom / 100% 1px no-repeat,
        linear-gradient(var(--frame-color), var(--frame-color)) left top / 1px 100% no-repeat,
        linear-gradient(var(--frame-color), var(--frame-color)) right top / 1px 100% no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 1.6rem;
    max-width: 640px;
    align-items: flex-start;
    text-align: left;

}

.hero-eyebrow {
    font-family: "Crimson Pro", serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 14px rgba(255, 224, 160, 0.35);
}

#home h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 4vw + 1rem, 5.5rem);
    line-height: 1.05;
    font-weight: 500;
    color: #f7f0e6;

}

#home h1 span {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(255, 215, 140, 0.45);
}

.hero-subtitle {

    font-size: 1.05rem;
    color: hsl(36, 30%, 90%);
    max-width: 520px;
    line-height: 1.8;
    opacity: 0.9;

}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-btn {
    padding: 0.95rem 2.4rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease-in-out, color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}

.hero-btn.primary {
    background: var(--gold-shimmer);
    color: #1a140c;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.35);
}

.hero-btn.ghost {
    color: hsl(36, 40%, 90%);
    border-bottom: 1px solid currentColor;
    padding: 0.85rem 0;
}

.hero-btn.ghost:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Responsive Layout */

@media (max-width: 900px) {

    #home {

        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;

    }

    /* Keep paragraph centered like h1 & button */

    .hero-subtitle {

        margin-inline: 0;

    }

    .hero-actions {
        justify-content: flex-start;
    }

}

/* =========================
   FEATURED PIECES
========================= */

.featured-section {
    padding: 6rem 2rem 6.5rem;
    background: hsl(34, 32%, 95%);
    text-align: center;
}

.featured-eyebrow {
    font-family: "Crimson Pro", serif;
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.featured-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 3.8vw + 1rem, 5rem);
    font-weight: 600;
    color: hsl(25, 18%, 18%);
    margin-bottom: 1rem;
}

.featured-subtitle {
    max-width: 520px;
    margin: 0 auto 3.5rem;
    color: hsl(25, 12%, 38%);
    font-size: 1rem;
    line-height: 1.7;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-card {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.4s ease;
    background: #f8f9fb;
}

.featured-card:hover {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.featured-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
}

.featured-media::after {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border: 1px solid rgba(255, 213, 140, 0.45);
    border-radius: 0;
    pointer-events: none;
}

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

.featured-card:hover .featured-media img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

.featured-text {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    text-align: left;
    color: #fff;
    z-index: 1;
}

.featured-text span {
    font-family: "Crimson Pro", serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    margin-bottom: 0.35rem;
}

.featured-text h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 600;
}

body.dark-mode .featured-section {
    background: hsl(0, 0%, 6%);
}

body.dark-mode .featured-eyebrow {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .featured-title {
    color: hsl(34, 20%, 95%);
}

body.dark-mode .featured-card {
    background: hsl(0, 0%, 10%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

body.dark-mode .featured-card:hover {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .featured-section {
        padding: 4rem 1.5rem 4.5rem;
    }

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

/* =========================
   FEATURED COLLECTIONS
========================= */

.featured-collections {
    max-width: 1100px;
    margin: 4rem auto 0;
    display: grid;
    gap: 5rem;
}

.collection-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: hsl(25, 18%, 18%);
    margin-bottom: 1.4rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.collection-card {
    background: #f8f9fb;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.collection-grid--watches .collection-card img {
    object-fit: contain;
    background: #fff;
}

.collection-grid--watches .collection-card {
    background: #fff;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.collection-card:hover img {
    transform: scale(1.04);
}

.collection-card figcaption {
    padding: 0.85rem 1rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: hsl(25, 18%, 30%);
    font-weight: 600;
}

body.dark-mode .collection-title {
    color: hsl(0, 0%, 92%);
}

body.dark-mode .collection-card {
    background: hsl(0, 0%, 0%);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5);
}

body.dark-mode .collection-card img {
    background: hsl(0, 0%, 0%);
}

body.dark-mode .collection-card figcaption {
    color: hsl(0, 0%, 70%);
}

@media (max-width: 900px) {
    .featured-collections {
        margin-top: 3rem;
        gap: 3rem;
    }
}

@media (max-width: 700px) {
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-grid--paired .pair-1-gold { order: 1; }
    .collection-grid--paired .pair-1-white { order: 2; }
    .collection-grid--paired .pair-2-gold { order: 3; }
    .collection-grid--paired .pair-2-white { order: 4; }
    .collection-grid--paired .pair-3-gold { order: 5; }
    .collection-grid--paired .pair-3-white { order: 6; }

    .collection-grid--watches .collection-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 360px;
        width: 100%;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: hsl(25, 22%, 12%);
    color: hsl(36, 20%, 82%);
    padding: 4.5rem 2rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand span {
    display: inline-flex;
    margin-bottom: 1.2rem;
}

.footer-brand img {
    width: 260px;
    height: auto;
    filter: saturate(1.35) contrast(1.1);
}

.footer-brand p {
    color: hsl(36, 12%, 70%);
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    color: hsl(36, 20%, 92%);
    margin-bottom: 1.2rem;
}

.footer-links ul {
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: hsl(36, 10%, 72%);
    transition: color 0.3s ease-in-out;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: hsl(36, 10%, 72%);
    margin-bottom: 0.8rem;
}

.footer-contact i {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-contact a {
    color: inherit;
}

.footer-divider {
    max-width: 1100px;
    height: 1px;
    background: hsl(25, 18%, 22%);
    margin: 3rem auto 1.5rem;
}

.footer-copy {
    text-align: center;
    color: hsl(36, 10%, 55%);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .site-footer {
        padding: 3.5rem 1.75rem 2.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand span {
        justify-content: center;
    }

    .footer-links ul {
        justify-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

body.dark-mode .site-footer {
    background: hsl(0, 0%, 5%);
    color: hsl(0, 0%, 82%);
}

body.dark-mode .footer-links h3,
body.dark-mode .footer-contact h3 {
    color: hsl(0, 0%, 88%);
}

body.dark-mode .footer-links a,
body.dark-mode .footer-brand p,
body.dark-mode .footer-contact p,
body.dark-mode .footer-copy {
    color: hsl(0, 0%, 62%);
}

body.dark-mode .footer-divider {
    background: hsl(0, 0%, 18%);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    width: 100%;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 4rem;
    background: hsl(36, 30%, 96%);
}

/* =========================
   ABOUT STORY SECTION
========================= */

.about-story {
    padding: 6rem 2rem;
    background: hsl(34, 32%, 95%);
    text-align: center;
}

.about-story-eyebrow {
    font-family: "Crimson Pro", serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.about-story-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 2.8vw + 1rem, 3.6rem);
    font-weight: 600;
    color: hsl(25, 18%, 18%);
    margin-bottom: 1rem;
}

.about-story-subtitle {
    max-width: 620px;
    margin: 0 auto 3.5rem;
    color: hsl(25, 12%, 38%);
    font-size: 1rem;
    line-height: 1.7;
}

.about-story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.about-story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.about-story-item.reverse .about-story-media {
    order: 2;
}

.about-story-item.reverse .about-story-content {
    order: 1;
}

.about-story-media {
    position: relative;
    padding: 16px;
    background: hsl(36, 25%, 92%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-story-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-story-media::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 213, 140, 0.45);
    pointer-events: none;
}

.about-story-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: hsl(25, 18%, 18%);
}

.about-story-content p {
    color: var(--paragraph-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

body.dark-mode .about-story {
    background: hsl(0, 0%, 6%);
}

body.dark-mode .about-story-title {
    color: hsl(0, 0%, 92%);
}

body.dark-mode .about-story-subtitle,
body.dark-mode .about-story-content p {
    color: hsl(0, 0%, 72%);
}

body.dark-mode .about-story-media {
    background: hsl(0, 0%, 10%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .about-story-content h3 {
    color: hsl(0, 0%, 90%);
}

/* -------------------------
   IMAGE SIDE
------------------------- */

.about-media {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: hsl(36, 25%, 92%);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-media img {
    width: min(480px, 95%);
    border-radius: 0;
    box-shadow: none;
    display: block;
    border: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-media::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid hsl(36, 20%, 82%);
    pointer-events: none;
}

.about-media:hover,
.about-story-media:hover {
    box-shadow: 0 0 28px rgba(255, 213, 140, 0.55), 0 0 12px rgba(255, 213, 140, 0.45);
    transform: translateY(-4px);
}

body.dark-mode .about-media:hover,
body.dark-mode .about-story-media:hover {
    box-shadow: 0 0 32px rgba(255, 213, 140, 0.6), 0 0 16px rgba(255, 213, 140, 0.5);
}

/* Badge ON image, centered */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.4rem;
    background: var(--gold-shimmer);
    color: #fff;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 12px 25px hsla(39, 45%, 45%, 0.4);
    white-space: nowrap;
}

/* -------------------------
   TEXT SIDE
------------------------- */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    max-width: 560px;
    text-align: left;
}

.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 2.8vw + 1rem, 3.6rem);
    line-height: 1.1;
}

.about-content h2 span {
    color: var(--accent-gold);
    font-style: italic;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--paragraph-color);
}

/* LIST */
.about-list {
    display: grid;
    gap: 1.2rem;
    justify-items: start;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--paragraph-color);
    text-align: left;
    justify-content: flex-start;
    flex-direction: row;
}

.about-list li::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--gold-shimmer);
    margin-top: 10px;
}

/* CTA */
.about-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    border-radius: 0;
    background: hsl(42, 85%, 62%);
    color: hsl(25, 18%, 12%);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 6px 12px hsla(42, 70%, 45%, 0.5);
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px hsla(42, 75%, 45%, 0.6);
}

.about-note {
    font-size: 0.95rem;
    color: hsl(0, 0%, 40%);
}

/* =========================
   DARK MODE FIX
========================= */

body.dark-mode .about-section {
    background: hsl(0, 0%, 7%);
}

body.dark-mode header nav {
    border-bottom: 0;
}

body.dark-mode.nav-scrolled header nav,
body.dark-mode.nav-open header nav {
    border-bottom: 0;
}

body.dark-mode .about-eyebrow {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .about-content h2 {
    color: #fff;
}

body.dark-mode .about-content p,
body.dark-mode .about-list li,
body.dark-mode .about-note {
    color: hsl(34, 18%, 78%);
}

/* Back To Top */

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(42, 85%, 62%);
    color: hsl(25, 18%, 12%);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 1001;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

body.nav-scrolled .back-to-top {
    opacity: 1;
    pointer-events: auto;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 5rem 2rem;
    }

    .about-content {
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    .about-list {
        justify-items: center;
        margin: 2.5rem 0;
        gap: 1rem;
    }

    .about-list li {
        justify-content: center;
        text-align: center;
        line-height: 2;
    }

    .about-actions {
        justify-content: center;
    }

}

@media (max-width: 900px) {
    .about-story-item {
        grid-template-columns: 1fr;
        align-items: start;
        text-align: left;
        gap: 1.6rem;
    }

    .about-story-media img {
        height: 280px;
    }

    .about-story-media {
        max-width: 100%;
        margin: 0;
    }

    .about-story-item.reverse .about-story-media,
    .about-story-item.reverse .about-story-content {
        order: initial;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .about-story-media img {
        height: 220px;
    }

    #home {
        background-size: 110% auto;
    }
}
