/* =========================================================
   KESARI JEWELLERS
   COMPLETE RESPONSIVE CSS
   Works with the supplied index.html
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --wine: #5a1823;
    --wine-dark: #3d0e17;
    --wine-light: #742b38;

    --gold: #b58a3a;
    --gold-dark: #8d6826;
    --gold-light: #d7b86a;

    --cream: #f8f3e9;
    --cream-dark: #eee5d5;

    --ivory: #fffdf8;

    --brown: #30231f;
    --brown-light: #6b5b54;

    --white: #ffffff;
    --black: #171313;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;

    --shadow: 0 18px 50px rgba(48, 35, 31, 0.10);
    --shadow-dark: 0 25px 70px rgba(20, 10, 10, 0.22);

    --container: 1200px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--ivory);
    color: var(--brown);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}


/* =========================================================
   GENERAL
========================================================= */

main {
    width: 100%;
    overflow: hidden;
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h2 {
    color: var(--wine);
    font-family: var(--serif);
    font-weight: 500;
}

h2 em {
    color: var(--gold-dark);
    font-style: italic;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gold-line {
    width: 55px;
    height: 1px;
    margin: 22px 0;
    background: var(--gold);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid rgba(181, 138, 58, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    width: min(var(--container), 92%);
    min-height: 82px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo img {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 50%;
    object-fit: contain;

    background: var(--white);
    padding: 3px;

    border: 1px solid var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1;
}

.logo-text strong {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-text span {
    margin-top: 6px;

    color: var(--gold-dark);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 4px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.main-nav a {
    position: relative;

    color: var(--brown);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--wine);
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 17px;

    color: var(--white);
    background: var(--wine);

    border: 1px solid var(--wine);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.header-call:hover {
    color: var(--wine);
    background: transparent;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;

    width: 32px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: var(--wine);

    transition: all 0.3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: min(var(--container), 92%);
    min-height: 700px;

    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 70px;

    padding: 80px 0 90px;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 0;

    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(58px, 6vw, 88px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -2px;
}

.hero h1 em {
    color: var(--gold-dark);
    font-style: italic;
}

.hero-left > p {
    max-width: 520px;

    margin: 30px 0;

    color: var(--brown-light);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;

    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 15px 23px;

    color: var(--white);
    background: var(--wine);

    border: 1px solid var(--wine);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.primary-button:hover {
    color: var(--wine);
    background: transparent;
}

.text-button {
    color: var(--wine);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 4px;

    transition: color 0.3s ease;
}

.text-button:hover {
    color: var(--gold-dark);
}


/* =========================================================
   HERO NOTE
========================================================= */

.hero-note {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 50px;

    color: var(--brown-light);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-note span {
    width: 32px;
    height: 1px;

    background: var(--gold);
}

.hero-note b {
    color: var(--gold);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-right {
    position: relative;

    min-height: 590px;
}

.hero-image-frame {
    position: absolute;

    top: 0;
    right: 0;

    width: 88%;
    height: 560px;

    overflow: hidden;

    background: var(--cream-dark);

    border: 9px solid var(--cream);

    box-shadow: var(--shadow-dark);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.8s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.03);
}


/* =========================================================
   HERO GOLD CIRCLE
========================================================= */

.hero-gold-circle {
    position: absolute;

    left: 0;
    bottom: 35px;

    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    border: 8px solid var(--ivory);

    box-shadow: var(--shadow);
}

.hero-gold-circle span {
    color: var(--white);

    font-family: var(--serif);

    font-size: 48px;
}


/* =========================================================
   HERO CAPTION
========================================================= */

.hero-caption {
    position: absolute;

    right: -5px;
    bottom: 70px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    color: var(--wine);
}

.hero-caption strong {
    font-family: var(--serif);

    font-size: 24px;

    letter-spacing: 3px;
}

.hero-caption small {
    color: var(--gold-dark);

    font-size: 8px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================================
   INTRO STRIP
========================================================= */

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: var(--wine);

    color: var(--white);
}

.intro-item {
    min-height: 125px;

    padding: 25px 7%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-item:last-child {
    border-right: none;
}

.intro-item > i {
    color: var(--gold-light);

    font-size: 24px;

    flex-shrink: 0;
}

.intro-item strong {
    display: block;

    font-family: var(--serif);

    font-size: 20px;

    font-weight: 600;
}

.intro-item span {
    display: block;

    color: rgba(255, 255, 255, 0.68);

    font-size: 11px;

    letter-spacing: 0.7px;
}


/* =========================================================
   STORY SECTION
========================================================= */

.story-section {
    width: min(var(--container), 92%);

    margin: auto;

    padding: 120px 0;

    display: grid;

    grid-template-columns: 0.9fr 1fr;

    gap: 100px;

    align-items: center;
}

.story-image {
    position: relative;

    height: 600px;
}

.story-image::before {
    content: "";

    position: absolute;

    width: 80%;
    height: 90%;

    left: -25px;
    top: -25px;

    border: 1px solid var(--gold);

    z-index: 0;
}

.story-image img {
    position: relative;

    width: 88%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

    box-shadow: var(--shadow);
}

.image-label {
    position: absolute;

    right: 0;
    bottom: 35px;

    z-index: 2;

    min-width: 185px;

    padding: 18px 20px;

    background: var(--wine);

    color: var(--white);
}

.image-label span {
    display: block;

    font-family: var(--serif);

    font-size: 22px;

    letter-spacing: 2px;
}

.image-label small {
    display: block;

    margin-top: 4px;

    color: var(--gold-light);

    font-size: 8px;

    letter-spacing: 1px;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.story-content h2 {
    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 500;

    line-height: 1.05;
}

.story-content h2 em {
    color: var(--gold-dark);

    font-style: italic;
}

.story-lead {
    color: var(--wine) !important;

    font-family: var(--serif);

    font-size: 22px;

    line-height: 1.5 !important;
}

.story-content > p {
    max-width: 560px;
    font-size: 16px;
    margin: 28px 0;

    color: var(--brown-light);

    line-height: 1.95;
}


/* =========================================================
   STORY SIGNATURE
========================================================= */

.story-signature {
    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid rgba(181, 138, 58, 0.25);
}

.story-signature span {
    display: block;

    color: var(--wine);

    font-family: var(--serif);

    font-size: 22px;

    letter-spacing: 2px;
}

.story-signature small {
    display: block;

    margin-top: 5px;

    color: var(--gold-dark);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   COLLECTION HEADING
========================================================= */

.collection-heading {
    width: min(var(--container), 92%);

    margin: auto;

    padding: 100px 0 55px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;
}

.collection-heading h2 {
    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 500;

    line-height: 1.05;
}

.collection-heading > p {
    max-width: 500px;
    font-size: 16px;
    color: var(--brown-light);

    line-height: 1.9;
}


/* =========================================================
   MATERIALS
========================================================= */

.materials-section {
    width: min(var(--container), 92%);

    margin: 0 auto 100px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.material-card {
    position: relative;

    min-height: 310px;

    padding: 40px 32px;

    overflow: hidden;

    border: 1px solid rgba(181, 138, 58, 0.18);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.material-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.material-gold {
    background: linear-gradient(
        145deg,
        #f8f0d9,
        #fffdf8
    );
}

.material-silver {
    background: linear-gradient(
        145deg,
        #eeeeee,
        #fffdf8
    );
}

.material-diamond {
    background: linear-gradient(
        145deg,
        #f5eef0,
        #fffdf8
    );
}

.material-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold-dark);

    background: rgba(181, 138, 58, 0.10);

    border: 1px solid rgba(181, 138, 58, 0.25);

    font-size: 21px;
}

.material-card > span {
    display: block;

    color: var(--gold-dark);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.material-card h3 {
    margin-top: 8px;

    color: var(--wine);

    font-family: var(--serif);

    font-size: 32px;

    font-weight: 600;
}

.material-card p {
    max-width: 330px;

    margin-top: 12px;

    color: var(--brown-light);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.category-section {
    width: min(var(--container), 92%);

    margin: 0 auto 110px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.category-tile {
    position: relative;

    min-height: 360px;

    padding: 30px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: var(--white);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.category-tile:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-dark);
}

.category-gold {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,0.18),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #b58a3a,
            #8d6826
        );
}

.category-dark {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,0.08),
            transparent 35%
        ),
        var(--brown);
}

.category-wine {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,0.08),
            transparent 35%
        ),
        var(--wine);
}

.category-number {
    align-self: flex-end;

    font-family: var(--serif);

    font-size: 18px;

    color: rgba(255,255,255,0.65);
}

.category-content span {
    display: block;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.category-content h3 {
    margin-top: 8px;

    color: var(--white);

    font-family: var(--serif);

    font-size: 36px;

    font-weight: 500;
}

.category-content p {
    max-width: 300px;

    margin-top: 10px;

    color: rgba(255,255,255,0.72);

    font-size: 11px;

    line-height: 1.8;
}

.category-content > i {
    margin-top: 25px;

    color: var(--gold-light);

    font-size: 16px;
}


/* =========================================================
   BANGLES SECTION
========================================================= */

.bangles-section {
    width: min(var(--container), 92%);

    margin: auto;

    padding: 110px 0;

    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    align-items: center;

    gap: 80px;
}

.collection-copy {
    max-width: 480px;
}

.collection-number {
    display: block;

    margin-bottom: 20px;

    color: var(--gold-dark);

    font-family: var(--serif);

    font-size: 18px;
}

.collection-copy h2 {
    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(45px, 5vw, 68px);

    font-weight: 500;

    line-height: 0.98;
}

.collection-copy h2 em {
    color: var(--gold-dark);

    font-style: italic;
}

.collection-copy > p {
    margin: 25px 0;

    color: var(--brown-light);

    line-height: 1.9;
}

.collection-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 25px 0;
}

.collection-tags span {
    padding: 7px 12px;

    color: var(--wine);

    background: var(--cream);

    border: 1px solid rgba(181, 138, 58, 0.22);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.outline-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 15px;

    padding: 13px 19px;

    color: var(--wine);

    background: transparent;

    border: 1px solid var(--wine);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.outline-button:hover {
    color: var(--white);

    background: var(--wine);
}


/* =========================================================
   BANGLE GALLERY
========================================================= */

.bangle-gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.bangle-card {
    height: 300px;

    overflow: hidden;

    background: var(--cream);

    box-shadow: 0 10px 30px rgba(48,35,31,0.08);
}

.bangle-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.bangle-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   CHAINS SECTION
========================================================= */

.chains-section {
    width: 100%;

    padding: 110px max(4%, calc((100% - 1200px) / 2));

    background: var(--cream);

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 80px;

    align-items: center;
}

.chain-gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: 260px 260px;

    gap: 15px;
}

.chain-card {
    overflow: hidden;

    background: var(--white);
}

.chain-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.chain-card:hover img {
    transform: scale(1.06);
}

.chain-feature {
    grid-column: 2;

    grid-row: 1 / span 2;

    height: 535px;
}

.chains-section .collection-copy {
    order: 2;
}


/* =========================================================
   NECKLACE SECTION
========================================================= */

.necklace-section {
    width: min(var(--container), 92%);

    margin: auto;

    padding: 120px 0;
}

.necklace-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.necklace-heading h2 {
    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(45px, 5vw, 68px);

    font-weight: 500;

    line-height: 1;
}

.necklace-heading h2 em {
    color: var(--gold-dark);

    font-style: italic;
}

.necklace-heading p {
    max-width: 550px;
    font-size: 16px;
    margin-top: 22px;

    color: var(--brown-light);

    line-height: 1.9;
}


/* =========================================================
   NECKLACE GRID
========================================================= */

.necklace-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.necklace-card {
    position: relative;

    height: 450px;

    overflow: hidden;

    background: var(--cream);
}

.necklace-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.necklace-card:hover img {
    transform: scale(1.06);
}

.necklace-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(61,14,23,0.72),
            rgba(61,14,23,0.05) 55%
        );

    pointer-events: none;
}

.necklace-info {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;

    color: var(--white);
}

.necklace-info span {
    display: block;

    margin-bottom: 5px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}

.necklace-info h3 {
    color: var(--white);

    font-family: var(--serif);

    font-size: 27px;

    font-weight: 500;
}


/* =========================================================
   TYPES SECTION
========================================================= */

.types-section {
    width: min(var(--container), 92%);

    margin: auto;

    padding: 100px 0;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.types-intro h2 {
    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(45px, 5vw, 65px);

    font-weight: 500;

    line-height: 1;
}

.types-intro h2 em {
    color: var(--gold-dark);

    font-style: italic;
}

.types-list {
    border-top: 1px solid rgba(181, 138, 58, 0.25);
}

.type-item {
    min-height: 75px;

    display: grid;

    grid-template-columns: 50px 1fr 30px;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid rgba(181, 138, 58, 0.25);

    transition: padding 0.3s ease;
}

.type-item:hover {
    padding-left: 10px;
}

.type-item > span {
    color: var(--gold-dark);

    font-family: var(--serif);

    font-size: 18px;
}

.type-item strong {
    color: var(--wine);

    font-family: var(--serif);

    font-size: 25px;

    font-weight: 600;
}

.type-item i {
    color: var(--gold-dark);

    font-size: 13px;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    position: relative;

    padding: 130px 20px;

    background: var(--wine);

    color: var(--white);

    text-align: center;

    overflow: hidden;
}

.quote-decoration {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: rgba(215,184,106,0.08);

    font-family: var(--serif);

    font-size: 400px;

    line-height: 1;

    pointer-events: none;
}

.quote-section blockquote {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(34px, 5vw, 58px);

    font-style: italic;

    line-height: 1.15;
}

.quote-line {
    position: relative;

    z-index: 2;

    width: 55px;
    height: 1px;

    margin: 30px auto;

    background: var(--gold-light);
}

.quote-section > span {
    position: relative;

    z-index: 2;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    width: min(var(--container), 92%);

    margin: auto;

    padding: 120px 0;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.contact-intro h2 {
    color: var(--wine);

    font-family: var(--serif);

    font-size: clamp(45px, 5vw, 68px);

    font-weight: 500;

    line-height: 1;
}

.contact-intro h2 em {
    color: var(--gold-dark);

    font-style: italic;
}

.contact-intro > p {
    max-width: 520px;

    margin: 25px 0;

    color: var(--brown-light);

    line-height: 1.9;
}

.ownership-text strong {
    color: var(--wine);
}

.contact-address {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    margin-top: 35px;

    padding-top: 30px;

    border-top: 1px solid rgba(181,138,58,0.25);
}

.contact-address > i {
    margin-top: 5px;

    color: var(--gold-dark);

    font-size: 19px;
}

.contact-address strong {
    display: block;

    color: var(--wine);

    font-family: var(--serif);

    font-size: 20px;
}

.contact-address p {
    margin-top: 5px;

    color: var(--brown-light);

    font-size: 11px;

    line-height: 1.8;
}

.map-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    padding: 12px 17px;

    color: var(--white);

    background: var(--wine);

    border: 1px solid var(--wine);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.map-button:hover {
    color: var(--wine);

    background: transparent;
}


/* =========================================================
   CONTACT OPTIONS
========================================================= */

.contact-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.contact-option {
    min-height: 115px;

    padding: 20px;

    display: grid;

    grid-template-columns: 48px 1fr 20px;

    align-items: center;

    gap: 14px;

    background: var(--cream);

    border: 1px solid rgba(181,138,58,0.16);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);

    background: var(--white);

    box-shadow: var(--shadow);
}

.option-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--wine);

    background: rgba(181,138,58,0.12);

    font-size: 17px;
}

.option-icon.whatsapp {
    color: #15803d;
}

.option-icon.instagram {
    color: #c13584;
}

.option-icon.facebook {
    color: #1877f2;
}

.option-icon.location {
    color: var(--gold-dark);
}

.contact-option span {
    display: block;

    margin-bottom: 3px;

    color: var(--gold-dark);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.contact-option strong {
    display: block;

    color: var(--wine);

    font-family: var(--serif);

    font-size: 17px;

    font-weight: 600;

    line-height: 1.2;

    word-break: break-word;
}

.contact-option > i {
    color: var(--gold-dark);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-section {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: var(--wine-dark);

    color: var(--white);

    text-align: center;
}

.final-pattern {
    position: absolute;

    inset: 25px;

    border: 1px solid rgba(215,184,106,0.38);

    pointer-events: none;
}

.final-pattern::before,
.final-pattern::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(215,184,106,0.15);

    border-radius: 50%;
}

.final-pattern::before {
    left: -90px;
    top: -90px;
}

.final-pattern::after {
    right: -90px;
    bottom: -90px;
}

.final-content {
    position: relative;

    z-index: 2;

    width: min(850px, 90%);
}

.final-content > span {
    color: var(--gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 4px;
}

.final-content h2 {
    margin: 20px 0;

    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(48px, 7vw, 82px);

    font-weight: 500;

    line-height: 0.95;
}

.final-content h2 em {
    color: var(--gold-light);

    font-style: italic;
}

.final-content p {
    margin: 25px 0 30px;

    color: rgba(255,255,255,0.7);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.final-content p b {
    color: var(--gold-light);

    margin: 0 5px;
}

.light-button {
    color: var(--wine);

    background: var(--gold-light);

    border-color: var(--gold-light);
}

.light-button:hover {
    color: var(--gold-light);

    background: transparent;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 25px;

    background: var(--wine-dark);

    color: var(--white);

    border-top: 1px solid rgba(215,184,106,0.18);
}

.footer-main {
    width: min(var(--container), 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 1.3fr 0.7fr 0.7fr 1.2fr;

    gap: 60px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    border-radius: 50%;

    background: var(--white);

    padding: 3px;

    border: 1px solid var(--gold);
}

.footer-brand h3 {
    margin-top: 15px;

    color: var(--white);

    font-family: var(--serif);

    font-size: 30px;

    letter-spacing: 2px;

    line-height: 1;
}

.footer-brand > span {
    display: block;

    margin-top: 5px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 4px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 20px;

    color: rgba(255,255,255,0.58);

    font-size: 10px;

    line-height: 1.9;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h4 {
    margin-bottom: 20px;

    color: var(--gold-light);

    font-family: var(--serif);

    font-size: 21px;

    font-weight: 500;
}

.footer-column a {
    display: block;

    margin-bottom: 11px;

    color: rgba(255,255,255,0.65);

    font-size: 10px;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    margin-bottom: 15px;

    color: rgba(255,255,255,0.6);

    font-size: 10px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: min(var(--container), 92%);

    margin: auto;

    padding-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom span {
    color: rgba(255,255,255,0.45);

    font-size: 9px;

    letter-spacing: 0.5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-inner {
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero {
        gap: 45px;
    }

    .story-section {
        gap: 60px;
    }

    .bangles-section,
    .chains-section {
        gap: 55px;
    }

    .contact-section {
        gap: 55px;
    }

    .footer-main {
        gap: 35px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 75px;
    }

    .logo img {
        width: 52px;
        height: 52px;
    }

    .logo-text strong {
        font-size: 25px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 9px;
    }

    .header-call {
        display: none;
    }


    /* HERO */

    .hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 75px 0 85px;
    }

    .hero-left {
        max-width: 700px;
    }

    .hero-right {
        min-height: 550px;
    }


    /* STORY */

    .story-section {
        grid-template-columns: 1fr;

        gap: 70px;

        padding: 90px 0;
    }

    .story-image {
        max-width: 650px;
    }


    /* MATERIALS */

    .materials-section {
        grid-template-columns: 1fr 1fr;
    }

    .material-card:last-child {
        grid-column: 1 / -1;
    }


    /* CATEGORY */

    .category-section {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 300px;
    }


    /* BANGLES */

    .bangles-section {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .collection-copy {
        max-width: 700px;
    }


    /* CHAINS */

    .chains-section {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-left: 6%;
        padding-right: 6%;
    }

    .chains-section .collection-copy {
        order: initial;
    }


    /* NECKLACES */

    .necklace-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* TYPES */

    .types-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* CONTACT */

    .contact-section {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    html {
        scroll-padding-top: 75px;
    }

    body {
        font-size: 13px;
    }


    /* HEADER */

    .header-inner {
        width: 90%;

        min-height: 72px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        width: 46px;
        height: 46px;
    }

    .logo-text strong {
        font-size: 22px;

        letter-spacing: 1px;
    }

    .logo-text span {
        font-size: 6px;

        letter-spacing: 2.5px;
    }


    /* MOBILE NAV */

    .menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        padding: 25px 6%;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        background: var(--ivory);

        border-bottom: 1px solid rgba(181,138,58,0.2);

        box-shadow: var(--shadow);
    }

    .menu-toggle:checked ~ .main-nav {
        display: flex;
    }

    .main-nav a {
        font-size: 10px;
    }


    /* HERO */

    .hero {
        width: 88%;

        padding: 55px 0 70px;

        gap: 45px;
    }

    .eyebrow {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(52px, 16vw, 75px);

        letter-spacing: -1px;
    }

    .hero-left > p {
        margin: 23px 0;

        font-size: 12px;

        line-height: 1.8;
    }

    .hero-actions {
        gap: 18px;
    }

    .primary-button {
        padding: 13px 18px;

        font-size: 9px;
    }

    .text-button {
        font-size: 9px;
    }

    .hero-note {
        margin-top: 35px;

        font-size: 7px;

        letter-spacing: 1.5px;
    }

    .hero-right {
        min-height: 420px;
    }

    .hero-image-frame {
        width: 92%;

        height: 400px;

        border-width: 6px;
    }

    .hero-gold-circle {
        width: 82px;
        height: 82px;

        bottom: 20px;

        border-width: 5px;
    }

    .hero-gold-circle span {
        font-size: 34px;
    }

    .hero-caption {
        right: 0;

        bottom: 40px;
    }

    .hero-caption strong {
        font-size: 18px;

        letter-spacing: 2px;
    }

    .hero-caption small {
        font-size: 6px;

        letter-spacing: 2px;
    }


    /* INTRO */

    .intro-strip {
        grid-template-columns: 1fr;
    }

    .intro-item {
        min-height: 90px;

        justify-content: flex-start;

        padding: 20px 9%;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .intro-item:last-child {
        border-bottom: none;
    }

    .intro-item > i {
        font-size: 20px;
    }

    .intro-item strong {
        font-size: 18px;
    }


    /* STORY */

    .story-section {
        width: 88%;

        padding: 75px 0;

        gap: 55px;
    }

    .story-image {
        height: 460px;
    }

    .story-image::before {
        left: -12px;
        top: -12px;
    }

    .story-image img {
        width: 91%;
    }

    .image-label {
        min-width: 150px;

        bottom: 25px;

        padding: 13px 15px;
    }

    .image-label span {
        font-size: 18px;
    }

    .image-label small {
        font-size: 7px;
    }

    .story-content h2 {
        font-size: 43px;
    }

    .story-lead {
        font-size: 19px;
    }

    .story-content > p {
        margin: 22px 0;

        font-size: 12px;

        line-height: 1.85;
    }


    /* COLLECTION HEADING */

    .collection-heading {
        width: 88%;

        padding: 70px 0 40px;

        display: block;
    }

    .collection-heading h2 {
        font-size: 43px;
    }

    .collection-heading > p {
        margin-top: 20px;

        font-size: 12px;
    }


    /* MATERIALS */

    .materials-section {
        width: 88%;

        grid-template-columns: 1fr;

        margin-bottom: 75px;
    }

    .material-card:last-child {
        grid-column: auto;
    }

    .material-card {
        min-height: 280px;

        padding: 32px 25px;
    }


    /* CATEGORIES */

    .category-section {
        width: 88%;

        margin-bottom: 75px;
    }

    .category-tile {
        min-height: 310px;

        padding: 25px;
    }

    .category-content h3 {
        font-size: 32px;
    }


    /* BANGLES */

    .bangles-section {
        width: 88%;

        padding: 75px 0;

        gap: 50px;
    }

    .collection-copy h2 {
        font-size: 47px;
    }

    .bangle-gallery {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .bangle-card {
        height: 220px;
    }


    /* CHAINS */

    .chains-section {
        padding: 75px 6%;
    }

    .chain-gallery {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 190px 190px;

        gap: 10px;
    }

    .chain-feature {
        height: 390px;
    }


    /* NECKLACES */

    .necklace-section {
        width: 88%;

        padding: 75px 0;
    }

    .necklace-heading h2 {
        font-size: 43px;
    }

    .necklace-heading p {
        font-size: 12px;
    }

    .necklace-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .necklace-card {
        height: 430px;
    }


    /* TYPES */

    .types-section {
        width: 88%;

        padding: 75px 0;

        gap: 45px;
    }

    .types-intro h2 {
        font-size: 45px;
    }

    .type-item {
        grid-template-columns: 35px 1fr 20px;

        gap: 10px;
    }

    .type-item strong {
        font-size: 20px;
    }


    /* QUOTE */

    .quote-section {
        padding: 90px 20px;
    }

    .quote-decoration {
        font-size: 250px;
    }

    .quote-section blockquote {
        font-size: 35px;
    }


    /* CONTACT */

    .contact-section {
        width: 88%;

        padding: 75px 0;

        gap: 45px;
    }

    .contact-intro h2 {
        font-size: 47px;
    }

    .contact-intro > p {
        font-size: 12px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-option {
        min-height: 100px;
    }

    .contact-option strong {
        font-size: 16px;
    }


    /* FINAL CTA */

    .final-section {
        min-height: 430px;
    }

    .final-pattern {
        inset: 15px;
    }

    .final-content h2 {
        font-size: 50px;
    }

    .final-content p {
        font-size: 8px;

        line-height: 2;
    }


    /* FOOTER */

    .footer {
        padding: 55px 0 20px;
    }

    .footer-main {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-bottom {
        width: 88%;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 50px;
    }

    .hero-right {
        min-height: 350px;
    }

    .hero-image-frame {
        height: 335px;
    }

    .hero-gold-circle {
        width: 70px;
        height: 70px;
    }

    .hero-gold-circle span {
        font-size: 29px;
    }

    .story-image {
        height: 400px;
    }

    .story-content h2,
    .collection-heading h2,
    .necklace-heading h2,
    .contact-intro h2 {
        font-size: 39px;
    }

    .collection-copy h2 {
        font-size: 42px;
    }

    .bangle-card {
        height: 180px;
    }

    .chain-gallery {
        grid-template-rows: 160px 160px;
    }

    .chain-feature {
        height: 330px;
    }

    .necklace-card {
        height: 370px;
    }

    .contact-option {
        grid-template-columns: 42px 1fr 15px;

        padding: 15px;
    }

    .option-icon {
        width: 40px;
        height: 40px;
    }

    .final-content h2 {
        font-size: 43px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--gold);

    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}