/* ===== VARIABLES ===== */
:root {
    --color-bg: #faf9f7;
    --color-surface: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6560;
    --color-accent: #8b6f5c;
    --color-accent-light: #c4a882;
    --color-accent-dark: #5c4a3d;
    --color-warm: #f5efe8;
    --color-warm-dark: #e8ddd0;
    --color-border: #e8e4df;
    --color-green: #2d8a4e;
    --color-green-bg: #e8f5e9;
    --color-red: #c62828;
    --color-red-bg: #fce8e8;

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

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

    --max-width: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--color-accent-light); color: #fff; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
}

h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: 1.4rem; }

h2 em, h1 em {
    font-style: italic;
    color: var(--color-accent);
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 111, 92, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

/* Top info bar */
.nav-top {
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 40px;
}

.nav-top-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.45rem var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-top-left {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-top-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.4rem;
}

.nav-top-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-top-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.nav-top-status .status-dot.open {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.nav-top-status .status-dot.closed {
    background: #f87171;
}

.nav-top-left svg {
    opacity: 0.6;
}

.nav-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-top-right a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.nav-top-right a:hover {
    color: #fff;
}

.nav-top-right svg {
    opacity: 0.6;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* Language Dropdown (mobile) */
.lang-dropdown {
    display: none;
    position: relative;
    margin-left: auto;
    margin-right: 0.75rem;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 10px;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}

.lang-dropdown-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.nav.scrolled .lang-dropdown-toggle {
    color: var(--color-text);
    border-color: var(--color-border);
}

.nav.scrolled .lang-dropdown-toggle:hover {
    border-color: var(--color-accent);
}

.lang-dropdown-current {
    line-height: 1;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    padding: 6px;
    z-index: 1100;
    animation: dropIn 0.15s ease;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-align: left;
    cursor: pointer;
    transition: all 0.15s;
}

.lang-dropdown-item:hover {
    background: var(--color-warm);
    color: var(--color-text);
}

.lang-dropdown-item.active {
    color: var(--color-accent);
    font-weight: 600;
    background: var(--color-warm);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 7px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* Scrolled: top bar collapses */
.nav.scrolled .nav-top {
    max-height: 0;
    padding: 0;
    border: none;
    opacity: 0;
}

.nav.scrolled .nav-top-inner {
    padding-top: 0;
    padding-bottom: 0;
}

/* Main nav bar */
.nav-main {
    padding: 0.85rem 0;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-main {
    background: rgba(250, 249, 247, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    padding: 0.55rem 0;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    transition: color 0.3s;
}

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

.logo-mark {
    transition: all 0.3s ease;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-icon {
    display: none;
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.nav.scrolled .logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent-light);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

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

.nav.scrolled .nav-links a {
    color: var(--color-text-muted);
}

.nav.scrolled .nav-links a:hover {
    color: var(--color-text);
}

.nav.scrolled .nav-links a::after {
    background: var(--color-accent);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    padding: 0.5rem 1.4rem;
    border-radius: 100px;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

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

.nav.scrolled .nav-cta {
    background: var(--color-accent) !important;
    color: #fff !important;
    border-color: var(--color-accent) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--color-accent-dark) !important;
    border-color: var(--color-accent-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.nav.scrolled .nav-toggle span {
    background: var(--color-text);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 80px;
    padding-bottom: 2rem;
    background: var(--color-bg);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu a {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--color-text);
}

.mobile-menu .nav-cta {
    background: var(--color-accent) !important;
    color: #fff !important;
    border-color: var(--color-accent) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 100px;
    font-weight: 500;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--color-text);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(26, 26, 26, 0.88) 0%,
            rgba(26, 26, 26, 0.7) 40%,
            rgba(92, 74, 61, 0.35) 70%,
            rgba(26, 26, 26, 0.2) 100%
        );
}

.hero-content {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    max-width: 600px;
    margin: 0;
    margin-left: max(var(--space-md), calc((100vw - var(--max-width)) / 2));
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    color: #fff;
}

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

.hero-subtitle {
    max-width: 500px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero rating badge */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 400;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-rating:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.hero-rating-stars {
    display: flex;
    gap: 1px;
    color: #FBBC05;
}

.hero-rating-score {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.hero-rating-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-rating-google {
    flex-shrink: 0;
}

/* Hero status */
.hero-status {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-status .status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.hero-status .status-dot.open {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.hero-status .status-dot.open::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 222, 128, 0.35);
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

.hero-status .status-dot.closed {
    background: #f87171;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero .btn-outline:hover {
    border-color: var(--color-accent-light);
    color: var(--color-accent-light);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-accent-light);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== INTRO ===== */
.intro {
    padding: var(--space-2xl) 0;
}

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

.intro-text h2 {
    margin-bottom: var(--space-md);
}

.intro-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    max-width: 480px;
}

/* Intro image */
.intro-image {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.intro-image-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-accent);
    color: #fff;
    padding: 0.75rem 1.3rem 0.75rem 1rem;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(139, 111, 92, 0.35);
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.intro-image-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--space-2xl) 0;
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    position: relative;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-accent-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 111, 92, 0.1);
}

.service-card.featured {
    background: var(--color-warm);
    border-color: var(--color-accent-light);
}

.service-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    background: rgba(139, 111, 92, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--space-2xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--color-accent-light);
    box-shadow: 0 8px 32px rgba(139, 111, 92, 0.08);
}

.price-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.price-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.price-amount {
    margin-top: var(--space-sm);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-from {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent);
}

.price-card-wide {
    grid-column: span 2;
    background: var(--color-warm);
    border-color: var(--color-accent-light);
}

.price-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

/* ===== OPENING HOURS ===== */
.hours {
    padding: var(--space-2xl) 0;
    background: var(--color-surface);
}

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

.hours-info h2 {
    margin-bottom: var(--space-md);
}

.hours-note {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 400px;
}

.hours-call-btn svg {
    flex-shrink: 0;
}

.hours-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.hours-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-warm);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    font-weight: 600;
}

.hours-card-header svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.hours-card-header .status-open {
    color: var(--color-green);
}

.hours-card-header .status-closed {
    color: var(--color-red);
}

.hours-list {
    padding: 0.5rem 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.hours-list li.today {
    background: var(--color-warm);
    border-left-color: var(--color-accent);
    font-weight: 500;
}

.hours-day {
    color: var(--color-text);
    min-width: 110px;
}

.hours-time {
    color: var(--color-text-muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.hours-closed {
    color: var(--color-red);
    font-weight: 500;
}

.hours-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.hours-footer svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* ===== B2B ===== */
.b2b {
    padding: var(--space-2xl) 0;
    background: var(--color-text);
    color: #fff;
}

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

.b2b .section-tag {
    color: var(--color-accent-light);
}

.b2b h2 em {
    color: var(--color-accent-light);
}

.b2b-content p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-md);
    max-width: 450px;
}

.b2b-list {
    margin-bottom: var(--space-md);
}

.b2b-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.b2b-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-accent-light);
    border-radius: 50%;
    transform: translateY(-50%);
}

.b2b .btn-primary {
    background: var(--color-accent-light);
    color: var(--color-text);
}

.b2b .btn-primary:hover {
    background: #fff;
}

.b2b-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-pattern {
    position: relative;
    width: 200px;
    height: 200px;
}

.thread-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
    animation: threadMove 3s ease infinite;
}

.thread-line:nth-child(1) { top: 25%; animation-delay: 0s; }
.thread-line:nth-child(2) { top: 50%; animation-delay: 0.5s; }
.thread-line:nth-child(3) { top: 75%; animation-delay: 1s; }

.needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent-light), transparent);
    border-radius: 1px;
    transform: translate(-50%, -50%) rotate(-30deg);
    animation: needleBounce 2s ease infinite;
}

@keyframes threadMove {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes needleBounce {
    0%, 100% { transform: translate(-50%, -50%) rotate(-30deg); }
    50% { transform: translate(-50%, -60%) rotate(-30deg); }
}

/* ===== TIKTOK ===== */
.tiktok {
    background: var(--color-bg);
    color: var(--color-text);
    overflow: hidden;
}

.tiktok-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 600px;
}

.tiktok-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    max-width: 500px;
    margin-left: auto;
}

.tiktok .section-tag {
    color: var(--color-accent);
}

.tiktok h2 {
    margin-bottom: var(--space-md);
}

.tiktok h2 em {
    color: var(--color-accent);
}

.tiktok-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.tiktok-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.tiktok-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.tiktok-highlight svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.tiktok-follow-btn {
    gap: 0.6rem;
    align-self: flex-start;
}

.tiktok .btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.tiktok .btn-primary:hover {
    background: var(--color-accent-dark);
}

.tiktok-embed-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
}

.tiktok-embed-wrapper .tiktok-embed {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}


/* ===== REVIEWS ===== */
.reviews {
    padding: var(--space-2xl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* Reviews summary widget */
.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: var(--space-md);
    padding: 1rem 1.5rem;
    background: var(--color-warm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.reviews-summary-score {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.reviews-summary-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviews-summary-stars {
    display: flex;
    gap: 2px;
    color: #FBBC05;
}

.reviews-summary-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.reviews-summary-google {
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.review-card {
    background: var(--color-surface);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.review-stars {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.review-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.review-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.reviews-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

.reviews-cta p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--color-surface);
}

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

.contact-info h2 {
    margin-bottom: var(--space-lg);
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-warm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.contact-item a {
    color: var(--color-accent);
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--color-accent-dark);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--color-border);
    background: var(--color-warm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-brand .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-address {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin-top: 0.75rem;
}

.footer-credit a {
    color: var(--color-accent);
    font-weight: 500;
    opacity: 1;
    transition: color 0.2s;
}

.footer-credit a:hover {
    color: var(--color-accent-dark);
}

/* ===== FAB (Floating Action Button) ===== */
.fab {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.fab-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 111, 92, 0.4);
    transition: all 0.3s ease;
}

.fab-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(139, 111, 92, 0.5);
}

.fab-toggle svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.fab-icon-close {
    display: none;
}

.fab.open .fab-icon-default {
    display: none;
}

.fab.open .fab-icon-close {
    display: block;
}

.fab.open .fab-toggle {
    background: var(--color-text);
}

/* FAB Actions */
.fab-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.fab.open .fab-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-action {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem 0.65rem 0.85rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
}

.fab-action:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-4px);
}

.fab-action svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.fab-call svg { color: var(--color-green); }
.fab-directions svg { color: var(--color-accent); }
.fab-hours svg { color: var(--color-accent-light); }

/* Staggered animation for actions */
.fab.open .fab-action:nth-child(1) { transition-delay: 0.05s; }
.fab.open .fab-action:nth-child(2) { transition-delay: 0.1s; }
.fab.open .fab-action:nth-child(3) { transition-delay: 0.15s; }

/* FAB overlay */
.fab-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 899;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.fab-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-top {
        display: none;
    }

    .lang-dropdown {
        display: block;
    }

    .fab {
        display: flex;
    }

    .logo-img {
        display: none;
    }

    .logo-icon {
        display: block;
    }

    .nav-logo {
        font-size: 1rem !important;
        gap: 0.6rem !important;
    }

    .logo-text {
        font-size: 0.85rem;
        line-height: 1.15;
    }

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

    .intro-image img {
        min-height: 250px;
    }

    .intro-image-badge {
        bottom: -0.8rem;
        left: 1rem;
        font-size: 0.78rem;
        padding: 0.6rem 1rem 0.6rem 0.8rem;
    }

    .intro-image-badge svg {
        width: 18px;
        height: 18px;
    }

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

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

    .tiktok-inner {
        grid-template-columns: 1fr;
    }

    .tiktok-info {
        padding: var(--space-lg) var(--space-md);
        max-width: 100%;
        margin-left: 0;
    }

    .tiktok-embed-wrapper {
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding: var(--space-md);
    }

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

    .b2b-visual {
        display: none;
    }

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

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

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .intro, .services, .pricing, .reviews, .contact, .hours {
        padding: var(--space-xl) 0;
    }

    .nav-links-desktop {
        display: none !important;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 100000;
    }

    .nav.menu-open .nav-main {
        background: var(--color-bg) !important;
        box-shadow: none !important;
    }

    .nav.menu-open .nav-logo {
        color: var(--color-text) !important;
    }

    .nav.menu-open .lang-dropdown-toggle {
        color: var(--color-text) !important;
        border-color: var(--color-border) !important;
    }

    .nav.menu-open .nav-toggle span {
        background: var(--color-text) !important;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

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

    .price-card-wide {
        grid-column: span 1;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 6rem 0 2.5rem;
    }

    .hero-scroll {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-status {
        display: inline-flex;
    }

    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .hero-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-rating {
        margin-top: 1.2rem;
        font-size: 0.72rem;
        padding: 0.45rem 0.75rem;
        gap: 0.35rem;
    }

    .hero-rating-stars svg {
        width: 12px;
        height: 12px;
    }

    .hero-rating-score {
        font-size: 0.8rem;
    }

    .reviews-summary {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .reviews-summary-score {
        font-size: 2.2rem;
    }

    .btn {
        text-align: center;
        justify-content: center;
    }

    .hours-list li {
        padding: 0.75rem 1rem;
    }

    .hours-card-header {
        padding: 1rem;
    }

    .hours-day {
        min-width: 90px;
    }

    .hours-time {
        font-size: 0.82rem;
    }
}
