/* ==========================================================================
   AV. MISRA DALDA - WARM & EMPATHETIC
   Human-Centered Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Sage, Terracotta, Beige */
    --color-sage: #7d9a78;
    --color-sage-light: #a8c4a2;
    --color-sage-dark: #5c7a58;
    --color-terracotta: #c17a5e;
    --color-terracotta-light: #d99a82;
    --color-terracotta-dark: #a35d44;
    --color-beige: #f5f1eb;
    --color-beige-dark: #e8e2d8;
    --color-cream: #fdfbf7;
    --color-brown: #4a3f35;
    --color-brown-light: #6b5d4f;
    --color-text: #3d3428;
    --color-text-muted: #6b5d4f;
    --color-border: rgba(74, 63, 53, 0.12);

    /* Typography */
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.9rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --text-xl: clamp(1.3rem, 1.2rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.6rem, 1.4rem + 1vw, 2rem);
    --text-3xl: clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
    --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: clamp(1.25rem, 4vw, 3rem);
    --border-radius: 24px;
    --border-radius-sm: 12px;
    --border-radius-lg: 40px;

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

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

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

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Organic Background Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-shape-1 {
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-sage-light) 0%, transparent 70%);
}

.bg-shape-2 {
    bottom: -30%;
    left: -20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--color-terracotta-light) 0%, transparent 70%);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-brown);
}

h1 em,
h2 em,
h3 em {
    font-style: italic;
    color: var(--color-terracotta);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 550px;
}

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

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-brown);
}

.logo-tagline {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-cream);
    background: var(--color-sage);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--color-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 154, 120, 0.3);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-brown);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--color-cream);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: var(--space-lg);
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    color: var(--color-brown);
    transition: color var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
}

.btn-primary {
    color: var(--color-cream);
    background: var(--color-terracotta);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 122, 94, 0.3);
}

.btn-text {
    color: var(--color-text);
    background: transparent;
    padding: 1rem 0;
}

.btn-text:hover {
    color: var(--color-terracotta);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
}

.btn-full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-2xl);
    align-items: center;
    min-height: 100vh;
    padding: 140px var(--container-padding) var(--space-2xl);
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-sage-dark);
    background: var(--color-beige);
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(74, 63, 53, 0.15);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(74, 63, 53, 0.1);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-terracotta);
}

.badge-text {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Values Bar
   -------------------------------------------------------------------------- */
.values-bar {
    position: relative;
    z-index: 1;
    padding: var(--space-xl) 0;
    background: var(--color-beige);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.values-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-icon {
    font-size: var(--text-xl);
}

.value-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-brown);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-image {
    position: relative;
}

.image-frame {
    background: var(--color-beige);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 20px 40px rgba(74, 63, 53, 0.08);
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    border-radius: var(--border-radius);
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-cream);
}

.about-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    max-width: 280px;
    padding: var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(74, 63, 53, 0.1);
}

.about-quote p {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    font-style: italic;
    color: var(--color-brown);
    line-height: 1.6;
}

.about-content {
    padding-top: var(--space-lg);
}

.about-lead {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    color: var(--color-brown);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.about-highlights {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-terracotta);
}

.highlight-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
    background: var(--color-beige);
}

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

.service-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-cream);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 63, 53, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    border-color: transparent;
}

.service-card.featured * {
    color: var(--color-cream);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-beige);
    border-radius: var(--border-radius-sm);
    color: var(--color-sage);
    margin-bottom: var(--space-md);
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 0.25rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-cream);
    background: var(--color-terracotta);
    border-radius: 4px;
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Success Stories Timeline
   -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-sage-light), var(--color-terracotta-light));
}

.story-card {
    position: relative;
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-left: 80px;
}

.story-year {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-cream);
    border: 3px solid var(--color-sage);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-sage-dark);
    z-index: 1;
}

.story-content {
    flex: 1;
    padding: var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(74, 63, 53, 0.05);
    transition: all var(--transition-base);
}

.story-content:hover {
    box-shadow: 0 10px 30px rgba(74, 63, 53, 0.1);
    border-color: var(--color-sage-light);
}

.story-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-terracotta);
    background: rgba(193, 122, 94, 0.1);
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.story-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.story-content p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.story-author {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-brown);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    padding: var(--space-2xl) 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--text-3xl);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-box .btn-primary {
    background: var(--color-cream);
    color: var(--color-terracotta);
}

.cta-box .btn-primary:hover {
    background: var(--color-beige);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-decoration {
    position: absolute;
    right: -50px;
    bottom: -50px;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.decoration-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    right: 0;
    bottom: 0;
}

.decoration-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    right: -50px;
    bottom: -50px;
}

.decoration-circle:nth-child(3) {
    width: 400px;
    height: 400px;
    right: -100px;
    bottom: -100px;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-lead {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

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

.info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-beige);
    border-radius: var(--border-radius-sm);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-cream);
    border-radius: 50%;
    color: var(--color-sage);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-brown);
    margin-bottom: 2px;
}

.info-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.info-item a:hover {
    color: var(--color-terracotta);
}

/* Contact Form */
.contact-form {
    padding: var(--space-xl);
    background: var(--color-beige);
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: var(--space-xs);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(125, 154, 120, 0.15);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b5d4f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0;
    background: var(--color-brown);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-brand .logo-name {
    color: var(--color-cream);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-legal p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

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

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .values-grid {
        justify-content: center;
    }

    .services-flow {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 27px;
    }

    .story-card {
        padding-left: 60px;
    }

    .story-year {
        width: 48px;
        height: 48px;
        font-size: var(--text-xs);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .about-highlights {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .cta-box {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image,
.section-header,
.service-card,
.story-card,
.info-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Selection */
::selection {
    background-color: rgba(125, 154, 120, 0.2);
    color: var(--color-brown);
}