/* ============================================
   R & D Pharmacy — Classic & Elegant Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;
    --color-emerald-700: #047857;
    --color-emerald-600: #059669;
    --color-emerald-500: #10b981;
    --color-cream-50: #faf9f7;
    --color-cream-100: #f5f0e8;
    --color-cream-200: #ede6d8;
    --color-cream-300: #e4dbca;
    --color-cream-400: #d4c9b4;
    --color-cream-500: #c4b89a;
    --color-text-dark: #1a1a1a;
    --color-text-body: #2d2d2d;
    --color-text-muted: #6b6b6b;
    --color-text-light: #f5f0e8;
    --color-white: #ffffff;
    --color-gold: #b8860b;
    --color-gold-light: #d4a843;
    
    --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --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;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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, ol {
    list-style: none;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

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

/* --- Typography --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald-700);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-emerald-600);
}

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

.section-label--light::before {
    background: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-emerald-800);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
}

.btn--primary:hover {
    background: var(--color-emerald-700);
    box-shadow: 0 6px 24px rgba(6, 95, 70, 0.4);
    transform: translateY(-2px);
}

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

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

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

.btn--light:hover {
    background: var(--color-cream-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--phone {
    background: var(--color-cream-100);
    color: var(--color-emerald-800);
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.btn--phone:hover {
    background: var(--color-emerald-800);
    color: var(--color-white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-emerald-800);
    flex-shrink: 0;
}

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

.logo-mark {
    color: var(--color-emerald-800);
    flex-shrink: 0;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.logo--light .logo-tagline {
    color: var(--color-cream-300);
}

/* --- Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    padding: 8px 18px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-emerald-700);
    background: rgba(6, 95, 70, 0.06);
}

/* --- Header Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    margin-left: 8px;
}

.mobile-menu-btn:hover {
    background: var(--color-cream-100);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 0;
    background: var(--color-cream-50);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(6, 95, 70, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.hero-badge svg {
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--color-emerald-700);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

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

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(6, 78, 59, 0.15) 100%
    );
    pointer-events: none;
}

/* --- Floating Cards --- */
.floating-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-800);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    margin-bottom: 10px;
}

.floating-card-number {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.floating-card-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.floating-card--1 {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 200px;
    left: -30px;
    animation-delay: -2s;
}

.floating-card--3 {
    bottom: 60px;
    right: -20px;
    animation-delay: -4s;
}

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

/* --- Hero Wave --- */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--color-cream-100);
}

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

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

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 95, 70, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-100);
    border-radius: var(--radius-md);
    color: var(--color-emerald-700);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-emerald-800);
    color: var(--color-white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--color-cream-50);
    overflow: hidden;
}

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

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

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

.about-image-main img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--color-cream-50);
}

.about-image-accent img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.about-experience-badge .experience-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 4px;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-values {
    margin-top: 36px;
    display: grid;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.value-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-600);
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.9375rem;
    color: var(--color-text-body);
    font-weight: 400;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--color-emerald-900);
    overflow: hidden;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content {
    padding: 20px 0;
}

.why-us-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-cream-300);
    margin-bottom: 48px;
    max-width: 480px;
}

.difference-list {
    display: grid;
    gap: 40px;
}

.difference-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
}

.difference-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0.7;
}

.difference-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.difference-desc {
    font-size: 0.9375rem;
    color: var(--color-cream-300);
    line-height: 1.75;
}

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

.visual-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card--main {
    width: 100%;
}

.visual-card--main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.visual-card--accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 240px;
    border: 6px solid var(--color-emerald-900);
    box-shadow: var(--shadow-lg);
}

.visual-card--accent img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--color-cream-100);
}

.cta-card {
    position: relative;
    background: var(--color-emerald-800);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    overflow: hidden;
    text-align: center;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-text {
    font-size: 1.0625rem;
    color: var(--color-cream-300);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--color-emerald-900);
}

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

.contact-text {
    font-size: 1.0625rem;
    color: var(--color-cream-300);
    line-height: 1.85;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-gold-light);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-cream-400);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
    color: var(--color-gold-light);
}

.contact-hours {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}

.contact-hours-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 16px;
}

.contact-hours-title svg {
    color: var(--color-gold-light);
}

.hours-list {
    display: grid;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 0.9375rem;
    color: var(--color-cream-300);
}

.hours-time {
    font-size: 0.9375rem;
    color: var(--color-white);
    font-weight: 500;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    padding: 20px 0;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-xl);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    background: var(--color-cream-50);
    border: 1.5px solid var(--color-cream-300);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-cream-500);
}

.form-input:focus {
    border-color: var(--color-emerald-600);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.08);
}

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

/* --- Form Success --- */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-800);
    border-radius: 50%;
    color: var(--color-white);
    margin: 0 auto 20px;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #041f17;
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--color-cream-400);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links-title,
.footer-contact-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-nav-list {
    display: grid;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.9375rem;
    color: var(--color-cream-400);
    transition: color var(--transition-fast);
}

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

.footer-address {
    font-size: 0.9375rem;
    color: var(--color-cream-400);
    line-height: 1.8;
    font-style: normal;
}

.footer-address a {
    color: var(--color-cream-400);
    transition: color var(--transition-fast);
}

.footer-address a:hover {
    color: var(--color-gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-copyright,
.footer-legal {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
}

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-800);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-emerald-700);
    transform: translateY(-4px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s 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; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }
    
    .floating-card--1 {
        left: 0;
    }
    
    .floating-card--2 {
        left: 0;
    }
    
    .floating-card--3 {
        right: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .why-us-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-accent {
        right: 0;
        width: 200px;
    }
    
    .visual-card--accent {
        left: 0;
        width: 200px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-cream-50);
        padding: 32px 24px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .nav-link {
        padding: 16px 20px;
        font-size: 1.0625rem;
        border-radius: var(--radius-sm);
    }
    
    .nav-link:hover {
        background: var(--color-cream-100);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions .btn--phone {
        display: none;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image-card img {
        height: 400px;
    }
    
    .services {
        padding: 72px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .about {
        padding: 72px 0;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .about-experience-badge {
        top: 16px;
        right: 16px;
        padding: 16px 20px;
    }
    
    .why-us {
        padding: 72px 0;
    }
    
    .visual-card--main img {
        height: 400px;
    }
    
    .visual-card--accent {
        display: none;
    }
    
    .cta-section {
        padding: 72px 0;
    }
    
    .cta-card {
        padding: 48px 28px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        justify-content: center;
    }
    
    .contact {
        padding: 72px 0;
    }
    
    .contact-form-card {
        padding: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .difference-number {
        font-size: 1.5rem;
    }
}
