/* ============================================
   ASIAN BODY WORK - MASSAGE
   Bold Editorial Style
   Forest Green + Off-White
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0d1f12;
    --green-800: #1a3c2a;
    --green-700: #234d36;
    --green-600: #2d6a4f;
    --green-500: #40916c;
    --green-400: #52b788;
    --green-300: #74c69d;
    --cream-100: #faf8f4;
    --cream-200: #f3efe8;
    --cream-300: #e8e2d6;
    --warm-100: #fdfcf9;
    --warm-200: #f7f3ec;
    --text-dark: #1a1a18;
    --text-mid: #4a4a44;
    --text-light: #7a7a72;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--cream-100);
    padding: 8px 16px;
    z-index: 1000;
    border-radius: 4px;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.4s var(--ease-smooth), 
                box-shadow 0.4s var(--ease-smooth),
                padding 0.3s var(--ease-smooth);
}

.header.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(26, 60, 42, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-800);
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

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

.logo-mark {
    color: var(--green-700);
    flex-shrink: 0;
}

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

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-600);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--green-700);
}

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

.nav-cta {
    background: var(--green-800);
    color: var(--cream-100) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

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

.nav-cta:hover {
    background: var(--green-700);
    color: var(--cream-100) !important;
    transform: translateY(-1px);
}

/* HAMBURGER */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    position: relative;
    transition: background 0.3s, transform 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    transition: transform 0.3s var(--ease-out);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--green-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #2d6a4f 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.gradient-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #40916c 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
}

.gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c9a96e 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.25;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream-100);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

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

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(250, 248, 244, 0.7);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.5);
    font-weight: 400;
}

.trust-item svg {
    color: var(--gold);
    opacity: 0.7;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 248, 244, 0.35);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250,248,244,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--sans);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--gold);
    color: var(--green-900);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--cream-100);
    border: 1px solid rgba(250, 248, 244, 0.25);
}

.btn--ghost:hover {
    border-color: rgba(250, 248, 244, 0.6);
    background: rgba(250, 248, 244, 0.08);
}

.btn--dark {
    background: var(--green-800);
    color: var(--cream-100);
}

.btn--dark:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 42, 0.3);
}

.btn--light {
    background: var(--cream-100);
    color: var(--green-900);
}

.btn--light:hover {
    background: var(--cream-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.btn--outline-light:hover {
    background: rgba(250, 248, 244, 0.1);
    border-color: var(--cream-100);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.title-accent {
    font-style: italic;
    color: var(--green-600);
}

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

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

.service-card {
    background: var(--warm-200);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 60, 42, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--green-800);
    opacity: 0.08;
    line-height: 1;
    margin-bottom: 16px;
    position: absolute;
    top: 20px;
    right: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

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

.services-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.services-note a {
    color: var(--green-600);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.services-note a:hover {
    border-bottom-color: var(--green-600);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--cream-200);
}

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

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--green-800);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.15;
}

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

.about-text {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid var(--cream-300);
    border-bottom: 1px solid var(--cream-300);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--green-700);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    position: relative;
    padding: 120px 0;
    background: var(--green-900);
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
}

.philosophy-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, var(--cream-100) 1px, transparent 0);
    background-size: 32px 32px;
}

.philosophy-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-eyebrow {
    color: var(--gold);
}

.philosophy-quote {
    position: relative;
    margin: 0 auto 64px;
    max-width: 680px;
}

.quote-mark {
    position: absolute;
    top: -24px;
    left: -8px;
    opacity: 0.5;
}

.philosophy-quote p {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream-100);
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.pillar {
    padding: 32px;
    border: 1px solid rgba(250, 248, 244, 0.08);
    border-radius: 12px;
    transition: border-color 0.3s, background 0.3s;
}

.pillar:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(250, 248, 244, 0.03);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201, 169, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.pillar h4 {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream-100);
    margin-bottom: 10px;
}

.pillar p {
    font-size: 0.875rem;
    color: rgba(250, 248, 244, 0.55);
    line-height: 1.7;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--cream-100);
}

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

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

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

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--warm-200);
    border-radius: 12px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.visit-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(26, 60, 42, 0.08);
}

.visit-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.visit-card h4 {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.visit-card p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit-card a {
    color: var(--green-600);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.visit-card a:hover {
    border-bottom-color: var(--green-600);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(26, 60, 42, 0.1);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--green-800);
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-800) 100%);
}

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

.cta-eyebrow {
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream-100);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-900);
    padding: 64px 0 32px;
    color: var(--cream-100);
}

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

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.5);
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-contact h4 {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--cream-100);
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.55);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--gold);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.35);
}

.footer-bottom a {
    color: rgba(250, 248, 244, 0.35);
    transition: color 0.3s;
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    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; }

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-menu.mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

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

.nav-menu.mobile-open .nav-link {
    font-size: 1.25rem;
    color: var(--green-800);
}

.nav-menu.mobile-open .nav-cta {
    font-size: 1.125rem;
}

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

    .about-grid {
        gap: 48px;
    }

    .philosophy-pillars {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .header-inner {
        height: 70px;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 12px 0;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-scroll {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 28px 24px;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .about {
        padding: 80px 0;
    }

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

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

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

    .about-stats {
        gap: 24px;
    }

    .philosophy {
        padding: 80px 0;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .visit-map {
        aspect-ratio: 16/9;
    }

    .cta {
        padding: 80px 0;
    }

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

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

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

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
