/* ============================================
   THRIFTY CHIC — Styles
   Color System: Plum + Amber
   ============================================ */

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

:root {
    --plum-50:  #faf4f7;
    --plum-100: #f5e6ee;
    --plum-200: #ebcddb;
    --plum-300: #dbaec8;
    --plum-400: #c482ad;
    --plum-500: #a85f8f;
    --plum-600: #8b4572;
    --plum-700: #6b3a5b;
    --plum-800: #4a2540;
    --plum-900: #311829;
    --plum-950: #1a0d17;

    --amber-50:  #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;

    --cream:   #fdf8f5;
    --sand:    #f5ebe0;
    --warm-gray: #6b6560;
    --soft-white: #fefcfb;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(107, 58, 91, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 58, 91, 0.10);
    --shadow-lg: 0 20px 60px rgba(107, 58, 91, 0.14);
    --shadow-xl: 0 30px 80px rgba(107, 58, 91, 0.18);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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(--plum-900);
    background-color: 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;
}

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-700);
    color: var(--plum-50);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 16px;
}

/* ========== BLOBS ========== */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.blob--1 {
    width: 600px;
    height: 600px;
    background: var(--plum-200);
    top: -200px;
    right: -200px;
    animation: blobFloat 20s ease-in-out infinite;
}
.blob--2 {
    width: 500px;
    height: 500px;
    background: var(--amber-200);
    bottom: 10%;
    left: -150px;
    animation: blobFloat 25s ease-in-out infinite reverse;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    z-index: 1001;
}
.logo__mark {
    font-size: 20px;
    color: var(--plum-500);
    line-height: 1;
}
.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo__primary {
    font-size: 22px;
    font-weight: 400;
    color: var(--plum-800);
    letter-spacing: -0.02em;
}
.logo__secondary {
    font-size: 22px;
    font-weight: 400;
    color: var(--plum-600);
    letter-spacing: -0.02em;
    font-style: italic;
}
.logo--light .logo__primary { color: var(--plum-100); }
.logo--light .logo__secondary { color: var(--plum-300); }

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav__link {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--plum-800);
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.nav__link:hover {
    background: var(--plum-100);
    color: var(--plum-700);
}
.nav__link--cta {
    background: var(--plum-700);
    color: var(--plum-50);
}
.nav__link--cta:hover {
    background: var(--plum-600);
    color: var(--plum-50);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-800);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn__arrow {
    transition: transform 0.3s ease;
}
.btn:hover .btn__arrow {
    transform: translate(4px, 0);
}
.btn--primary {
    background: var(--plum-700);
    color: var(--plum-50);
    box-shadow: 0 4px 20px rgba(107, 58, 91, 0.3);
}
.btn--primary:hover {
    background: var(--plum-600);
    box-shadow: 0 8px 30px rgba(107, 58, 91, 0.4);
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-200);
}
.btn--ghost:hover {
    border-color: var(--plum-400);
    background: var(--plum-50);
    transform: translateY(-2px);
}
.btn--ghost-light {
    background: rgba(255,255,255,0.12);
    color: var(--plum-50);
    border: 2px solid rgba(255,255,255,0.25);
}
.btn--ghost-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 24px; font-size: 14px; }
.btn__icon { flex-shrink: 0; }

/* ========== SECTION HEADERS ========== */
.section-header {
    margin-bottom: 60px;
}
.section-header--centered {
    text-align: center;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: 20px;
}
.section-eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-400), var(--amber-400));
    border-radius: 2px;
    flex-shrink: 0;
}
.section-eyebrow--light { color: var(--plum-200); }
.section-eyebrow-line--light {
    background: linear-gradient(90deg, var(--plum-300), var(--amber-300));
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--plum-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-title em {
    font-style: italic;
    color: var(--plum-600);
}
.section-title--light {
    color: var(--plum-50);
}
.section-title--light em {
    color: var(--amber-300);
}
.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 560px;
}
.section-header--centered .section-subtitle {
    margin: 0 auto;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--plum-950) 0%, var(--plum-900) 50%, #2a1525 100%);
    padding: 120px 0 160px;
    overflow: hidden;
    color: var(--plum-50);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(219, 174, 200, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: 28px;
}
.hero__eyebrow-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--amber-400);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--plum-50);
}
.hero__title-line {
    display: block;
}
.hero__title-line--accent {
    font-style: italic;
    color: var(--amber-300);
}
.hero__description {
    font-size: 18px;
    line-height: 1.75;
    color: var(--plum-200);
    max-width: 480px;
    margin-bottom: 40px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--amber-300);
    line-height: 1;
}
.hero__stat-label {
    font-size: 13px;
    color: var(--plum-300);
    letter-spacing: 0.04em;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--plum-700);
}

/* Hero Image Stack */
.hero__image-stack {
    position: relative;
    height: 680px;
}
.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero__image--1 {
    width: 340px;
    height: 440px;
    top: 0;
    right: 40px;
    z-index: 1;
}
.hero__image--2 {
    width: 260px;
    height: 200px;
    bottom: 60px;
    right: 0;
    z-index: 2;
    border: 4px solid var(--plum-800);
}
.hero__badge {
    position: absolute;
    bottom: 300px;
    left: -20px;
    z-index: 3;
    background: var(--amber-400);
    color: var(--plum-950);
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
    animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}
.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ========== CATEGORIES ========== */
.categories {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}
.categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.category-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background: var(--soft-white);
    box-shadow: var(--shadow-sm);
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.category-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-card__image img {
    transform: scale(1.08);
}
.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 13, 23, 0.5) 0%, transparent 60%);
}
.category-card__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    z-index: 1;
    transition: var(--transition);
}
.category-card:hover .category-card__icon {
    background: var(--amber-400);
    color: var(--plum-950);
}
.category-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.category-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--plum-900);
    margin-bottom: 8px;
}
.category-card__desc {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.65;
    flex: 1;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--plum-950);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(219, 174, 200, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__visual {
    position: relative;
}
.about__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about__floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--amber-400);
    color: var(--plum-950);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about__floating-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 13, 23, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about__floating-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
}
.about__floating-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.about__content {
    position: relative;
    z-index: 1;
    color: var(--plum-50);
}
.about__content .section-eyebrow { color: var(--amber-300); }
.about__content .section-title { color: var(--plum-50); }
.about__content .section-title em { color: var(--amber-300); }
.about__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--plum-200);
    margin-bottom: 20px;
}
.about__features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}
.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--plum-100);
    line-height: 1.5;
}
.about__feature-check {
    width: 22px;
    height: 22px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber-400);
    margin-top: 2px;
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--soft-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--plum-100);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-200);
}
.feature-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    transition: var(--transition);
}
.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    color: var(--plum-50);
    transform: scale(1.05);
}
.feature-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--plum-900);
    margin-bottom: 12px;
}
.feature-card__desc {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ========== VISIT ========== */
.visit {
    padding: 100px 0;
    background: var(--plum-900);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 10% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.visit__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.visit__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--plum-200);
    margin-bottom: 40px;
}
.visit__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.visit__info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.visit__info-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber-300);
}
.visit__info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-400);
    margin-bottom: 4px;
}
.visit__info-value {
    display: block;
    font-size: 17px;
    color: var(--plum-50);
    font-weight: 500;
}
.visit__info-link {
    color: var(--amber-300);
    transition: var(--transition);
}
.visit__info-link:hover {
    color: var(--amber-400);
    text-decoration: underline;
}
.visit__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.visit__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
    z-index: 1;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 40px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact__detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: 6px;
}
.contact__detail-value {
    font-size: 16px;
    color: var(--plum-800);
    line-height: 1.7;
}
.contact__detail-value strong {
    color: var(--plum-700);
}

/* Form */
.contact__form-wrapper {
    background: var(--soft-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--plum-100);
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--plum-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--plum-900);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-input::placeholder {
    color: var(--plum-300);
}
.form-input:focus {
    border-color: var(--plum-500);
    background: var(--soft-white);
    box-shadow: 0 0 0 4px rgba(168, 95, 143, 0.1);
}
.form-select {
    cursor: pointer;
    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 d='M1 1l5 5 5-5' stroke='%236B3A5B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--amber-600);
}

/* Success State */
.contact__success {
    text-align: center;
    padding: 40px 20px;
}
.contact__success-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: var(--plum-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__success-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--plum-800);
    margin-bottom: 12px;
}
.contact__success-text {
    font-size: 16px;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--plum-950);
    color: var(--plum-200);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer__tagline {
    font-size: 15px;
    line-height: 1.7;
    color: var(--plum-400);
    margin-top: 16px;
    max-width: 280px;
}
.footer__heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--plum-100);
    margin-bottom: 20px;
}
.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__links a {
    font-size: 15px;
    color: var(--plum-400);
    transition: var(--transition);
}
.footer__links a:hover {
    color: var(--amber-300);
    padding-left: 4px;
}
.footer__address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: var(--plum-300);
    margin-bottom: 16px;
}
.footer__phone,
.footer__email {
    display: block;
    font-size: 15px;
    color: var(--plum-400);
    transition: var(--transition);
    margin-bottom: 8px;
}
.footer__phone:hover,
.footer__email:hover {
    color: var(--amber-300);
}
.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-800), transparent);
    margin: 0 0;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}
.footer__copyright {
    font-size: 14px;
    color: var(--plum-500);
}
.footer__tagline-small {
    font-size: 14px;
    color: var(--plum-600);
    font-style: italic;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    .hero__image-stack {
        height: 520px;
    }
    .hero__image--1 {
        width: 280px;
        height: 360px;
    }
    .hero__image--2 {
        width: 200px;
        height: 160px;
    }
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__grid,
    .visit__inner,
    .contact__grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--cream);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
    }
    .nav__list.is-open {
        transform: translateX(0);
    }
    .nav__link {
        padding: 14px 18px;
        border-radius: var(--radius-sm);
        font-size: 17px;
    }
    .nav__link--cta {
        margin-top: 12px;
        text-align: center;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 13, 23, 0.5);
        z-index: 999;
    }
    .nav-overlay.is-visible {
        display: block;
    }

    .hero {
        padding: 120px 0 120px;
        min-height: auto;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero__visual {
        order: -1;
    }
    .hero__image-stack {
        height: 360px;
        display: flex;
        justify-content: center;
    }
    .hero__image--1 {
        width: 220px;
        height: 280px;
        right: 10px;
    }
    .hero__image--2 {
        width: 160px;
        height: 120px;
        bottom: 20px;
        right: 0;
    }
    .hero__badge {
        left: 0;
        bottom: 180px;
        font-size: 12px;
        padding: 10px 18px;
    }
    .hero__title {
        font-size: clamp(36px, 10vw, 52px);
    }
    .hero__stats {
        gap: 24px;
    }

    .categories__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-card__image {
        height: 200px;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }
    .about__floating-card {
        bottom: -20px;
        right: 10px;
        padding: 16px 24px;
    }
    .about__features {
        grid-template-columns: 1fr;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 32px 28px;
    }

    .visit__inner {
        grid-template-columns: 1fr;
    }
    .visit__visual {
        order: -1;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact__form-wrapper {
        padding: 32px 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        justify-content: center;
    }
    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .hero__stat-divider {
        display: none;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .reveal.is-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; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
