/* ============================================
   Dollar Variety Store — Custom Styles
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-terracotta: #C4704B;
    --color-terracotta-dark: #A85A3A;
    --color-terracotta-light: #D4896A;
    --color-sand: #E8D5C0;
    --color-sand-light: #F2E8DC;
    --color-sand-pale: #F9F3EC;
    --color-cream: #FDF8F3;
    --color-charcoal: #2C2C2C;
    --color-dark: #1A1A1A;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-text-muted: #9A9A9A;
    --color-white: #FFFFFF;
    --color-border: #E8DDD3;
    --color-accent-blue: #3D5A80;
    --color-accent-blue-light: #5C7FA8;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(44, 44, 44, 0.06), 0 1px 2px rgba(44, 44, 44, 0.04);
    --shadow-md: 0 4px 12px rgba(44, 44, 44, 0.08), 0 2px 4px rgba(44, 44, 44, 0.04);
    --shadow-lg: 0 12px 40px rgba(44, 44, 44, 0.12), 0 4px 12px rgba(44, 44, 44, 0.06);
    --shadow-xl: 0 24px 60px rgba(44, 44, 44, 0.15);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section Labels & Headings */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.section-sub {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 560px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(196, 112, 75, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 112, 75, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-terracotta);
    border: 1.5px solid var(--color-terracotta);
}

.btn-secondary:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-terracotta);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
}

.nav-logo-text {
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-terracotta);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-terracotta) !important;
    color: var(--color-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: all var(--transition-base) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--color-terracotta-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-cream);
    z-index: 999;
    padding: var(--space-xl) var(--space-lg);
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
}

.mobile-menu-cta {
    margin-top: var(--space-lg);
    text-align: center;
    padding: 1rem;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background-color: var(--color-sand-pale);
    position: relative;
    overflow: hidden;
}

.hero-accent-bar {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta) 0%, var(--color-terracotta-light) 50%, var(--color-sand) 100%);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    min-height: calc(100vh - 72px);
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(196, 112, 75, 0.1);
    border: 1px solid rgba(196, 112, 75, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.hero-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-terracotta);
    margin-top: var(--space-md);
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-main {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 240px;
    height: 180px;
    bottom: 140px;
    right: 180px;
    z-index: 3;
    border: 4px solid var(--color-white);
}

.hero-img-small {
    width: 180px;
    height: 130px;
    bottom: 40px;
    right: 20px;
    z-index: 3;
    border: 4px solid var(--color-white);
}

.hero-floating-card {
    position: absolute;
    bottom: 200px;
    left: -20px;
    z-index: 4;
    background-color: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.floating-card-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

/* ============================================
   About
   ============================================ */
.about {
    padding: var(--space-4xl) 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--color-sand);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: rgba(196, 112, 75, 0.1);
    color: var(--color-terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Departments
   ============================================ */
.departments {
    padding: var(--space-4xl) 0;
    background-color: var(--color-sand-pale);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-sub {
    margin: 0 auto;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.dept-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.dept-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.dept-card-img {
    height: 200px;
    overflow: hidden;
}

.dept-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.dept-card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.dept-card-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(196, 112, 75, 0.1);
    color: var(--color-terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dept-card h3 {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-dark);
}

.dept-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ============================================
   Why Us
   ============================================ */
.why-us {
    padding: var(--space-4xl) 0;
    background-color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.why-us-content {
    max-width: 520px;
}

.why-us-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.why-us-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.why-us-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-sand);
    line-height: 1;
    min-width: 48px;
    padding-top: 0.25rem;
}

.why-us-item-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.375rem;
}

.why-us-item-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.why-us-quote-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 300px;
}

.why-us-quote-icon {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.why-us-quote {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.why-us-quote-attribution {
    font-size: 0.8125rem;
    opacity: 0.8;
    font-style: italic;
}

/* ============================================
   Testimonial Strip
   ============================================ */
.testimonial-strip {
    padding: var(--space-3xl) 0;
    background-color: var(--color-accent-blue);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.testimonial-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-icon {
    color: var(--color-sand);
    margin-bottom: var(--space-sm);
}

.testimonial-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ============================================
   Location
   ============================================ */
.location {
    padding: var(--space-4xl) 0;
    background-color: var(--color-sand-pale);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.location-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: rgba(196, 112, 75, 0.1);
    color: var(--color-terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-detail strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.location-detail p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.location-detail a {
    color: var(--color-terracotta);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.location-detail a:hover {
    color: var(--color-terracotta-dark);
}

.location-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cta-content {
    flex: 1;
    max-width: 560px;
}

.cta-heading {
    color: var(--color-white);
}

.cta-content .section-label {
    color: var(--color-sand);
}

.cta-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-nav strong,
.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-terracotta-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact svg {
    min-width: 16px;
    margin-top: 3px;
    color: var(--color-terracotta-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-terracotta-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        min-height: auto;
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-headline::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid,
    .why-us-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-content {
        max-width: 100%;
    }

    .why-us-content {
        max-width: 100%;
    }

    .why-us-quote-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: var(--space-md);
    }

    .why-us-image img {
        height: 360px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-img-main {
        width: 220px;
        height: 280px;
    }

    .hero-img-accent {
        width: 160px;
        height: 120px;
        bottom: 100px;
        right: 120px;
    }

    .hero-img-small {
        width: 130px;
        height: 95px;
        bottom: 20px;
        right: 10px;
    }

    .hero-floating-card {
        left: 10px;
        bottom: 120px;
    }

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

    .section-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .location-actions {
        flex-direction: column;
    }

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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