/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Manrope:wght@300;400;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --red: #A53B2D;
    --gold: #D4A373;
    --cream: #D4C4B7;
    --dark: #201F1F;
    --black: #0B0B0B;
    --near: #0E0E0E;
    --green: #1A241A;
    --muted: rgba(237, 224, 212, 0.6);
    --border: rgba(80, 69, 59, 0.3);
}

body {
    background: var(--dark);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1170px, 96vw);
    height: 90px;
    z-index: 200;
}

.navbar__bg {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 15px;
    background: rgba(0, 0, 0, 0.40);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.navbar__links {
    position: absolute;
    left: 4.1%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar__links a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}

.navbar__links a.active {
    color: var(--red);
    text-decoration: underline;
}

.navbar__links a:hover {
    color: var(--red);
}

.navbar__logo {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.navbar__right {
    position: absolute;
    right: 4.18%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.navbar__icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.cart-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 28px;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    border-radius: 9999px;
    min-width: 17px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: #fff;
    padding: 0 4px;
}

.navbar__user {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.navbar__user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.navbar__user-name {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.navbar__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--red);
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity .2s;
}

.navbar__contact:hover {
    opacity: .85;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(11, 11, 11, .40) 0%, rgba(11, 11, 11, .90) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 80px 100px;
    gap: 24px;
    max-width: 1024px;
}

.hero__eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    height: 28px;
}

.hero__eyebrow-line {
    width: 48px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
}

.hero__eyebrow-text {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: var(--red);
}

.hero__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(52px, 8.5vw, 128px);
    line-height: 1.12;
    letter-spacing: .45em;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title-line1 {
    color: #fff;
    letter-spacing: .5em;
}

.hero__title-line2 {
    color: var(--red);
    letter-spacing: .3em;
    font-size: .82em;
}

.hero__title-line3 {
    color: var(--red);
    font-style: italic;
    letter-spacing: .08em;
    font-size: .78em;
    text-transform: none;
}

.hero__sub {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: var(--cream);
    padding-top: 8px;
}

.hero__cta-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 24px;
    gap: 24px;
}

.hero__btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 21px 40px;
    width: 249px;
    height: 66px;
    background: var(--red);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.hero__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .002);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    border-radius: 4px;
    z-index: 0;
}

.hero__btn span {
    position: relative;
    z-index: 1;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.hero__btn:hover {
    opacity: .9;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.hero__eyebrow {
    animation: fadeUp .7s ease both;
    animation-delay: .15s;
}

.hero__heading {
    animation: fadeUp .7s ease both;
    animation-delay: .35s;
}

.hero__sub {
    animation: fadeUp .7s ease both;
    animation-delay: .55s;
}

.hero__cta-wrap {
    animation: fadeUp .7s ease both;
    animation-delay: .75s;
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fd2 {
    transition-delay: .12s;
}

.fd3 {
    transition-delay: .24s;
}

/* ─── MENU ─── */
.menu-section {
    background: var(--near);
    padding: 96px 80px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--gold);
    line-height: 1.05;
}

.section-sub {
    color: #BFBFBF;
    font-size: 18px;
    margin-top: 6px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.view-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--red);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.dish-card {
    background: var(--dark);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .3s;
}

.dish-card:hover {
    transform: translateY(-4px);
}

.dish-card img {
    /* width: 100%; */
    height: 280px;
    object-fit: cover;
    display: block;
}

.dish-body {
    padding: 24px;
}

.dish-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #E5E2E1;
}

.dish-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
}

.dish-desc {
    color: var(--cream);
    font-size: 13px;
    line-height: 1.65;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.btn-primary {
    display: block;
    width: 100%;
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 16px;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
}

.btn-primary:hover {
    opacity: .88;
}

/* ─── FUEL ─── */
.fuel-section {
    background: var(--green);
    padding: 128px 80px;
}

.fuel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.fuel-img-wrap {
    position: relative;
}

.fuel-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .4);
}

.fuel-badge {
    position: absolute;
    top: 40px;
    right: -40px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border-radius: 2px;
    padding: 28px 30px;
    min-width: 190px;
}

.fuel-badge-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.fuel-badge-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 2px;
}

.fuel-badge-sub {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.fuel-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.fuel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 58px);
    color: #F2BE8C;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fuel-desc {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.plan-card {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 2px;
    padding: 26px;
    transition: border-color .25s;
}

.plan-card:hover {
    border-color: rgba(165, 59, 45, .35);
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    color: #fff;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
}

.plan-period {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-left: 4px;
}

.btn-subscribe {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 21px 40px;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(165, 59, 45, .25);
    transition: opacity .2s;
}

.btn-subscribe:hover {
    opacity: .9;
}

/* ─── RESERVE ─── */
.reserve-section {
    background: var(--black);
    padding: 128px 32px;
    text-align: center;
}

.reserve-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    color: #fff;
    margin-bottom: 16px;
}

.reserve-sub {
    color: var(--cream);
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.btn-reserve {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 21px 40px;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(165, 59, 45, .3);
    transition: transform .2s, box-shadow .2s;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 50px rgba(165, 59, 45, .4);
}

/* ─── ESSENTIALS ─── */
.essentials-section {
    background: #131313;
    padding: 128px 80px;
}

.essentials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--red);
    color: #fff;
    padding: 9px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s;
}

.btn-outline:hover {
    background: var(--red);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.prod-featured {
    grid-row: span 2;
    position: relative;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(80, 69, 59, .1);
}

.prod-featured-bg {
    position: absolute;
    inset: 0;
    background: url('../images/boots.png') center/cover no-repeat;
    opacity: .62;
}

.prod-featured-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0E0E0E 0%, rgba(14, 14, 14, 0) 55%);
}

.prod-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
}

.prod-tag {
    font-size: 13px;
    color: var(--red);
    margin-bottom: 6px;
}

.prod-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #E5E2E1;
    margin-bottom: 8px;
}

.prod-desc {
    color: var(--cream);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 380px;
}

.prod-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 20px;
}

.prod-small {
    display: flex;
    flex-direction: column;
    background: #1C1B1B;
    border: 1px solid rgba(80, 69, 59, .1);
    border-radius: 8px;
    overflow: hidden;
}

.prod-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prod-small-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prod-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.prod-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prod-small-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #E5E2E1;
}

.prod-small-price {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--gold);
}

.btn-quick-add {
    display: block;
    text-align: center;
    border: 1px solid rgba(165, 59, 45, .25);
    padding: 14px;
    margin-top: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.btn-quick-add:hover {
    background: var(--red);
    border-color: var(--red);
}

.prod-tee {
    display: flex;
    overflow: hidden;
    background: #2A2A2A;
    border: 1px solid rgba(80, 69, 59, .1);
    border-radius: 8px;
}

.prod-tee-info {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prod-tee-img {
    width: 42%;
    flex-shrink: 0;
    background: url('../images/hat.jpg') center/cover;
    opacity: .7;
}

.btn-shop-link {
    color: var(--red);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--red);
    padding-bottom: 3px;
    text-decoration: none;
    width: fit-content;
    margin-top: 20px;
    display: inline-block;
}

/* ─── BRANCHES ─── */
.branches-section {
    background: #131313;
    padding: 96px 80px;
}

.branches-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 52px;
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.branch-card {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark);
}

.branch-card img {
    width: 48%;
    object-fit: cover;
}

.branch-info {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branch-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #E5E2E1;
    margin-bottom: 14px;
}

.branch-details {
    color: var(--cream);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.branch-details .hours {
    color: var(--red);
}

.branch-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-direction {
    color: var(--red);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid var(--red);
    padding-bottom: 3px;
    text-decoration: none;
}

.btn-gallery-link {
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s;
}

.btn-gallery-link:hover {
    color: #fff;
}

/* ─── CONTACT ─── */
.contact-section {
    background: #000;
    padding: 128px 80px;
    border-top: 1px solid rgba(80, 69, 59, .1);
}

.contact-divider {
    max-width: 1280px;
    margin: 0 auto 64px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0) 0%, #D4A373 50%, rgba(212, 163, 115, 0) 100%);
    opacity: .3;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 60px);
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-sub {
    color: var(--cream);
    font-size: 18px;
    margin-bottom: 44px;
}

.form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(53, 53, 52, .4);
    border: 1px solid var(--red);
    border-radius: 4px;
    padding: 13px 16px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    outline: none;
    transition: border-color .2s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(212, 196, 183, .2);
}

.form-textarea {
    height: 138px;
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.btn-submit {
    width: 100%;
    margin-top: 4px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 17px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-submit:hover {
    opacity: .88;
}

.trading-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 28px;
}

.location-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.location-block:last-child {
    border-bottom: none;
}

.loc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.loc-name {
    font-size: 16px;
    color: #E5E2E1;
    letter-spacing: .4px;
}

.loc-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
}

.loc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.loc-row span {
    color: var(--cream);
    font-size: 12px;
    letter-spacing: .5px;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #60D669;
    color: #fff;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 12px;
    transition: opacity .2s;
}

.wa-btn:hover {
    opacity: .87;
}

/* ─── HERITAGE ─── */
.heritage-section {
    background: var(--dark);
    padding: 128px 80px;
    position: relative;
    overflow: hidden;
}

.heritage-watermark {
    position: absolute;
    right: -20px;
    top: -30px;
    font-family: 'Playfair Display', serif;
    font-size: 480px;
    color: var(--gold);
    opacity: .035;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.heritage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.heritage-img-wrap {
    position: relative;
    padding-bottom: 40px;
}

.heritage-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .4);
}

.heritage-stat {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: rgba(212, 163, 115, .6);
    border: 1px solid rgba(212, 163, 115, .2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 28px 32px;
    min-width: 210px;
    max-width: 256px;
    min-height: 320px;
}

.heritage-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #5B3912;
    line-height: 1;
}

.heritage-stat-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E5E2E1;
    margin-top: 8px;
}

.heritage-eyebrow {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.heritage-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 56px);
    color: #E5E2E1;
    line-height: 1.05;
    margin-bottom: 24px;
}

.heritage-p {
    color: var(--cream);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* ─── REVIEW ─── */
.review-section {
    background: #0E0E0E;
    padding: 96px 80px;
    text-align: center;
}

.review-inner {
    max-width: 840px;
    margin: 0 auto;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--red);
    line-height: .6;
    margin-bottom: 28px;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 34px);
    color: #E5E2E1;
    line-height: 1.4;
    margin-bottom: 28px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.star {
    color: var(--red);
    font-size: 18px;
}

.reviewer-name {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 4px;
}

.reviewer-title {
    font-size: 12px;
    color: var(--cream);
}

/* ─── GALLERY ─── */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 460px;
}

.gallery-panel {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .5s, transform .6s;
    display: block;
}

.gallery-panel:hover img {
    filter: grayscale(0);
    transform: scale(1.06);
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(80, 69, 59, .1);
    padding-top: 80px;
}

/* ─── FOOTER GRID (5-column Figma layout) ─── */
.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 81px 48px 56px;
}

/* Column 1 — Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30.8px;
    width: 200px;
    flex-shrink: 0;
}

.footer-brand-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
}

.footer-brand-name .footer-logo {
    width: 111px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--red);
    width: 200px;
    line-height: 1.5;
}

.social-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 200px;
}

.soc-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(80, 69, 59, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: border-color .2s, color .2s;
}

.soc-link svg {
    width: 20px;
    height: 20px;
}

.soc-link:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Columns 2–5 */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 200px;
    flex-shrink: 0;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--red);
}

.footer-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 200px;
}

.footer-ul a {
    color: var(--muted);
    font-size: 14px;
    font-family: "Magari", serif;
    line-height: 20px;
    text-decoration: none;
    letter-spacing: 0.35px;
    transition: color .2s;
}

.footer-ul a:hover {
    color: var(--cream);
}

/* Contact column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 200px;
}

.footer-contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.footer-contact-row span {
    color: var(--muted);
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.35px;
    font-family: "Magari", serif;
    font-style: regular;
}

/* Live Chat column */
.footer-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
    width: 200px;
    font-family: "Magari", serif;
}

.wa-footer {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #60D669;
    color: #fff;
    padding: 12px 24px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    width: 193px;
    height: 44px;
    box-sizing: border-box;
    transition: opacity .2s;
}

.wa-footer:hover {
    opacity: .87;
}

.footer-bottom {
    border-top: 1px solid rgba(80, 69, 59, .1);
    padding: 22px 48px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer-copy {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(237, 224, 212, .35);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — HAMBURGER / MOBILE DRAWER
══════════════════════════════════════════════════ */
.navbar__hamburger {
    display: none;
    position: absolute;
    right: 4.18%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 210;
}

.navbar__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.navbar__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar__drawer {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(11, 11, 11, 0.97);
    z-index: 205;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.navbar__drawer.is-open {
    transform: translateX(0);
}

.navbar__drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.navbar__drawer-links a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .2s;
}

.navbar__drawer-links a:hover {
    color: var(--red);
}

/* ══════════════════════════════════════════════════
   BREAKPOINT: LAPTOP  ≤ 1300px
══════════════════════════════════════════════════ */
@media (max-width: 1300px) {

    .menu-section,
    .fuel-section,
    .reserve-section,
    .essentials-section,
    .branches-section,
    .contact-section,
    .heritage-section,
    .review-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .pg-wrap,
    .es-header {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .pg-boots {
        flex: 0 0 62%;
    }

    .pg-sauce {
        flex: 0 0 38%;
    }

    .pg-tee__info {
        flex: 0 0 45%;
    }
}

/* ══════════════════════════════════════════════════
   BREAKPOINT: TABLET  ≤ 1024px
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* --- Navbar --- */
    .navbar__links,
    .navbar__right {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__drawer {
        display: flex;
    }

    /* --- Hero --- */
    .hero__content {
        padding: 0 40px 80px;
    }

    /* --- All sections padding --- */
    .menu-section,
    .fuel-section,
    .reserve-section,
    .essentials-section,
    .branches-section,
    .contact-section,
    .heritage-section,
    .review-section {
        padding: 80px 40px;
    }

    /* --- Menu --- */
    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 36px;
    }

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

    /* --- Fuel --- */
    .fuel-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fuel-badge {
        right: 0;
    }

    .fuel-img {
        height: 420px;
    }

    /* --- Essentials header --- */
    .es-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .es-header__btn {
        width: 100%;
    }

    /* --- Product grid --- */
    .pg-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .pg-row {
        flex-direction: column;
        height: auto !important;
    }

    .pg-boots,
    .pg-hat,
    .pg-sauce,
    .pg-tee {
        flex: none;
        width: 100%;
    }

    .pg-row--top .pg-boots {
        height: 420px;
    }

    .pg-row--top .pg-hat {
        height: 320px;
    }

    .pg-row--bottom .pg-sauce {
        height: 340px;
    }

    .pg-row--bottom .pg-tee {
        height: 300px;
    }

    .pg-tee__info {
        flex: none;
        width: 55%;
    }

    /* --- Branches --- */
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .branch-card {
        flex-direction: column;
    }

    .branch-card img {
        width: 100%;
        height: 220px;
    }

    /* --- Contact --- */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* --- Heritage --- */
    .heritage-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .heritage-img-wrap {
        padding-bottom: 0;
    }

    .heritage-img {
        height: 380px;
    }

    .heritage-stat {
        position: static;
        margin-top: 24px;
        min-height: auto;
    }

    /* --- Gallery --- */
    .gallery-strip {
        grid-template-columns: 1fr 1fr;
        height: 360px;
    }

    /* --- Footer --- */
    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
        padding: 48px 40px 40px;
    }

    .footer-brand,
    .footer-col {
        width: calc(50% - 20px);
    }
}

/* ══════════════════════════════════════════════════
   BREAKPOINT: MOBILE  ≤ 640px
══════════════════════════════════════════════════ */
@media (max-width: 640px) {

    /* --- Navbar --- */
    .navbar {
        top: 16px;
        height: 70px;
    }

    .navbar__bg {
        top: 10px;
        bottom: 10px;
        border-radius: 20px;
    }

    .navbar__logo img {
        height: 56px;
    }

    /* --- Hero --- */
    .hero__content {
        padding: 0 20px 60px;
        gap: 16px;
    }

    .hero__eyebrow-text {
        font-size: 14px;
    }

    .hero__sub {
        font-size: 14px;
    }

    .hero__btn {
        width: 100%;
    }

    /* --- All sections padding --- */
    .menu-section,
    .fuel-section,
    .reserve-section,
    .essentials-section,
    .branches-section,
    .contact-section,
    .heritage-section,
    .review-section {
        padding: 64px 20px;
    }

    /* --- Menu --- */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
    }

    /* --- Fuel --- */
    .fuel-badge {
        display: none;
    }

    .fuel-img {
        height: 280px;
    }

    .plan-cards {
        grid-template-columns: 1fr;
    }

    .btn-subscribe {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
    }

    /* --- Reserve --- */
    .reserve-sub {
        font-size: 15px;
    }

    .btn-reserve {
        width: 100%;
        text-align: center;
    }

    /* --- Essentials --- */
    .es-header {
        margin-bottom: 32px;
    }

    .es-title {
        font-size: 36px;
        line-height: 1.15;
    }

    .es-header__btn {
        width: 100%;
    }

    .pg-row--top .pg-boots {
        height: 320px;
    }

    .pg-row--top .pg-hat {
        height: 280px;
    }

    .pg-row--bottom .pg-sauce {
        height: 300px;
    }

    .pg-row--bottom .pg-tee {
        flex-direction: column;
        height: auto;
    }

    .pg-tee__info {
        width: 100%;
        padding: 28px 24px;
    }

    .pg-tee__img {
        width: 100%;
        height: 220px;
    }

    .pg-boots__info {
        padding: 24px;
    }

    .pg-sauce__info {
        padding: 24px;
    }

    .pg-sauce__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* --- Branches --- */
    .branches-title {
        font-size: 32px;
    }

    .branch-info {
        padding: 24px;
    }

    /* --- Contact form --- */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sub {
        font-size: 15px;
    }

    /* --- Heritage --- */
    .heritage-img {
        height: 260px;
    }

    .heritage-stat {
        min-width: auto;
    }

    /* --- Gallery --- */
    .gallery-strip {
        grid-template-columns: 1fr 1fr;
        height: 300px;
    }

    /* --- Footer --- */
    .footer-grid {
        flex-direction: column;
        padding: 40px 20px 32px;
        gap: 32px;
    }

    .footer-brand,
    .footer-col {
        width: 100%;
    }

    .footer-ul {
        width: 100%;
    }

    .footer-bottom {
        padding: 16px 20px;
    }

    .wa-footer {
        width: 100%;
        justify-content: center;
    }
}

/* Total grid width: 1280px | Row 1: Boots(845px) | gap(16px) | Hat(419px) | Row 2: Sauce(519px) | gap(16px) | Tee(745px) | Row heights: top=532px bottom=400px */

.pg-wrap {
    width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pg-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

/* ── ROW 1 heights ── */
.pg-row--top {
    height: 532px;
}

.pg-row--bottom {
    height: 400px;
}

/* ────────────────────────────────
   BOOTS — large left card
   Figma: left 0, right 434.67px → width = 1280-434.67-16 = 829.33px
   Using flex-grow to fill remaining
──────────────────────────────── */
.pg-boots {
    flex: 0 0 845px;
    position: relative;
    background: #201F1F;
    border: 1px solid rgba(80, 69, 59, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pg-boots__img {
    position: absolute;
    inset: 0;
    background: url('../images/boots.png') center/cover no-repeat;
    opacity: 0.5;
}

.pg-boots__grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0E0E0E 0%, rgba(14, 14, 14, 0) 50%, rgba(14, 14, 14, 0) 100%);
}

.pg-boots__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pg-boots__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-top: 0;
}

/* ────────────────────────────────
   HAT — right card
   Figma: left 869.33px → width = 1280-869.33 = 410.67px
──────────────────────────────── */
.pg-hat {
    flex: 1;
    background: #1C1B1B;
    border: 1px solid rgba(80, 69, 59, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 0;
    justify-content: space-between;
}

.pg-hat__img-wrap {
    width: 100%;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.pg-hat__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    display: block;
}

.pg-hat__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.pg-hat__label {
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #A53B2D;
}

.pg-hat__name-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.pg-hat__add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 57px;
    border: 1px solid rgba(165, 59, 45, 0.2);
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.pg-hat__add:hover {
    background: rgba(165, 59, 45, 0.15);
    border-color: rgba(165, 59, 45, 0.5);
}

/* ────────────────────────────────
   EMBER SAUCE — bottom left
   Figma: left 0, right 760.67px → width ≈ 519px
──────────────────────────────── */
.pg-sauce {
    flex: 0 0 519px;
    position: relative;
    background: #201F1F;
    border: 1px solid rgba(80, 69, 59, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* desaturated bottle photo using mix-blend saturation trick */
.pg-sauce__bg {
    position: absolute;
    inset: 0;
    background: url('../images/sauce.png') center/cover no-repeat;
    background-position: center 20%;
    opacity: 0.45;
    filter: saturate(0) brightness(0.65);
}

.pg-sauce__grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0E0E0E 0%, rgba(14, 14, 14, 0) 55%);
}

.pg-sauce__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
}

.pg-sauce__desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #D4C4B7;
    margin-bottom: 24px;
    max-width: 320px;
}

.pg-sauce__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.pg-sauce__sizes {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

/* size toggle buttons */
.pg-size-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(80, 69, 59, 0.3);
    border-radius: 2px;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #E5E2E1;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.pg-size-btn--active {
    border-color: #D4A373;
    color: #D4A373;
}

.pg-size-btn:hover {
    border-color: #D4A373;
    color: #D4A373;
}

/* ────────────────────────────────
   TEE — bottom right
   Figma: left 543.33px → width = 1280-543.33-16 = 720.67px
──────────────────────────────── */
.pg-tee {
    flex: 1;
    background: #2A2A2A;
    border: 1px solid rgba(80, 69, 59, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.pg-tee__info {
    flex: 0 0 367px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pg-tee__img {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
}

.pg-tee__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    display: block;
}

/* ────────────────────────────────
   SHARED PRODUCT TOKENS
──────────────────────────────── */
.pg-label {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #A53B2D;
    margin-bottom: 8px;
}

.pg-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #E5E2E1;
    margin: 0;
}

.pg-card-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #D4C4B7;
}

.pg-price {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #D4A373;
}

/* outlined border button */
.pg-btn-border {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    height: 34px;
    border: 1px solid #A53B2D;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.pg-btn-border:hover {
    background: rgba(165, 59, 45, 0.2);
}

/* solid red button */
.pg-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    height: 39px;
    background: #A53B2D;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
    white-space: nowrap;
}

.pg-btn-red:hover {
    opacity: .85;
}

/* underline text link */
.pg-shop-link {
    display: inline-block;
    margin-top: 20px;
    padding-bottom: 3px;
    border-bottom: 1px solid #A53B2D;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #A53B2D;
    text-decoration: none;
    transition: opacity .2s;
}

.pg-shop-link:hover {
    opacity: .7;
}

/* ── ESSENTIALS SECTION HEADER ── */

.es-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 1280px;
    max-width: 1280px;
    margin: 0 auto 64px;
    gap: 200px;
}

.es-header__text {
    max-width: 667px;
}

.es-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #A53B2D;
    margin-bottom: 8px;
}

.es-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    color: #F2BE8C;
    margin-bottom: 8px;
}

.es-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #D4C4B7;
    padding-top: 8px;
}

/* "View Collection" big red button — 274×66px, matches Figma */
.es-header__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 274px;
    height: 66px;
    background: #A53B2D;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    isolation: isolate;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    transition: opacity .2s;
}

.es-header__btn:hover {
    opacity: .88;
}

.es-header__btn span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
}