

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --navy: #0D1B2A;
    --coral: #FF6B4A;
    --coral-light: #FF8C70;
    --cream: #FFF8F3;
    --slate: #3D5A73;
    --ash: #E8EDF2;
    --muted: #6B7F8E;
    --dark-card: #152233;
    --white: #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.07);
    --shadow-md: 0 6px 24px rgba(13, 27, 42, 0.12);
    --shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.18);
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--navy);
    line-height: 1.65;
    font-size: 16px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--navy);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* UTILITY */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
}

.btn-primary:hover {
    background: #e85c3c;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--coral);
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

.btn-ghost:hover {
    gap: 12px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.navbar__logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.navbar__logo-text span {
    color: var(--coral);
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.navbar__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.18s;
    white-space: nowrap;
}

.navbar__nav a:hover,
.navbar__nav a.active {
    color: var(--coral);
    background: rgba(255, 107, 74, 0.07);
}

.navbar__cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.navbar__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.25s;
}

/* Mobile nav drawer */
.navbar__mobile {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--ash);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.navbar__mobile.open {
    display: block;
}

.navbar__mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.navbar__mobile-nav a {
    display: block;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

.navbar__mobile-nav a:hover {
    background: var(--ash);
    color: var(--coral);
}

/* PAGE OFFSET */
.page-offset {
    padding-top: 68px;
}

/* HERO (INDEX) */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 74, 0.15);
    color: var(--coral-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 74, 0.25);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title em {
    font-style: italic;
    color: var(--coral);
}

.hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
}

.hero__img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


/* SECTION PADDINGS */
.section {
    padding: 64px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.section-header--center {
    display: block;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 40px;
}

.section-header--center .section-lead {
    margin: 0 auto;
}

.section-header .section-title {
    margin-bottom: 0;
}

.text-body {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
}

.text-body+.text-body {
    margin-top: 16px;
}

.text-body+.btn {
    margin-top: 24px;
}

.cta-band {
    background: var(--coral);
    padding: 56px 0;
    text-align: center;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-band__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.btn-sm {
    font-size: 13px;
    padding: 10px 20px;
}

.footer__logo-text {
    color: var(--white);
}

.breadcrumb--light,
.breadcrumb--light a {
    color: rgba(255, 255, 255, 0.65);
}

.page-hero--tall {
    padding: 72px 0 64px;
}

.contact-form__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-form__desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.contact-note__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-note__title i {
    color: var(--coral);
    margin-right: 8px;
}

.section--dark {
    background: var(--navy);
}

.section--ash {
    background: var(--ash);
}

.section--cream {
    background: var(--cream);
}

/* EDITORIAL GRID CARDS */
.editorial-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.editorial-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.editorial-card--featured {
    grid-row: 1 / 3;
}

.editorial-card__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.editorial-card--featured .editorial-card__img {
    height: 100%;
    min-height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.editorial-card--featured .editorial-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, transparent 100%);
    padding: 32px 28px 28px;
    color: var(--white);
}

.editorial-card--featured .editorial-card__body h3,
.editorial-card--featured .editorial-card__body p {
    color: var(--white);
}

.editorial-card--featured .editorial-card__tag {
    color: var(--coral-light);
}

.editorial-card__body {
    padding: 22px 24px;
}

.editorial-card__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.editorial-card__body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.editorial-card__body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* STANDARD CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
    transform: scale(1.04);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--coral);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.product-card__body {
    padding: 18px 20px 22px;
}

.product-card__cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.product-card__body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-card__body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    transition: gap 0.18s;
}

.product-card__link:hover {
    gap: 10px;
}

/* COLLECTION TILES */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-tile {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.collection-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-tile:hover .collection-tile__img {
    transform: scale(1.06);
}

.collection-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0.1) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 18px;
    transition: background 0.3s;
}

.collection-tile:hover .collection-tile__overlay {
    background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.2) 55%);
}

.collection-tile__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 5px;
}

.collection-tile__name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 8px;
}

.collection-tile__cta {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.collection-tile:hover .collection-tile__cta {
    color: var(--white);
}

.collection-tile--icon {
    aspect-ratio: auto;
    min-height: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3248 100%);
    display: block;
    text-decoration: none;
}

.collection-tile--icon .collection-tile__overlay {
    position: relative;
    inset: auto;
    background: none;
    justify-content: flex-start;
    min-height: 0;
    height: auto;
    padding: 20px 18px;
}

.collection-tile--icon:hover .collection-tile__overlay {
    background: none;
}

.collection-tile__icon {
    font-size: 36px;
    color: var(--coral-light);
    margin-bottom: 14px;
}

/* NEWSLETTER */
.newsletter {
    background: var(--navy);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 450px;
    height: 450px;
    background: var(--coral);
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
}

.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.newsletter__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter__input-row {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter__input-row .btn-primary {
    border-radius: 0;
    flex-shrink: 0;
}

.newsletter__note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* FOOTER */
.footer {
    background: var(--dark-card);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-text {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 18px;
}

.footer__email a {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral-light);
    transition: color 0.18s;
}

.footer__email a:hover {
    color: var(--white);
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.18s;
}

.footer__links a:hover {
    color: var(--coral);
}

.footer__bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* PAGE HERO (inner pages) */
.page-hero {
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero--navy {
    background: var(--navy);
}

.page-hero--slate {
    background: var(--slate);
}

.page-hero--coral {
    background: var(--coral);
}

.page-hero__title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero__lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    line-height: 1.7;
}

.page-hero__decoration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    pointer-events: none;
    overflow: hidden;
}


/* PICKS LIST */
.picks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pick-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pick-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.pick-item__img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}

.pick-item__body {
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pick-item__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 6px;
}

.pick-item__body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pick-item__body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* INSPIRATION MASONRY */
.masonry {
    columns: 3;
    column-gap: 22px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.masonry-item__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.masonry-item__body {
    padding: 18px 20px 22px;
}

.masonry-item__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 6px;
}

.masonry-item__body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.masonry-item__body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ABOUT PAGE */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--coral);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 20px;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-grid .section-lead {
    margin-bottom: 28px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--ash);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: var(--cream);
    outline: none;
    transition: border-color 0.18s;
}

.form-control:focus {
    border-color: var(--coral);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7F8E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-note {
    background: var(--ash);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin-top: 8px;
}

.contact-note p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-info__value a {
    color: var(--navy);
    transition: color 0.18s;
}

.contact-info__value a:hover {
    color: var(--coral);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s, gap 0.2s;
}

.contact-links a i {
    color: var(--coral);
    width: 18px;
    text-align: center;
}

.contact-links a:hover {
    color: var(--coral);
    gap: 14px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gift-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gift-icon-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: background 0.22s, border-color 0.22s;
}

.gift-icon-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 74, 0.35);
}

.gift-icon-card i {
    font-size: 28px;
    color: var(--coral-light);
    display: block;
    margin-bottom: 10px;
}

.gift-icon-card span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}

/* FEATURED FINDS PAGE */
.finds-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-find-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
}

.hero-find-card__content {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-find-card__img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

/* SHOPPING COLLECTIONS PAGE */
.collections-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.collection-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.collection-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-card__body {
    padding: 22px 24px 26px;
}

.collection-card__theme {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.collection-card__body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.collection-card__body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.collection-card__items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.collection-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--ash);
    color: var(--slate);
    border-radius: 100px;
}

/* TOPIC & FIND CARDS (icon-based) */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.topic-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s, box-shadow 0.22s;
    display: block;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.topic-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 18px;
    margin-bottom: 16px;
}

.topic-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.topic-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.topic-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.finds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.find-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.find-card__icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 17px;
    flex-shrink: 0;
}

.find-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 4px;
}

.find-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.pick-item--icon {
    grid-template-columns: 72px 1fr;
}

.pick-item__icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 24px;
    margin: 20px 0 20px 20px;
    align-self: center;
}

.collection-card--icon .collection-card__icon-wrap {
    height: 140px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3248 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--coral-light);
}

.mega-collection-card--icon {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3248 100%);
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mega-collection-card--icon .mega-collection-card__icon {
    font-size: 32px;
    color: var(--coral-light);
    margin-bottom: 14px;
}

.idea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.idea-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s, box-shadow 0.22s;
}

.idea-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.idea-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 16px;
    margin-bottom: 14px;
}

.hero-find-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.hero-find-card__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-find-card__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

.tag-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
}

.tag-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.section--compact {
    padding: 48px 0 56px;
}

/* EDITOR PICKS PAGE */
.ep-hero {
    background: linear-gradient(135deg, var(--navy) 60%, #1a3248 100%);
    padding: 72px 0 60px;
}

.ep-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 74, 0.18);
    border: 1px solid rgba(255, 107, 74, 0.3);
    color: var(--coral-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.ep-section-alt {
    background: var(--navy);
    padding: 64px 0;
}

.section-title--light {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.top-pick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.top-pick-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.top-pick-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.top-pick-card__body {
    padding: 22px 24px 26px;
}

.top-pick-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.top-pick-card__body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.top-pick-card__body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* COLLECTIONS PAGE */
.collections-hero {
    background: var(--coral);
    padding: 72px 0 60px;
}

.mega-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mega-collection-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.mega-collection-card__overlay {
    padding: 28px 26px;
    color: var(--white);
}

.mega-collection-card__theme {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 8px;
}

.mega-collection-card__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.mega-collection-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* INSPIRATION PAGE */
.inspo-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.inspo-card-large__img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}

.inspo-card-large__body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inspo-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 14px;
}

.inspo-card-large__body h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.25;
}

.inspo-card-large__body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.inspo-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.inspo-sub-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
}

.inspo-sub-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 18px;
    margin-bottom: 14px;
}

.inspo-sub-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.inspo-sub-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.inspo-sub-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.quick-inspo-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quick-inspo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

.quick-inspo-item__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 107, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 17px;
    flex-shrink: 0;
}

.quick-inspo-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.quick-inspo-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.inspo-card-large--icon {
    grid-template-columns: 1fr;
}

.inspo-card-large__icon {
    height: 96px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3248 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--coral-light);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lifestyle-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
    transition: transform 0.22s, box-shadow 0.22s;
}

.lifestyle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.lifestyle-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 16px;
}

.lifestyle-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
}

.lifestyle-card__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.lifestyle-card__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

.lifestyle-card__cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    transition: color 0.18s, gap 0.18s;
}

.lifestyle-card:hover .lifestyle-card__cta {
    color: var(--coral);
    gap: 8px;
}

.inspo-browse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.inspo-browse-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s, box-shadow 0.22s;
}

.inspo-browse-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.inspo-browse-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 18px;
    margin-bottom: 14px;
}

.inspo-browse-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.inspo-browse-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.inspo-browse-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

.editorial-grid--icons {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
}

.editorial-card--icon .editorial-card__icon-wrap {
    height: 120px;
    background: linear-gradient(135deg, var(--ash) 0%, rgba(255, 107, 74, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--coral);
}

.top-pick-card--icon .top-pick-card__icon-wrap {
    height: 96px;
    background: rgba(255, 107, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--coral);
}

.about-process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
}

.about-process-step__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 16px;
    flex-shrink: 0;
}

.about-process-step h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-process-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.cta-strip {
    background: var(--ash);
    padding: 48px 0;
}

.cta-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-strip__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--navy);
}


/* DIVIDER */
.divider {
    height: 1px;
    background: var(--ash);
    margin: 0;
}

/* ACCENT SLASH */
.accent-slash {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--coral);
    border-radius: 2px;
    margin-bottom: 14px;
    transform: skewX(-12deg);
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.18s;
}

.breadcrumb a:hover {
    color: var(--coral-light);
}

.breadcrumb__sep {
    font-size: 10px;
    opacity: 0.5;
}

/* ABOUT SPLIT */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-split__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
}

.team-card__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
}

/* DARK CARD SECTION */
.dark-picks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dark-pick-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: background 0.22s;
}

.dark-pick-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.dark-pick-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dark-pick-card__body {
    padding: 20px 22px 24px;
}

.dark-pick-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.dark-pick-card__body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.dark-pick-card__body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 16px;
}

.dark-pick-card__icon-wrap {
    width: 100%;
    height: 140px;
    background: rgba(255, 107, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--coral);
}

.product-card__icon-wrap {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--ash) 0%, rgba(255, 107, 74, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--coral);
}

.product-card--icon .product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .navbar__nav,
    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-card--featured {
        grid-row: auto;
    }

    .editorial-card--featured .editorial-card__img {
        position: static;
        height: 300px;
        min-height: unset;
    }

    .editorial-card--featured .editorial-card__body {
        position: static;
        background: var(--white);
        padding: 22px 24px;
    }

    .editorial-card--featured .editorial-card__body h3,
    .editorial-card--featured .editorial-card__body p {
        color: var(--navy);
    }

    .editorial-card--featured .editorial-card__tag {
        color: var(--coral);
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topic-grid,
    .finds-grid,
    .idea-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-collection,
    .top-pick-grid {
        grid-template-columns: 1fr;
    }

    .inspo-card-large {
        grid-template-columns: 1fr;
    }

    .inspo-sub-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr 1fr;
    }

    .dark-picks {
        grid-template-columns: 1fr 1fr;
    }

    .collections-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .lifestyle-grid,
    .inspo-browse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid--icons {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-find-card {
        grid-template-columns: 1fr;
    }

    .hero-find-card__img {
        min-height: 280px;
    }

    .picks-list .pick-item {
        grid-template-columns: 120px 1fr;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 48px 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-grid--4 {
        grid-template-columns: 1fr 1fr;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .topic-grid,
    .finds-grid,
    .idea-grid,
    .inspo-sub-grid,
    .quick-inspo-list,
    .inspo-browse-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lifestyle-card {
        padding: 16px 14px;
    }

    .lifestyle-card__name {
        font-size: 14px;
    }

    .lifestyle-card__desc {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .dark-picks {
        grid-template-columns: 1fr;
    }

    .collections-showcase {
        grid-template-columns: 1fr;
    }

    .pick-item {
        grid-template-columns: 1fr;
    }

    .pick-item--icon {
        grid-template-columns: 1fr;
    }

    .pick-item__icon {
        width: 56px;
        height: 56px;
        margin: 20px 20px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-find-card__content {
        padding: 32px 28px;
    }

    .hero-find-card__img {
        min-height: 220px;
    }

    .about-split__img {
        height: 280px;
    }

    .newsletter {
        padding: 48px 0;
    }
}

/* FORM SUCCESS */
.form-success {
    display: none;
    background: rgba(255, 107, 74, 0.08);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--coral);
    font-weight: 500;
    margin-top: 12px;
}






.btn-primary {
    background: var(--coral);
    color: var(--white);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    text-decoration: none;
    width: fit-content;
}