/* ============================================
   BARRY'S SERVICE INC. — Brand Styles
   Palette: Burgundy (#7B2D3B) + Blush (#FFD6E0)
   ============================================ */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #FFD6E0;
    --blush-light: #FFE8EE;
    --blush-dark: #FFB8CC;
    --cream: #FFFAF5;
    --white: #FFFFFF;
    --dark: #1A0A0E;
    --dark-soft: #3D1F27;
    --gray: #6B5058;
    --gray-light: #A8898F;
    --gray-lighter: #E8D8DA;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.10);
    --shadow-lg: 0 16px 60px rgba(123, 45, 59, 0.14);
    --shadow-card: 0 4px 20px rgba(123, 45, 59, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   DECORATIVE GEOMETRIC SHAPES
   ============================================ */

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.bg-blob--blush {
    width: 600px;
    height: 600px;
    background: var(--blush);
    top: -150px;
    right: -150px;
}

.bg-blob--burgundy {
    width: 500px;
    height: 500px;
    background: var(--burgundy);
    opacity: 0.08;
    bottom: 10%;
    left: -100px;
}

.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.geo-shape--circle {
    width: 300px;
    height: 300px;
    border: 4px solid var(--burgundy);
    border-radius: 50%;
    top: 30%;
    right: -60px;
}

.geo-shape--triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--blush-dark);
    top: 55%;
    left: -30px;
    opacity: 0.08;
}

.geo-shape--square {
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    top: 70%;
    right: 5%;
    transform: rotate(30deg);
    opacity: 0.05;
}

.geo-shape--ring {
    width: 200px;
    height: 200px;
    border: 6px solid var(--blush-dark);
    border-radius: 50%;
    bottom: 20%;
    left: 8%;
    opacity: 0.07;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 250, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo__mark {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    color: var(--blush);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover .logo__mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
}

.logo__tagline {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-soft);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--burgundy);
    background: var(--blush-light);
}

.nav__cta {
    margin-left: 8px;
    background: var(--burgundy);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav__cta:hover {
    background: var(--burgundy-deep);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 14, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__bg-geo {
    position: absolute;
    pointer-events: none;
}

.hero__bg-geo--ring {
    width: 500px;
    height: 500px;
    border: 3px solid var(--blush);
    border-radius: 50%;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    opacity: 0.4;
}

.hero__bg-geo--stripe {
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--blush-dark) 0px, var(--blush-dark) 20px, transparent 20px, transparent 40px);
    bottom: 20%;
    left: -50%;
    opacity: 0.3;
    transform: rotate(-5deg);
}

.hero__bg-geo--dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    top: 30%;
    left: 45%;
    opacity: 0.2;
    box-shadow:
        30px 20px 0 var(--burgundy),
        60px -10px 0 var(--burgundy),
        80px 30px 0 var(--burgundy),
        -40px 40px 0 var(--burgundy),
        100px 10px 0 var(--burgundy);
}

.hero__content {
    flex: 1;
    max-width: 580px;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    background: var(--blush-light);
    padding: 8px 18px;
    border-radius: 50px;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero__headline--accent {
    color: var(--burgundy);
    position: relative;
}

.hero__headline--accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--blush);
    z-index: -1;
    border-radius: 4px;
}

.hero__sub {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 45, 59, 0.3);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 59, 0.35);
}

.btn--ghost {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-lighter);
}

.btn--ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-soft);
}

.hero__trust-item svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
    flex: 1;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__visual-card--1 {
    width: 320px;
    height: 400px;
    top: 10%;
    right: 5%;
    z-index: 2;
}

.hero__visual-card--2 {
    width: 260px;
    height: 190px;
    bottom: 12%;
    left: 5%;
    z-index: 3;
    border: 5px solid var(--white);
}

.hero__visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__visual-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--burgundy);
    opacity: 0.15;
    z-index: 1;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-label__dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-label--light {
    color: var(--blush);
}

.section-label__dot--light {
    background: var(--blush);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.text-accent {
    color: var(--burgundy);
}

.text-accent-light {
    color: var(--blush);
}

.section-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray);
    max-width: 560px;
}

.section-desc--light {
    color: var(--blush);
    opacity: 0.85;
}

.section-header--center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header--center .section-desc {
    margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__media-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__media-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    z-index: -1;
}

.accent-block {
    position: absolute;
    border-radius: var(--radius-md);
}

.accent-block--burgundy {
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    top: 0;
    right: 0;
    opacity: 0.15;
}

.accent-block--blush {
    width: 80px;
    height: 80px;
    background: var(--blush);
    bottom: 20px;
    left: 10px;
    opacity: 0.6;
}

.accent-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid var(--burgundy);
    border-radius: 50%;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.about__lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--dark-soft);
    margin-bottom: 16px;
    font-weight: 500;
}

.about__content p {
    color: var(--gray);
    margin-bottom: 16px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.highlight-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    background: var(--blush-light);
    color: var(--burgundy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-card strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.highlight-card span {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   PRODUCTS
   ============================================ */

.products {
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.products__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 214, 224, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 214, 224, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card__badge--blush {
    background: var(--blush-dark);
    color: var(--burgundy-deep);
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-card__body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

/* ============================================
   WHY US
   ============================================ */

.why-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us__visual-grid {
    position: relative;
}

.why-us__visual-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-us__visual-img--1 {
    width: 85%;
    margin-bottom: 24px;
}

.why-us__visual-img--2 {
    width: 70%;
    margin-left: auto;
}

.why-us__visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us__visual-accent {
    position: absolute;
    bottom: 40%;
    right: -10px;
    width: 100px;
    height: 100px;
}

.geo-dots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 60px;
}

.geo-dots::before,
.geo-dots::after {
    content: '';
}

.geo-dots span {
    width: 6px;
    height: 6px;
    background: var(--blush-dark);
    border-radius: 50%;
    opacity: 0.6;
}

.geo-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--burgundy) 0px, var(--burgundy) 8px, transparent 8px, transparent 16px);
    border-radius: 2px;
    opacity: 0.3;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.why-list__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-list__num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--blush);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    opacity: 0.6;
}

.why-list__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.why-list__body p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   COMMUNITY
   ============================================ */

.community {
    padding: 80px 0;
}

.community__card {
    background: var(--burgundy);
    border-radius: var(--radius-xl);
    padding: 72px;
    position: relative;
    overflow: hidden;
}

.community__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(255, 214, 224, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 214, 224, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.community__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.community__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--blush);
    opacity: 0.9;
    margin-bottom: 16px;
}

.community__text--light {
    opacity: 0.7;
}

.community__stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--blush);
    line-height: 1;
}

.stat--accent .stat__number {
    color: var(--white);
}

.stat__label {
    font-size: 14px;
    color: var(--blush);
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */

.visit {
    padding: 100px 0;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit__detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
    transition: var(--transition);
}

.visit__detail:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.visit__detail-icon {
    width: 52px;
    height: 52px;
    background: var(--blush-light);
    color: var(--burgundy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit__detail strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.visit__detail p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.visit__detail a {
    color: var(--burgundy);
    font-weight: 500;
    transition: var(--transition);
}

.visit__detail a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.visit__form-wrap {
    position: relative;
}

.visit__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.visit__form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush-dark), var(--burgundy));
}

.visit__form-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.visit__form-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--cream);
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-light);
}

.form-input:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success.visible {
    display: flex;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    background: var(--blush-light);
    color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success strong {
    font-size: 20px;
    color: var(--dark);
}

.form-success span {
    font-size: 15px;
    color: var(--gray);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--blush);
    padding: 72px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 214, 224, 0.1);
}

.footer__brand p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-light);
    margin-top: 16px;
    max-width: 320px;
}

.footer__links {
    display: flex;
    gap: 48px;
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-group strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blush);
    margin-bottom: 4px;
}

.footer__link-group a {
    font-size: 14px;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer__link-group a:hover {
    color: var(--blush);
    padding-left: 4px;
}

.logo--light .logo__mark {
    background: var(--blush);
    color: var(--burgundy);
}

.logo--light .logo__name {
    color: var(--white);
}

.logo--light .logo__tagline {
    color: var(--gray-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: var(--gray-light);
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 60px;
        gap: 48px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        min-height: 360px;
        width: 100%;
    }

    .hero__visual-card--1 {
        width: 240px;
        height: 300px;
    }

    .hero__visual-card--2 {
        width: 200px;
        height: 150px;
    }

    .about__grid,
    .why-us__layout,
    .visit__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us__visual-img--1 {
        width: 100%;
    }

    .why-us__visual-img--2 {
        width: 80%;
    }

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

    .community__card {
        padding: 48px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav__cta {
        margin-left: 0;
        text-align: center;
        margin-top: 12px;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-overlay {
        display: block;
    }

    .section {
        padding: 72px 0;
    }

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

    .community__card {
        padding: 32px;
    }

    .community__stats {
        gap: 32px;
    }

    .stat__number {
        font-size: 36px;
    }

    .visit__form-card {
        padding: 28px;
    }

    .footer__links {
        flex-direction: column;
        gap: 32px;
    }

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

    .hero__visual-card--1 {
        width: 200px;
        height: 250px;
    }

    .hero__visual-card--2 {
        width: 160px;
        height: 120px;
    }

    .geo-shape {
        display: none;
    }

    .bg-blob {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        padding: 100px 0 48px;
    }

    .hero__headline {
        font-size: 36px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__visual {
        min-height: 280px;
    }

    .hero__visual-card--1 {
        width: 160px;
        height: 200px;
    }

    .hero__visual-card--2 {
        width: 140px;
        height: 100px;
    }

    .about__media-accent {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -15px;
    }

    .accent-block--burgundy {
        width: 80px;
        height: 80px;
    }

    .accent-block--blush {
        width: 55px;
        height: 55px;
    }

    .accent-circle {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .why-list__num {
        font-size: 32px;
        width: 40px;
    }
}
