/* ========================================
   Himalayan Care Center — Stylesheet
   Classic & Elegant Design System
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a2e;
    background-color: #fdfbf7;
    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;
}

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

ul, ol {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0f172a;
    color: #d4a853;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: 500;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: #b8860b;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a4a6a;
    max-width: 600px;
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #b8860b;
    color: #ffffff;
    border: 2px solid #b8860b;
}

.btn-primary:hover {
    background: #9a7209;
    border-color: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #d4a853;
    border: 2px solid rgba(212, 168, 83, 0.5);
}

.btn-ghost:hover {
    border-color: #d4a853;
    background: rgba(212, 168, 83, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.btn-outline:hover {
    background: #0f172a;
    color: #d4a853;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.938rem;
}

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 0.02em;
}

.logo-icon {
    flex-shrink: 0;
}

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

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.75);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: #d4a853;
    background: rgba(212, 168, 83, 0.08);
}

.nav-cta {
    font-size: 0.813rem;
    font-weight: 500;
    color: #d4a853;
    padding: 10px 20px;
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: 4px;
    margin-left: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
}

.nav-cta:hover {
    background: rgba(212, 168, 83, 0.12);
    border-color: #d4a853;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: #f5f0e8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.75) 50%,
        rgba(15, 23, 42, 0.85) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d4a853;
    margin-bottom: 32px;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: #d4a853;
    flex-shrink: 0;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: #f5f0e8;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.813rem;
    color: rgba(245, 240, 232, 0.55);
    letter-spacing: 0.04em;
}

.trust-item svg {
    color: #d4a853;
    opacity: 0.7;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(212, 168, 83, 0.5);
    font-size: 0.688rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: #fdfbf7;
}

.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: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8860b, #d4a853);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #b8860b;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(184, 134, 11, 0.14);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-description {
    font-size: 0.938rem;
    color: #4a4a6a;
    line-height: 1.75;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border: 4px solid #0f172a;
}

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

.accent-border {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 12px;
    pointer-events: none;
}

.about-stat {
    position: absolute;
    top: -24px;
    left: -24px;
    background: #b8860b;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.about-stat .stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content .section-tag {
    color: #d4a853;
}

.about-content .section-tag::before {
    background: #d4a853;
}

.about-content .section-title {
    color: #f5f0e8;
}

.about-text {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(212, 168, 83, 0.3);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.value-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.value-text {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.7;
}

/* ---------- Philosophy ---------- */
.philosophy {
    padding: 120px 0;
    background: #f8f4ec;
}

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

.philosophy-content .section-tag {
    color: #b8860b;
}

.philosophy-text {
    font-size: 1rem;
    color: #4a4a6a;
    line-height: 1.85;
    margin-bottom: 20px;
}

.philosophy-quote {
    margin-top: 40px;
    padding: 32px;
    background: #ffffff;
    border-left: 3px solid #b8860b;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.philosophy-quote svg {
    color: #d4a853;
    margin-bottom: 16px;
    opacity: 0.5;
}

.philosophy-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-style: italic;
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.philosophy-quote cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.813rem;
    font-style: normal;
    color: #b8860b;
    letter-spacing: 0.06em;
}

.philosophy-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandala-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    opacity: 0.7;
}

.mandala-container svg {
    width: 100%;
    height: 100%;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #f5f0e8;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.063rem;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 36px;
    line-height: 1.8;
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: #fdfbf7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info .section-tag {
    color: #b8860b;
}

.contact-intro {
    font-size: 1rem;
    color: #4a4a6a;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 10px;
    color: #b8860b;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.938rem;
    color: #4a4a6a;
    line-height: 1.6;
}

.contact-item a {
    color: #4a4a6a;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b8860b;
}

.contact-map {
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.contact-map iframe {
    width: 100%;
}

/* ---------- Contact Form ---------- */
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.12);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.938rem;
    color: #4a4a6a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: #1a1a2e;
    background: #fdfbf7;
    border: 1.5px solid #e2ddd4;
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b8860b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a09a90;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h4 {
    font-size: 1.375rem;
    color: #1a5c3a;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.938rem;
    color: #4a4a6a;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0a0f1e;
    padding: 64px 0 0;
    color: rgba(245, 240, 232, 0.6);
}

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

.footer-brand .brand-name {
    font-size: 1.125rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
    margin-top: 12px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4a853;
    margin-bottom: 16px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #d4a853;
}

.footer-contact p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4a853;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.813rem;
    color: rgba(245, 240, 232, 0.35);
}

.footer-bottom a {
    color: rgba(212, 168, 83, 0.5);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d4a853;
}

/* ---------- Scroll reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    
    .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) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .philosophy-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-accent {
        right: 0;
        bottom: -24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
    
    .hero-content {
        padding: 100px 24px 80px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about,
    .philosophy,
    .contact {
        padding: 80px 0;
    }
    
    .about-image-main img,
    .about-image-accent img {
        height: 350px;
    }
    
    .about-image-accent {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 16px;
    }
    
    .about-stat {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        margin-bottom: 16px;
    }
    
    .contact-form-wrap {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-strip {
        padding: 64px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 28px 24px;
    }
}
