/* ============================================
   Estudio 64 Beauty Salon — Stylesheet
   Classic & Elegant · Emerald Green + Cream
   ============================================ */

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

:root {
    --emerald-900: #0a3d2e;
    --emerald-800: #0f5138;
    --emerald-700: #14674a;
    --emerald-600: #1a7f5a;
    --emerald-500: #239b6e;
    --emerald-400: #3db888;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #efe8da;
    --cream-300: #e8dfc8;
    --cream-400: #d4c9a8;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --text-on-dark: #f5f0e8;
    --gold-accent: #c9a84c;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--emerald-900);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 560px;
    line-height: 1.8;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--emerald-700);
    color: var(--cream-50);
    border: 2px solid var(--emerald-700);
}

.btn-primary:hover {
    background-color: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 61, 46, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(250, 248, 244, 0.5);
}

.btn-outline:hover {
    background-color: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}

.btn-light {
    background-color: var(--cream-50);
    color: var(--emerald-900);
    border: 2px solid var(--cream-50);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--cream-50);
    border-color: var(--cream-50);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(250, 248, 244, 0.5);
}

.btn-outline-light:hover {
    background-color: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background-color: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(10, 61, 46, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream-50);
    transition: color var(--transition);
    line-height: 1;
}

.nav.scrolled .nav-logo-mark {
    color: var(--emerald-900);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream-50);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.nav.scrolled .nav-logo-text {
    color: var(--emerald-900);
}

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

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.85);
    position: relative;
    padding: 4px 0;
}

.nav.scrolled .nav-link {
    color: var(--text-medium);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--cream-50);
    transition: width var(--transition);
}

.nav.scrolled .nav-link::after {
    background-color: var(--emerald-700);
}

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

.nav-link:hover {
    color: var(--cream-50);
}

.nav.scrolled .nav-link:hover {
    color: var(--emerald-900);
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-50) !important;
    background-color: var(--emerald-700);
    padding: 10px 24px;
    border-radius: 4px;
    transition: all var(--transition);
}

.nav-cta:hover {
    background-color: var(--emerald-800);
    transform: translateY(-1px);
}

.nav.scrolled .nav-cta {
    color: var(--cream-50) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--cream-50);
    transition: all var(--transition);
    transform-origin: center;
}

.nav.scrolled .nav-toggle-line {
    background-color: var(--emerald-900);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--emerald-900);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--cream-50);
    font-weight: 400;
    transition: color var(--transition);
}

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

.mobile-menu-cta {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-50);
    background-color: var(--emerald-600);
    padding: 14px 32px;
    border-radius: 4px;
    margin-top: 16px;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background-color: var(--emerald-900);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 80%, rgba(35, 155, 110, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-greeting {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--emerald-400);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: 28px;
}

.hero-headline-line {
    display: block;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--emerald-400);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(250, 248, 244, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 440px;
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(250, 248, 244, 0.6);
    letter-spacing: 0.03em;
}

.hero-detail svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.hero-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-image-main {
    width: 85%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -10%;
    width: 55%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--emerald-900);
}

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

.hero-badge {
    position: absolute;
    top: -16px;
    right: 10%;
    background-color: var(--cream-50);
    color: var(--emerald-900);
    padding: 12px 20px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.4);
    z-index: 1;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background-color: var(--cream-50);
    position: relative;
}

.services-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--emerald-600), transparent);
    opacity: 0.3;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--emerald-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 61, 46, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 61, 46, 0.08);
    color: var(--emerald-700);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--emerald-700);
    color: var(--cream-50);
}

.service-name {
    font-size: 1.35rem;
    color: var(--emerald-900);
    margin-bottom: 12px;
    font-weight: 500;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background-color: var(--cream-100);
}

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

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

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(10, 61, 46, 0.12);
}

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

.about-stat {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--emerald-900);
    color: var(--cream-50);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(10, 61, 46, 0.3);
}

.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-stat-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 4px;
}

.about-content-col {
    padding-left: 20px;
}

.about-title {
    margin-bottom: 28px;
}

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

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--cream-300);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-value svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background-color: var(--cream-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 61, 46, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--cream-50);
    font-style: italic;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
    grid-column: span 4;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 120px 0;
    background-color: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 10% 50%, rgba(35, 155, 110, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials .section-label {
    color: var(--emerald-400);
}

.testimonials .section-title {
    color: var(--cream-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: rgba(250, 248, 244, 0.06);
    border: 1px solid rgba(250, 248, 244, 0.1);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(250, 248, 244, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--emerald-400);
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream-200);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-style: normal;
    color: rgba(250, 248, 244, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------- CTA ---------- */
.cta {
    padding: 120px 0;
    background-color: var(--emerald-700);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(10, 61, 46, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-label {
    color: var(--emerald-400);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cream-50);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-accent {
    font-style: italic;
    color: var(--emerald-400);
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(250, 248, 244, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background-color: var(--cream-50);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--emerald-600);
    box-shadow: 0 8px 24px rgba(10, 61, 46, 0.08);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 61, 46, 0.08);
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-card-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-card-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-card-text a {
    color: var(--emerald-700);
    font-weight: 500;
}

.contact-card-text a:hover {
    color: var(--emerald-900);
    text-decoration: underline;
}

.contact-hours-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 48px;
    border: 1px solid var(--cream-200);
    box-shadow: 0 8px 32px rgba(10, 61, 46, 0.06);
}

.contact-form-title {
    font-size: 1.6rem;
    color: var(--emerald-900);
    margin-bottom: 32px;
    font-weight: 500;
}

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

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

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

.form-input:focus {
    border-color: var(--emerald-600);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(35, 155, 110, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 61, 46, 0.1);
    color: var(--emerald-700);
}

.form-success-title {
    font-size: 1.5rem;
    color: var(--emerald-900);
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--charcoal);
    color: var(--cream-50);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream-50);
    line-height: 1;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream-50);
    letter-spacing: 0.04em;
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(250, 248, 244, 0.6);
    line-height: 1.8;
    max-width: 280px;
}

.footer-links-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-400);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.6);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--emerald-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-text {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.6);
    line-height: 1.7;
}

.footer-contact-link {
    font-size: 0.9rem;
    color: var(--emerald-400);
}

.footer-contact-link:hover {
    color: var(--emerald-300);
    text-decoration: underline;
}

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

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(250, 248, 244, 0.4);
}

.footer-location {
    font-size: 0.82rem;
    color: rgba(250, 248, 244, 0.4);
}

/* ---------- Scroll Animations (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        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; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-details {
        align-items: center;
    }

    .hero-image-col {
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content-col {
        padding-left: 0;
    }

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

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

    .footer-top > :first-child {
        grid-column: span 2;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container {
        padding-top: 80px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-image-main {
        width: 100%;
    }

    .hero-image-accent {
        width: 60%;
        left: -5%;
    }

    .hero-badge {
        right: 0;
    }

    .hero-scroll {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .about {
        padding: 80px 0;
    }

    .about-stat {
        right: 10px;
        bottom: -16px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large,
    .gallery-item--wide,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .gallery-grid .gallery-item {
        height: 280px;
    }

    .testimonials {
        padding: 80px 0;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-top > :first-child {
        grid-column: span 1;
    }

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

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

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

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

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

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