/* ==========================================================================
   Nordlys Fysioterapi — Klinik Template
   Blød, varm, tillidsfuld. Salvie + creme + koral accent.
   ========================================================================== */

:root {
    --sage:          #3D6B4F;
    --sage-mid:      #4E7C60;
    --sage-light:    #EAF2EC;
    --sage-pale:     #F4F8F5;
    --warm-white:    #FDFAF7;
    --warm-sand:     #F2EAE0;
    --warm-sand-dk:  #E6D8CA;
    --coral:         #D4714A;
    --coral-hover:   #BE5C38;
    --coral-light:   #FDF1EC;
    --ink:           #2A3B2F;
    --ink-soft:      #4A5E50;
    --muted:         #7A9080;
    --line:          #DDEAE0;
    --white:         #FFFFFF;

    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

    --container:     1240px;
    --radius-sm:     10px;
    --radius:        16px;
    --radius-lg:     24px;
    --radius-xl:     32px;
    --radius-full:   999px;

    --shadow-sm:     0 2px 8px rgba(42,59,47,0.06);
    --shadow:        0 6px 20px rgba(42,59,47,0.10);
    --shadow-lg:     0 24px 56px -12px rgba(42,59,47,0.18);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Utilities */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Scroll-offset så ankre ikke gemmer sig bag fast header */
section[id] { scroll-margin-top: 80px; }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--sage);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    max-width: 580px;
    line-height: 1.75;
}

.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .section-lead { margin: 0 auto; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px -4px rgba(212,113,74,0.45);
}
.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -6px rgba(212,113,74,0.55);
}

.btn-soft {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-soft:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--sage);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover {
    border-color: var(--sage);
    background: var(--sage-light);
}

/* ==========================================================================
   Header — fixed so det overlapper hero-billedet
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.header-scrolled {
    background: rgba(253,250,247,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(42,59,47,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--sage);
    color: var(--white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    opacity: 0.75;
}
.logo-text strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-top: 1px;
    letter-spacing: -0.01em;
    opacity: 1;
}

.header-scrolled .logo-text { color: var(--muted); opacity: 1; }
.header-scrolled .logo-text strong { color: var(--sage); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0;
    transition: opacity 0.2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { opacity: 1; }

.header-scrolled .main-nav a { color: var(--ink-soft); }
.header-scrolled .main-nav a:hover { color: var(--sage); }

.header-cta { display: flex; align-items: center; gap: 16px; }

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}
.phone-link:hover { color: var(--white); }
.phone-link svg { color: rgba(255,255,255,0.6); }
.header-scrolled .phone-link { color: var(--ink-soft); }
.header-scrolled .phone-link:hover { color: var(--sage); }
.header-scrolled .phone-link svg { color: var(--coral); }

/* ==========================================================================
   Hero — photo with warm overlay
   ========================================================================== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    /* Fallback baggrund når billede mangler */
    background: linear-gradient(135deg, var(--sage) 0%, #2a4a35 55%, #1a3325 100%);
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42,59,47,0.25) 0%,
        rgba(42,59,47,0.35) 40%,
        rgba(42,59,47,0.75) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #6EE7A0;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(110,231,160,0.3);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}
.hero-trust-item svg { color: #6EE7A0; flex-shrink: 0; }

/* ==========================================================================
   Booking strip
   ========================================================================== */
.booking-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    box-shadow: var(--shadow-sm);
}
.booking-strip-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.booking-stat { padding: 0 36px; }
.booking-stat:first-child { padding-left: 0; }
.booking-sep {
    width: 1px;
    height: 40px;
    background: var(--line);
    flex-shrink: 0;
}
.booking-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--sage);
    line-height: 1;
    letter-spacing: -0.02em;
}
.booking-lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}
.booking-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.booking-cta-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.booking-cta-text span { font-size: 13px; color: var(--muted); display: block; margin-top: 2px; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 120px 0; background: var(--warm-white); }

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

.service-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-highlight {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}
.service-card-highlight:hover { border-color: transparent; }

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--coral);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--sage-light);
    color: var(--sage);
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-img {
    background: var(--coral-light);
    color: var(--coral);
}
.service-card-highlight .service-img {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.service-card-highlight:hover .service-img {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.service-card-highlight h3 { color: var(--white); }

.service-card p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
    font-weight: 400;
}
.service-card-highlight p { color: rgba(255,255,255,0.78); }

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--coral);
    transition: letter-spacing 0.2s;
    display: inline-block;
}
.service-link:hover { letter-spacing: 0.02em; }
.service-card-highlight .service-link { color: rgba(255,255,255,0.8); }
.service-card-highlight .service-link:hover { color: var(--white); }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 120px 0; background: var(--warm-sand); }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 3s ease; }
.about-img-main:hover img { transform: scale(1.03); }

.about-credentials {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--line);
}
.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
}
.credential-item svg { color: var(--sage); flex-shrink: 0; }

.about-content p {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--coral);
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 0 0 0 4px rgba(212,113,74,0.15);
}
.value-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 3px;
}
.value-item span { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   Process
   ========================================================================== */
.process { padding: 120px 0; background: var(--sage); }
.process .section-title { color: var(--white); }
.process .section-lead { color: rgba(255,255,255,0.7); }
.process .eyebrow { color: rgba(255,255,255,0.6); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 16px;
}

.process-step {
    background: rgba(255,255,255,0.06);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.1); }

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: background 0.3s;
}
.process-step:hover .process-icon { background: rgba(212,113,74,0.3); color: var(--white); }

.process-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.process-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    font-weight: 400;
}

/* ==========================================================================
   Why Us
   ========================================================================== */
.why-us { padding: 120px 0; background: var(--warm-white); }
.why-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-lead {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    margin-bottom: 36px;
    line-height: 1.75;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.why-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    margin-top: 2px;
    transition: background 0.2s, transform 0.2s;
}
.why-item:hover .why-check { background: var(--coral); transform: scale(1.1); }
.why-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 5px;
}
.why-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 400; }

/* Why card */
.why-visual {}
.why-card {
    background: var(--sage);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.why-card-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.why-card-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-bottom: 28px;
}
.why-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 28px;
}
.why-card-stars {
    font-size: 20px;
    color: #FBBF24;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.why-card-review {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
    margin-bottom: 24px;
}
.why-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.why-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.why-card-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.why-card-author span { font-size: 12px; color: rgba(255,255,255,0.55); display: block; margin-top: 2px; }

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial { padding: 120px 0; background: var(--warm-sand); }
.testimonial-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 64px 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--line);
}
/* Decorative leaf shapes */
.testimonial-leaf {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0.1;
    pointer-events: none;
}
.testimonial-leaf-1 {
    top: -30px; left: -30px;
    width: 120px; height: 120px;
    background: var(--sage);
    transform: rotate(15deg);
}
.testimonial-leaf-2 {
    bottom: -20px; right: -20px;
    width: 90px; height: 90px;
    background: var(--coral);
    transform: rotate(-20deg);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 400;
    font-style: italic;
    color: var(--sage);
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    position: relative;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--sage); }
.testimonial-author span { font-size: 13px; color: var(--muted); }
.testimonial-stars { color: #FBBF24; font-size: 15px; letter-spacing: 2px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 120px 0; background: var(--warm-white); }
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.is-open {
    border-color: var(--coral);
    box-shadow: 0 6px 20px -8px rgba(212,113,74,0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 26px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--sage);
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--coral); }
.faq-question > span:first-child { flex: 1; }

.faq-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--sage-light);
    color: var(--sage);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, color 0.3s;
}
.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background: var(--coral);
    color: var(--white);
}

.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
    padding: 0 26px 22px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 15px;
    font-weight: 400;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding: 120px 0; background: var(--sage-light); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}
.contact-lead {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    margin-bottom: 40px;
    line-height: 1.75;
}
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
a.contact-method:hover {
    border-color: var(--coral);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--sage-light);
    color: var(--sage);
    border-radius: var(--radius);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
a.contact-method:hover .contact-icon { background: var(--coral-light); color: var(--coral); }
.contact-method > div:last-child span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-method > div:last-child strong {
    font-size: 15px;
    color: var(--sage);
    font-weight: 700;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--line);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--sage); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--sage-pale);
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--sage);
    background: var(--white);
}
.form-field textarea { resize: vertical; font-family: inherit; }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--sage);
    padding: 72px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    max-width: 300px;
    font-weight: 400;
}

.logo-footer .logo-mark { background: rgba(255,255,255,0.15); }
.logo-footer .logo-text { color: rgba(255,255,255,0.55); }
.logo-footer .logo-text strong { color: var(--white); }

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
    font-weight: 400;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 12px; font-weight: 400; }
.footer-col p a { display: inline; padding: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
}
.footer-bottom strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ==========================================================================
   Burger + Mobile menu
   ========================================================================== */
.burger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.burger-btn:hover { background: rgba(255,255,255,0.15); }
.burger-btn span {
    display: block;
    width: 20px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.header-scrolled .burger-btn span { background: var(--sage); }
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 360px;
    background: var(--warm-white);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.2);
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-inner {
    display: flex; flex-direction: column;
    padding: 100px 28px 40px;
    flex: 1;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--sage);
    border-bottom: 1px solid var(--line);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--coral); padding-left: 8px; }
.mobile-menu-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
}
.mobile-phone {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line);
}
.mobile-phone svg { color: var(--coral); flex-shrink: 0; }
.mobile-phone span { display: block; font-size: 11px; color: var(--muted); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.mobile-phone strong { display: block; font-size: 16px; color: var(--sage); font-weight: 700; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .about-inner,
    .why-inner,
    .contact-inner { grid-template-columns: 1fr; gap: 56px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .header-cta .btn-primary { display: none; }
    .booking-strip-inner { gap: 0; flex-wrap: wrap; row-gap: 20px; }
    .booking-stat { padding: 0 24px; }
    .booking-cta { margin: 0; width: 100%; padding-top: 16px; border-top: 1px solid var(--line); }
    .about-credentials { left: 0; right: 0; bottom: -20px; position: relative; transform: none; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .header-inner { padding: 14px 20px; }
    .hero { min-height: 85vh; padding-bottom: 56px; }
    .services, .about, .process, .testimonial, .faq, .why-us, .contact { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .testimonial-wrap { padding: 40px 28px; }
    .testimonial-author { flex-wrap: wrap; justify-content: flex-start; }
    .testimonial-stars { width: 100%; }
    .contact-form { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-title { font-size: 3.5rem; }
    .why-visual { display: none; }
}
