/* ============================================
   BeeDazzler — Landing Website CSS
   Brand Style Guide: Branding/Brand_Style_Guide.md
   Mirrors: Shopify_Custom_CSS.css
   ============================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (Brand Tokens) ── */
:root {
    /* Primary */
    --bd-gold: #C8A84E;
    --bd-gold-bright: #FFD700;
    --bd-charcoal: #2A2A2A;
    --bd-cream: #FAF5EF;
    --bd-white: #FFFFFF;

    /* Secondary */
    --bd-silver: #C0C0C0;
    --bd-warm-grey: #E8E4DE;
    --bd-warm-grey-light: #D4CFC7;
    --bd-black-rich: #1A1A1A;

    /* Functional */
    --bd-success: #4CAF50;
    --bd-warning: #FFA726;
    --bd-error: #E53935;
    --bd-info: #42A5F5;

    /* Gradients */
    --bd-gradient-gold: linear-gradient(135deg, #C8A84E 0%, #FFD700 100%);
    --bd-gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    --bd-gradient-cream: linear-gradient(180deg, #FFFFFF 0%, #FAF5EF 100%);

    /* Shadows */
    --bd-shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.06);
    --bd-shadow-md: 0 4px 16px rgba(42, 42, 42, 0.08);
    --bd-shadow-gold: 0 4px 16px rgba(200, 168, 78, 0.15);
    --bd-shadow-lg: 0 8px 32px rgba(42, 42, 42, 0.12);

    /* Typography */
    --bd-font: 'Outfit', Arial, Helvetica, sans-serif;

    /* Spacing */
    --bd-radius: 8px;
    --bd-radius-lg: 12px;
    --bd-radius-xl: 20px;
    --bd-transition: 200ms ease-in-out;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--bd-font);
    background-color: var(--bd-cream);
    color: var(--bd-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--bd-gold);
    text-decoration: none;
    transition: color var(--bd-transition);
}

a:hover {
    color: var(--bd-gold-bright);
}

ul, ol {
    list-style: none;
}

/* ── Typography ── */
h1, .h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--bd-charcoal);
}

h2, .h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--bd-charcoal);
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--bd-charcoal);
}

h4, .h4 {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--bd-charcoal);
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(42, 42, 42, 0.85);
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.text-xs {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text-gold { color: var(--bd-gold); }
.text-cream { color: var(--bd-cream); }
.text-center { text-align: center; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1400px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--bd-radius);
    font-family: var(--bd-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--bd-transition);
    border: none;
    outline: none;
}

.btn--primary {
    background-color: var(--bd-gold);
    color: var(--bd-white);
}

.btn--primary:hover {
    background-color: var(--bd-gold-bright);
    color: var(--bd-white);
    transform: translateY(-1px);
    box-shadow: var(--bd-shadow-gold);
}

.btn--secondary {
    background-color: transparent;
    color: var(--bd-charcoal);
    border: 2px solid var(--bd-charcoal);
}

.btn--secondary:hover {
    border-color: var(--bd-gold);
    color: var(--bd-gold);
}

.btn--ghost {
    background-color: transparent;
    color: var(--bd-gold);
    padding: 8px 0;
}

.btn--ghost:hover {
    text-decoration: underline;
}

.btn--light {
    background-color: transparent;
    color: var(--bd-cream);
    border: 2px solid var(--bd-cream);
}

.btn--light:hover {
    background-color: var(--bd-gold);
    border-color: var(--bd-gold);
    color: var(--bd-white);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--bd-gradient-gold);
    color: var(--bd-white);
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.announcement-bar a {
    color: var(--bd-white);
    text-decoration: underline;
}

/* ── Header / Navigation ── */
.header {
    background-color: var(--bd-charcoal);
    border-bottom: 2px solid var(--bd-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo img {
    height: 48px;
    width: auto;
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bd-cream);
    letter-spacing: -0.01em;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav a {
    color: var(--bd-cream);
    font-weight: 400;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bd-gold);
    transition: width var(--bd-transition);
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--bd-gold);
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

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

/* Mobile menu toggle */
.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bd-cream);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bd-gradient-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(42, 42, 42, 0.45) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    padding: 60px 0;
}

.hero__tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bd-gold);
    margin-bottom: 16px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bd-cream);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--bd-cream);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Section Styles ── */
.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--bd-gradient-dark);
    color: var(--bd-cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--bd-cream);
}

.section--dark p {
    color: rgba(250, 245, 239, 0.85);
}

.section--accent {
    background-color: var(--bd-white);
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section__header h2 {
    margin-bottom: 16px;
}

.section__header p {
    font-size: 1.125rem;
}

.section__header .section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bd-gold);
    margin-bottom: 12px;
}

/* ── Cards ── */
.card {
    background-color: var(--bd-white);
    border: 1px solid var(--bd-warm-grey);
    border-radius: var(--bd-radius-lg);
    box-shadow: var(--bd-shadow-sm);
    transition: all var(--bd-transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--bd-shadow-gold);
    transform: translateY(-4px);
    border-color: var(--bd-gold);
}

.card__image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__body {
    padding: 24px;
}

.card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card__text {
    font-size: 0.9375rem;
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.6;
}

/* Icon cards */
.icon-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bd-white);
    border: 1px solid var(--bd-warm-grey);
    border-radius: var(--bd-radius-lg);
    box-shadow: var(--bd-shadow-sm);
    transition: all var(--bd-transition);
}

.icon-card:hover {
    box-shadow: var(--bd-shadow-gold);
    transform: translateY(-4px);
    border-color: var(--bd-gold);
}

/* Icon circles removed — hidden in case of cached HTML */
.icon-card__icon {
    display: none !important;
}

/* Social SVG icons */
.footer__social a svg,
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: fill var(--bd-transition);
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.icon-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.icon-card__text {
    font-size: 0.875rem;
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.5;
}

/* ── Grid ── */
.grid {
    display: grid;
    gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Split Layout ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

.split__image {
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    box-shadow: var(--bd-shadow-md);
}

.split__image img {
    width: 100%;
    height: auto;
    display: block;
}

.split__content h2 {
    margin-bottom: 16px;
}

.split__content p {
    margin-bottom: 24px;
}

/* ── Featured Section (Jenna) ── */
.featured {
    position: relative;
    overflow: hidden;
}

.featured__image {
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    box-shadow: var(--bd-shadow-lg);
    position: relative;
}

.featured__image img {
    width: 100%;
    height: auto;
}

.featured__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.6), transparent);
}

/* ── Newsletter ── */
.newsletter {
    text-align: center;
}

.newsletter h2 {
    color: var(--bd-cream);
    margin-bottom: 12px;
}

.newsletter p {
    color: rgba(250, 245, 239, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--bd-radius);
    overflow: hidden;
    box-shadow: var(--bd-shadow-md);
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-family: var(--bd-font);
    font-size: 16px;
    background-color: var(--bd-white);
    color: var(--bd-charcoal);
    outline: none;
}

.newsletter__input::placeholder {
    color: rgba(42, 42, 42, 0.4);
}

.newsletter__btn {
    padding: 14px 28px;
    background: var(--bd-gradient-gold);
    color: var(--bd-white);
    border: none;
    font-family: var(--bd-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--bd-transition);
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--bd-gold-bright);
    filter: brightness(1.1);
}

/* ── FAQ Accordion ── */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    border: 1px solid var(--bd-warm-grey);
    border-radius: var(--bd-radius);
    margin-bottom: 12px;
    background-color: var(--bd-white);
    overflow: hidden;
    transition: all var(--bd-transition);
}

.accordion__item:hover {
    border-color: var(--bd-gold);
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: var(--bd-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--bd-charcoal);
    text-align: left;
}

.accordion__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--bd-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.accordion__item.active .accordion__icon {
    transform: rotate(45deg);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__content {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(42, 42, 42, 0.7);
}

/* ── Contact Form ── */
.form {
    max-width: 600px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--bd-charcoal);
    margin-bottom: 6px;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bd-warm-grey-light);
    border-radius: var(--bd-radius);
    font-family: var(--bd-font);
    font-size: 16px;
    background-color: var(--bd-white);
    color: var(--bd-charcoal);
    transition: border-color var(--bd-transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--bd-gold);
    box-shadow: 0 0 0 2px rgba(200, 168, 78, 0.2);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(42, 42, 42, 0.4);
}

/* ── Blog Card ── */
.blog-card {
    background-color: var(--bd-white);
    border: 1px solid var(--bd-warm-grey);
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    box-shadow: var(--bd-shadow-sm);
    transition: all var(--bd-transition);
}

.blog-card:hover {
    box-shadow: var(--bd-shadow-gold);
    transform: translateY(-4px);
    border-color: var(--bd-gold);
}

.blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 24px;
}

.blog-card__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--bd-gold);
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bd-charcoal);
    margin-bottom: 8px;
    line-height: 1.35;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__meta {
    font-size: 12px;
    color: var(--bd-silver);
    font-weight: 300;
}

/* ── Footer ── */
.footer {
    background-color: var(--bd-charcoal);
    color: var(--bd-cream);
    border-top: 2px solid var(--bd-gold);
    padding: 60px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand p {
    color: rgba(250, 245, 239, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer__heading {
    color: var(--bd-gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: var(--bd-cream);
    font-size: 14px;
    font-weight: 300;
    transition: color var(--bd-transition);
}

.footer__links a:hover {
    color: var(--bd-gold);
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(250, 245, 239, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-cream);
    font-size: 16px;
    transition: all var(--bd-transition);
}

.footer__social a:hover {
    background-color: var(--bd-gold);
    border-color: var(--bd-gold);
    color: var(--bd-white);
}

.footer__bottom {
    border-top: 1px solid rgba(250, 245, 239, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(250, 245, 239, 0.5);
}

.footer__bottom a {
    color: rgba(250, 245, 239, 0.5);
}

.footer__bottom a:hover {
    color: var(--bd-gold);
}

/* ── Page Header ── */
.page-header {
    background: var(--bd-gradient-dark);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--bd-cream);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(250, 245, 239, 0.8);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
}

.page-header .breadcrumb a {
    color: var(--bd-gold);
}

.page-header .breadcrumb span {
    color: rgba(250, 245, 239, 0.5);
}

/* ── Gallery ── */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--bd-radius-lg);
    overflow: hidden;
    box-shadow: var(--bd-shadow-sm);
    transition: all var(--bd-transition);
    cursor: pointer;
}

.gallery__item:hover {
    box-shadow: var(--bd-shadow-gold);
    transform: scale(1.02);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* ── Badges ── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--bd-radius-xl);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.badge--gold {
    background-color: var(--bd-gold);
    color: var(--bd-white);
}

.badge--dark {
    background-color: var(--bd-charcoal);
    color: var(--bd-cream);
}

/* ── Divider ── */
.divider {
    width: 60px;
    height: 3px;
    background: var(--bd-gradient-gold);
    border: none;
    margin: 24px auto;
    border-radius: 2px;
}

/* ── AI Disclosure Badge ── */
.ai-disclosure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: var(--bd-radius-xl);
    font-size: 12px;
    font-weight: 400;
    color: var(--bd-gold);
    margin-top: 12px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bd-cream); }
::-webkit-scrollbar-thumb { background: var(--bd-silver); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bd-gold); }

/* ── Selection Highlight ── */
::selection {
    background-color: var(--bd-gold);
    color: var(--bd-white);
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Steps / How It Works ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 24px;
}

.step__number {
    width: 48px;
    height: 48px;
    background: var(--bd-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bd-white);
}

.step__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step__text {
    font-size: 0.875rem;
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.5;
}

/* ── Values List ── */
.values-list {
    display: grid;
    gap: 20px;
}

.values-list__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.values-list__icon {
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
}

.values-list__content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.values-list__content p {
    font-size: 0.875rem;
    color: rgba(42, 42, 42, 0.7);
}

/* ── Responsive ── */
@media screen and (max-width: 992px) {
    h1, .h1 { font-size: 2.25rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.5rem; }

    .hero__title { font-size: 2.5rem; }

    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }

    .split { grid-template-columns: 1fr; gap: 32px; }
    .split--reverse { direction: ltr; }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section { padding: 56px 0; }

    .hero { min-height: 70vh; }
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 1rem; }

    .header__nav { display: none; }
    .header__mobile-toggle { display: block; }

    .header__nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bd-charcoal);
        padding: 24px;
        gap: 16px;
        border-bottom: 2px solid var(--bd-gold);
        box-shadow: var(--bd-shadow-lg);
    }

    .header__cta .btn {
        display: none;
    }

    .grid--2 { grid-template-columns: 1fr; }
    .grid--3 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: 1fr; }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .newsletter__btn {
        width: 100%;
    }

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

    .page-header {
        padding: 60px 0 40px;
    }
}
