/* ============================================
   Nobu Nails Spa — Stylesheet
   Classic & Elegant · Emerald + Cream
   ============================================ */

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

:root {
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;
    --color-emerald-700: #047857;
    --color-emerald-600: #059669;
    --color-cream-50: #faf9f6;
    --color-cream-100: #f5f3ed;
    --color-cream-200: #ebe8df;
    --color-cream-300: #e0dbd0;
    --color-text-dark: #1a1a1a;
    --color-text-body: #3d3d3d;
    --color-text-muted: #6b6b6b;
    --color-text-light: #f5f3ed;
    --color-gold: #b8860b;
    --color-gold-light: #d4a843;
    --color-white: #ffffff;
    --color-black: #0a0a0a;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --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.12);

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-body);
    background-color: var(--color-cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    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;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-emerald-900);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

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

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

.section-header__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-emerald-900);
    margin-bottom: var(--space-sm);
}

.section-header__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-emerald-900);
    color: var(--color-white);
    border: 1.5px solid var(--color-emerald-900);
}

.btn--primary:hover {
    background: var(--color-emerald-800);
    border-color: var(--color-emerald-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.875rem;
}

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

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-cream-200);
    transition: all var(--transition-med);
}

.header.scrolled {
    background: rgba(250, 249, 246, 0.97);
    box-shadow: var(--shadow-sm);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo__mark {
    width: 36px;
    height: 36px;
    background: var(--color-emerald-900);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo__mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--color-gold);
    border-radius: 50%;
}

.logo__mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

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

.logo__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-emerald-900);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.logo__tagline {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

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

.logo--light .logo__tagline {
    color: rgba(255,255,255,0.6);
}

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

.logo--light .logo__mark::before {
    border-color: var(--color-emerald-900);
}

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

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

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-body);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-emerald-900);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-emerald-900);
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-emerald-900);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav__cta:hover {
    background: var(--color-emerald-900);
    color: var(--color-white);
}

/* ---------- Mobile Nav Toggle ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle__line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-emerald-900);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.82) 0%,
        rgba(6, 78, 59, 0.65) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 800px;
}

.hero__frame {
    animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.hero__title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold-light);
}

.hero__subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero__scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ---------- Services ---------- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-50);
}

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid var(--color-cream-200);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-emerald-900), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-med);
}

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

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

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-cream-100);
    color: var(--color-emerald-900);
    margin-bottom: var(--space-md);
    transition: all var(--transition-fast);
}

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

.service-card__title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

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

/* ---------- About ---------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-100);
}

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

.about__images {
    position: relative;
    height: 600px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream-100);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    z-index: -1;
}

.about__content {
    padding: var(--space-md);
}

.about__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.about__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-sm);
}

.about__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin-bottom: var(--space-lg);
}

.about__text {
    font-size: 0.9375rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-cream-300);
}

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

.about__stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-emerald-900);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.about__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-cream-300);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-50);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-white);
}

.gallery__item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery__item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery__item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery__item:nth-child(4) { grid-column: 6 / 10; grid-row: 2 / 3; }
.gallery__item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }

/* ---------- Testimonials ---------- */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--color-emerald-900);
    color: var(--color-white);
}

.testimonials .section-header__eyebrow {
    color: var(--color-gold-light);
}

.testimonials .section-header__title {
    color: var(--color-white);
}

.testimonials .section-header__divider {
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.testimonials__slider {
    margin-top: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform var(--transition-med);
}

.testimonial-card {
    min-width: 100%;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}

.testimonial-card__quote {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.testimonial-card__text {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto var(--space-md);
}

.testimonial-card__author {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.testimonials__btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.testimonials__dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all var(--transition-fast);
    padding: 0;
}

.testimonials__dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9), rgba(6, 78, 59, 0.8));
}

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

.cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-xs);
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-100);
}

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

.contact__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.contact__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-sm);
}

.contact__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin-bottom: var(--space-lg);
}

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

.contact__detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact__detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-emerald-900);
    color: var(--color-white);
    flex-shrink: 0;
}

.contact__detail > div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact__detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact__detail-value {
    font-size: 0.9375rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--color-emerald-900);
    transition: color var(--transition-fast);
}

.contact__detail-value a:hover {
    color: var(--color-gold);
}

/* ---------- Contact Form ---------- */
.contact__form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-cream-200);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

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

.form-group__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.375rem;
}

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

.form-group__input:focus {
    border-color: var(--color-emerald-900);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.form-group__input::placeholder {
    color: var(--color-text-muted);
}

.form-group__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/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group__textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-emerald-900);
    background: rgba(6, 78, 59, 0.05);
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
}

/* ---------- Map ---------- */
.map-section {
    padding: 0;
}

.map-section__inner {
    border-radius: 0;
    overflow: hidden;
    filter: saturate(0.8) contrast(1.05);
}

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

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer__list a:hover {
    color: var(--color-white);
}

.footer__address {
    font-size: 0.875rem;
    line-height: 1.8;
    font-style: normal;
}

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

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

.footer__hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.footer__hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    gap: var(--space-sm);
}

.footer__hours-list--closed span:last-child {
    color: var(--color-gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about__images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream-50);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-med);
        z-index: 100;
    }

    .nav.open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .nav__cta {
        display: none;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }

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

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

    .gallery__item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .gallery__item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
    .gallery__item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
    .gallery__item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
    .gallery__item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }

    .gallery__item img {
        aspect-ratio: 4/3;
    }

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

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

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

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

    .header__container {
        height: 70px;
    }

    .about__images {
        height: 350px;
    }

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