@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');
:root {
    --ink: #203b33;
    --muted: #6d746f;
    --gold: #a8803f;
    --paper: #fcfcf9;
    --line: #dfe3dc;
    --soft: #f0f2ed
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 14px/1.7 Manrope, Arial, sans-serif;
    letter-spacing: 0
}

body.modal-open {
    overflow: hidden
}

[hidden] {
    display: none !important
}

button,
input,
textarea,
select {
    font: inherit
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent
}

button,
a {
    touch-action: manipulation
}

button {
    cursor: pointer
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover
}

button {
    color: inherit
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 5px
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.12
}

p {
    margin-bottom: 16px
}

.announcement-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--ink);
    color: white;
    padding: 9px 5%;
    font-size: 10px
}

.announcement-bar p {
    margin: 0
}

.announcement-bar__text {
    font-weight: 600
}

.announcement-bar a {
    border-bottom: 1px solid #ffffff80
}

.site-header {
    position: sticky;
    top: 0;
    background: var(--paper);
    z-index: 30;
    border-bottom: 1px solid var(--line)
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1500px;
    margin: auto;
    padding: 23px 4%
}

.navbar__logo {
    flex-shrink: 0
}

.wordmark {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 28px
}

.wordmark small {
    font: 9px Manrope, sans-serif;
    margin-top: 7px
}

.navbar__nav {
    display: flex;
    gap: 23px;
    margin: auto;
    font-size: 11px
}

.nav-link {
    position: relative;
    padding: 9px 0;
    white-space: nowrap
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--gold)
}

.nav-link.is-active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold)
}

.navbar__actions,
.slider-controls {
    display: flex;
    align-items: center;
    gap: 12px
}

.icon-btn,
.slider-arrow,
.modal__close,
.catalogue-search__clear {
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.icon-btn:hover,
.slider-arrow:hover {
    background: var(--soft)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 26px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    transition: background .2s, color .2s
}

.btn:hover {
    background: #315847;
    color: white
}

.btn--primary {
    background: var(--ink);
    color: #fff
}

.btn--outline {
    background: transparent
}

.btn--sm {
    min-height: 36px;
    padding: 8px 18px
}

.btn--ghost {
    background: transparent;
    border-color: transparent;
    border-bottom-color: currentColor
}

.btn--whatsapp {
    background: #e5eee7;
    border-color: #c3d5c5
}

.btn--block {
    width: 100%
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 530px;
    height: min(660px, 76svh);
    display: flex;
    align-items: center;
    padding: 60px 8%;
    background: #e6e2d9
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-position: center 55%
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(245, 245, 239, .96), rgba(245, 245, 239, .78) 30%, transparent 68%)
}

.hero__content {
    max-width: 440px
}

.eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px
}

.hero__heading {
    font-size: 82px;
    margin: 0 0 22px
}

.hero__text {
    max-width: 320px;
    color: #465248;
    font-size: 13px
}

.hero__actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap
}

.section {
    padding: 74px max(5%, calc((100% - 1300px)/2));
}

.section__head {
    text-align: center;
    margin-bottom: 34px
}

.section__title {
    font-size: 40px;
    margin-bottom: 10px
}

.section__subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 0
}

.section__head--row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 20px
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px
}

.category-item {
    border: 0;
    background: transparent;
    padding: 0;
    text-align: center
}

.category-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    background: var(--soft);
    transition: transform .3s
}

.category-item:hover img {
    transform: translateY(-5px)
}

.category-item span {
    display: block;
    margin-top: 16px;
    font-size: 12px
}

.arrivals-section {
    background: var(--soft)
}

.slider-arrow {
    border: 1px solid #cdd4c9
}

.arrivals-track {
    display: flex;
    gap: 24px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.arrivals-track .product-card {
    flex: 0 0 calc((100% - 72px)/4);
    scroll-snap-align: start
}

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

.product-card {
    min-width: 0;
    position: relative
}

.product-image {
    display: block;
    padding: 0;
    width: 100%;
    border: 0;
    background: #e9ebe5;
    overflow: hidden
}

.product-image img {
    width: 100%;
    aspect-ratio: 4/5;
    transition: transform .5s
}

.product-image:hover img {
    transform: scale(1.045)
}

.product-card__meta {
    padding: 17px 0 4px
}

.product-card h3 {
    font-size: 23px;
    margin: 4px 0 7px
}

.product-card__category {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0
}

.product-card__price {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--paper);
    padding: 4px 10px;
    font-size: 9px;
    pointer-events: none
}

.save-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background: #fffffff0;
    font-size: 21px
}

.save-button[aria-pressed=true] {
    color: #aa4255
}

.catalogue-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px
}

.catalogue-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    min-width: 220px;
    flex: 1;
    padding: 8px 0
}

.catalogue-search input {
    border: 0;
    outline: none;
    background: transparent;
    width: 100%;
    min-width: 0;
    font-size: 12px
}

.catalogue-filters {
    order: 3;
    flex: 1 0 100%;
    display: flex;
    gap: 23px;
    overflow: auto
}

.filter-chip {
    padding: 8px 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    white-space: nowrap;
    font-size: 11px
}

.filter-chip.is-active {
    border-color: var(--ink);
    font-weight: 700
}

.catalogue-sort select {
    border: 1px solid var(--line);
    background: transparent;
    padding: 10px;
    font-size: 11px
}

.catalogue-count {
    font-size: 10px;
    color: var(--muted);
    margin: 20px 0
}

.signature-section {
    position: relative;
    isolation: isolate;
    min-height: 470px;
    display: flex;
    align-items: center;
    background: #e6e8e1
}

.signature-media {
    position: absolute;
    inset: 0;
    z-index: -2
}

.signature-media img {
    width: 100%;
    height: 100%;
    object-position: center 55%
}

.signature-section:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, #edf0e9f5, #edf0e9c9 35%, transparent 80%)
}

.signature-content {
    max-width: 370px
}

.signature-heading,
.about-heading {
    font-size: 52px;
    margin-bottom: 20px
}

.signature-text,
.about-text {
    color: var(--muted);
    max-width: 400px
}

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

.why-card {
    text-align: center;
    padding: 15px 20px
}

.why-card svg {
    margin-bottom: 16px
}

.why-card h3 {
    font-size: 23px
}

.why-card p {
    font-size: 11px;
    color: var(--muted)
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9%;
    align-items: center;
    background: var(--soft)
}

.about-media img {
    width: 100%;
    height: 400px
}

.contact-cta {
    text-align: center;
    background: var(--ink);
    color: white
}

.contact-cta__heading {
    font-size: 48px
}

.contact-cta__text {
    max-width: 430px;
    margin: 0 auto 25px;
    font-size: 12px;
    color: #d1dad3
}

.contact-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.contact-cta .btn--primary {
    background: #f6f7f1;
    color: var(--ink)
}

.site-footer {
    padding: 60px 5% 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .8fr 1.5fr;
    gap: 30px
}

.footer-tagline {
    font-size: 9px;
    margin-top: 20px;
    color: var(--muted)
}

.footer-col h4 {
    font-size: 11px;
    margin: 0 0 18px
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin: 0 0 9px;
    overflow-wrap: anywhere
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 18px
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding: 20px 0;
    font-size: 9px;
    color: var(--muted)
}

.footer-bottom p {
    margin: 0
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 25;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: var(--paper);
    display: grid;
    place-items: center
}

.profile-wrap {
    position: relative
}

.dropdown-panel {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    width: 250px;
    padding: 10px;
    box-shadow: 0 10px 40px #18332924;
    border: 1px solid var(--line)
}

.dropdown-panel__item {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 12px
}

.dropdown-panel__item:hover {
    background: var(--soft)
}

.search-overlay {
    border-top: 1px solid var(--line);
    padding: 18px 5%
}

.search-overlay__inner {
    display: flex;
    align-items: center;
    gap: 15px
}

.search-overlay input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 10px
}

.hamburger-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    padding: 9px
}

.hamburger-btn span {
    display: block;
    height: 1px;
    background: var(--ink);
    margin: 5px 0
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    background: #10251b66;
    z-index: 50
}

.mobile-drawer__panel {
    margin-left: auto;
    width: min(340px, 90%);
    height: 100%;
    overflow: auto;
    background: var(--paper);
    padding: 24px
}

.mobile-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobile-drawer__nav {
    display: grid;
    margin: 28px 0
}

.mobile-nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--line)
}

.mobile-drawer__auth {
    display: grid;
    gap: 12px
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: #14241ecc;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px)
}

.modal {
    position: relative;
    width: 100%;
    max-height: 90svh;
    overflow: auto;
    background: var(--paper);
    border-radius: 4px;
    box-shadow: 0 20px 80px #0003
}

.modal--auth {
    max-width: 460px
}

.modal--product {
    max-width: 900px
}

.modal--panel {
    max-width: 680px
}

.modal__close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    background: var(--paper)
}

.modal__body {
    padding: 38px
}

.modal--product .modal__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.modal__logo {
    margin: 0 auto 25px
}

.modal__title {
    font-size: 32px;
    margin-bottom: 12px
}

.modal__subtitle,
.modal__switch {
    font-size: 12px;
    color: var(--muted)
}

.form-field {
    margin: 0 0 14px
}

.form-field label {
    display: block;
    font-size: 11px;
    margin-bottom: 5px
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: white;
    padding: 10px 12px
}

.form-error {
    font-size: 11px;
    color: #a83939
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 11px
}

.link-btn {
    padding: 0;
    background: none;
    border: 0;
    text-decoration: underline
}

.modal__switch {
    text-align: center;
    margin: 20px 0 0
}

.product-modal__main-image img {
    width: 100%;
    aspect-ratio: 4/5
}

.product-modal__category,
.product-modal__code {
    font-size: 11px;
    color: var(--muted)
}

.product-modal__name {
    font-size: 36px
}

.product-modal__desc {
    font-size: 12px
}

.product-modal__actions {
    display: grid;
    gap: 10px
}

.spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 12px
}

.spec-list dd {
    margin: 0
}

.empty-state {
    text-align: center;
    padding: 50px 15px
}

.toast-container {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 150;
    width: max-content;
    max-width: 90%
}

.toast {
    background: var(--ink);
    color: white;
    padding: 14px 22px;
    box-shadow: 0 4px 25px #0002;
    font-size: 12px
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

@media(min-width:1600px) {
    .hero {
        padding-left: calc((100% - 1300px)/2)
    }
}

@media(max-width:1150px) {
    .navbar__nav {
        gap: 14px
    }
    .navbar {
        gap: 18px
    }
    .navbar__actions {
        gap: 5px
    }
    .navbar__nav a:nth-last-child(2) {
        display: none
    }
    .hero__heading {
        font-size: 72px
    }
    .footer-grid {
        grid-template-columns: repeat(4, 1fr)
    }
    .footer-brand {
        grid-column: 1/-1
    }
}

@media(max-width:950px) {
    .navbar__nav {
        display: none
    }
    .navbar__actions {
        margin-left: auto
    }
    .hamburger-btn {
        display: block
    }
    .navbar {
        padding: 16px 5%
    }
    .category-grid {
        gap: 16px
    }
    .arrivals-track .product-card {
        flex-basis: calc((100% - 48px)/3)
    }
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .section {
        padding: 55px 5%
    }
    .about-section {
        gap: 6%
    }
    .about-heading {
        font-size: 42px
    }
    .hero {
        min-height: 510px
    }
}

@media(max-width:600px) {
    .announcement-bar {
        justify-content: center;
        font-size: 9px
    }
    .announcement-bar__contact {
        display: none
    }
    .wordmark {
        font-size: 24px
    }
    .navbar__actions {
        gap: 1px
    }
    .navbar__actions>.btn {
        padding: 6px 10px;
        font-size: 10px
    }
    .hero {
        height: 610px;
        min-height: 0;
        max-height: 78svh;
        padding: 36px 6%;
        align-items: flex-end
    }
    .hero__heading {
        font-size: 58px
    }
    .hero__media img {
        object-position: 64% center
    }
    .hero:after {
        background: linear-gradient(0deg, #f3f3ecef, #f3f3ecba 45%, #f3f3ec00 100%)
    }
    .hero__text {
        font-size: 12px;
        max-width: 290px
    }
    .hero__actions {
        gap: 8px;
        margin-top: 20px
    }
    .hero__actions .btn {
        padding: 10px 15px;
        font-size: 10px
    }
    .hero .eyebrow {
        margin-bottom: 14px
    }
    .section {
        padding: 44px 6%
    }
    .section__title {
        font-size: 32px
    }
    .section__head {
        margin-bottom: 25px
    }
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 18px
    }
    .category-item span {
        margin-top: 10px;
        font-size: 11px
    }
    .arrivals-track {
        gap: 16px
    }
    .arrivals-track .product-card {
        flex-basis: 76%
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 14px
    }
    .product-card h3 {
        font-size: 21px
    }
    .product-badge {
        top: 9px;
        left: 9px;
        font-size: 8px;
        padding: 3px 7px
    }
    .save-button {
        width: 30px;
        height: 30px;
        right: 7px;
        top: 7px
    }
    .catalogue-search {
        min-width: 160px
    }
    .catalogue-sort {
        width: 100%
    }
    .catalogue-sort select {
        width: 100%
    }
    .catalogue-filters {
        gap: 20px;
        order: 0
    }
    .catalogue-toolbar {
        gap: 13px
    }
    .signature-section {
        min-height: 400px
    }
    .signature-heading {
        font-size: 44px
    }
    .signature-content {
        max-width: 250px
    }
    .signature-text {
        font-size: 12px
    }
    .why-grid {
        gap: 20px 10px
    }
    .why-card {
        padding: 10px 5px
    }
    .why-card h3 {
        font-size: 22px
    }
    .about-section {
        grid-template-columns: 1fr;
        gap: 28px
    }
    .about-media img {
        height: 320px
    }
    .about-heading {
        font-size: 40px
    }
    .contact-cta__heading {
        font-size: 40px
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }
    .footer-col:last-child {
        grid-column: 1/-1
    }
    .site-footer {
        padding: 40px 6% 0
    }
    .modal-overlay {
        padding: 12px
    }
    .modal__body {
        padding: 36px 22px 24px
    }
    .modal--product .modal__body {
        grid-template-columns: 1fr;
        gap: 22px
    }
    .product-modal__main-image img {
        max-height: 300px;
        object-fit: contain
    }
    .modal__title {
        font-size: 29px
    }
    .slider-controls {
        gap: 6px
    }
    .slider-arrow {
        width: 34px;
        height: 34px
    }
    .back-to-top {
        bottom: 15px;
        right: 15px
    }
    .section__subtitle {
        font-size: 11px
    }
}

.category-item img,
.product-image img {
    height: auto
}

.contact-cta .btn--whatsapp {
    color: var(--ink)
}

#referNavBtn svg,
.referral-copy-row svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.storefront-referral {
    text-align: center;
    padding-top: 45px
}

.referral-gift {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    background: var(--soft);
    border-radius: 50%
}

.referral-gift svg {
    width: 25px;
    height: 25px
}

.storefront-referral .eyebrow {
    margin-bottom: 12px
}

.storefront-referral label {
    display: block;
    text-align: left;
    font-size: 11px;
    margin: 25px 0 8px
}

.referral-copy-row {
    display: flex;
    gap: 8px
}

.referral-copy-row input {
    min-width: 0;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--soft);
    font-size: 11px
}

.referral-copy-row .btn {
    flex-shrink: 0;
    padding: 10px 13px
}

.referral-note {
    text-align: left;
    font-size: 10px;
    color: var(--muted);
    margin: 12px 0
}

.referral-status {
    min-height: 20px;
    font-size: 12px;
    margin-bottom: 0
}

.modal--join {
    max-width: 510px
}

.referral-join {
    padding: 44px 38px 30px;
    text-align: center
}

.referral-join__icon {
    margin-bottom: 18px;
    color: var(--gold, #b58a2a);
    border: 1px solid rgba(181, 138, 42, .25)
}

.referral-join .eyebrow {
    margin-bottom: 10px
}

.referral-join .modal__subtitle {
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.7
}

.referral-join__options {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    text-align: left
}

.referral-join__option {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    background: var(--soft)
}

.referral-join__option > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--gold, #a87c1d);
    background: #fff;
    border: 1px solid rgba(181, 138, 42, .22);
    border-radius: 50%
}

.referral-join__option svg {
    width: 18px;
    height: 18px
}

.referral-join__option strong,
.referral-join__option small {
    display: block
}

.referral-join__option strong {
    margin-bottom: 3px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600
}

.referral-join__option small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5
}

.referral-join__contact {
    gap: 8px
}

.referral-join__contact svg {
    width: 16px;
    height: 16px
}

@media(max-width:1300px) {
    .navbar__nav {
        display: none
    }
    .navbar__actions {
        margin-left: auto
    }
    .hamburger-btn {
        display: block
    }
}

@media(max-width:600px) {
    /* Both auth buttons remain visible independently of the navigation drawer. */
    #registerNavBtn, #loginNavBtn {
        display: inline-flex
    }
    .navbar {
        gap: 8px
    }
    .navbar__actions .icon-btn,
    .navbar__actions .hamburger-btn {
        width: 32px
    }
    .navbar__actions #referNavBtn {
        padding: 6px 8px;
        gap: 5px
    }
    .referral-copy-row {
        flex-wrap: wrap
    }
    .referral-copy-row input,
    .referral-copy-row .btn {
        width: 100%
    }
    .referral-join {
        padding: 40px 20px 24px
    }
}

@media(max-width:600px) {
    .hero__media img {
        object-position: 42% center
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
    *,
    *:before,
    *:after {
        transition: none !important
    }
}
