/* ============================================================
   BOLD MAGAZINE / EDITORIAL — Vetrina Theme
   Fonts: Fraunces (serif headings), Source Sans 3 (body)
   Primary: #e63946 (bold red)
   ============================================================ */

/* === Variables === */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --primary-glow: rgba(230, 57, 70, 0.12);
    --accent: #e63946;
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #999;
    --bg: #ffffff;
    --bg-alt: #f5f0eb;
    --bg-dark: #1a1a1a;
    --bg-magazine: #fafafa;
    --border: #ddd;
    --border-light: #eee;
    --radius: 2px;
    --radius-lg: 2px;
    --radius-xl: 2px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
    --shadow-primary: 0 8px 30px rgba(230, 57, 70, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --font-heading: 'Fraunces', 'Georgia', serif;
    --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-magazine);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* === Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 900; color: #fff;
    text-decoration: none; display: flex; align-items: center; gap: 0.6rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.navbar-brand:hover { color: #fff; }
.navbar.scrolled .navbar-brand:hover { color: var(--text); }
.navbar-logo { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
    padding: 0.5rem 1rem; border-radius: 0;
    font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: 0.1em;
    transition: all var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 4px; left: 1rem; right: 1rem;
    height: 2px; background: #fff;
    transform: scaleX(0); transform-origin: right;
    transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a::after { background: var(--primary); }
.navbar.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
    background: rgba(255,255,255,0.15) !important; color: #fff !important;
    border: 2px solid #fff !important;
    font-weight: 700 !important;
    padding: 0.45rem 1.25rem !important;
    letter-spacing: 0.08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: #fff !important; color: var(--primary) !important;
    border-color: #fff !important;
}
.navbar.scrolled .nav-cta {
    background: var(--primary) !important; color: #fff !important;
    border-color: var(--primary) !important;
}
.navbar.scrolled .nav-cta:hover {
    background: var(--primary-dark) !important; border-color: var(--primary-dark) !important;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 2.5px; background: #fff;
    position: absolute; left: 0; transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* === Hero === */
.hero {
    position: relative;
    background: var(--bg-dark);
    background-size: cover; background-position: center;
    color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(230, 57, 70, 0.85) 0%,
        rgba(26, 26, 26, 0.9) 50%,
        rgba(26, 26, 26, 0.95) 100%
    );
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: var(--primary);
    opacity: 0.08;
    border-radius: 0;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; padding: 10rem 0 6rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary);
    border: none;
    padding: 0.4rem 1.2rem;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem; font-weight: 900; line-height: 1.0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    text-transform: none;
}
.hero h1 em,
.hero h1 i {
    font-style: italic;
    color: var(--primary-light);
}
.hero-sub {
    font-size: 1.15rem; opacity: 0.7; margin-bottom: 2.5rem;
    line-height: 1.8; max-width: 520px;
    font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg {
    width: 28px; height: 28px; color: rgba(255,255,255,0.4);
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Decorative shapes - editorial geometric blocks */
.hero-shape {
    position: absolute;
    background: rgba(230, 57, 70, 0.06);
    border: 2px solid rgba(230, 57, 70, 0.1);
    pointer-events: none;
    border-radius: 0;
}
.hero-shape-1 { width: 300px; height: 300px; top: 10%; right: 5%; z-index: 1; transform: rotate(12deg); }
.hero-shape-2 { width: 200px; height: 200px; bottom: 10%; left: 5%; z-index: 1; transform: rotate(-8deg); }
.hero-shape-3 { width: 120px; height: 120px; top: 40%; right: 25%; z-index: 1; transform: rotate(25deg); }

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 700; border-radius: 0;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition); text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-outline {
    background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary); color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-lg { padding: 1.1rem 2.75rem; font-size: 0.85rem; }
.btn-full { width: 100%; }
.hero .btn-primary {
    background: #fff; color: var(--text); border-color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.hero .btn-primary:hover {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}
.hero .btn-outline {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
    background: #fff; color: var(--text);
    border-color: #fff;
}

/* === Sections === */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center; max-width: 640px; margin: 0 auto 4rem;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: none;
    padding: 0;
    margin-bottom: 1rem;
    position: relative;
}
.section-label::before {
    content: '';
    display: inline-block; vertical-align: middle;
    width: 30px; height: 2px;
    background: var(--primary);
    margin-right: 0.75rem;
}
.section-label::after {
    content: '';
    display: inline-block; vertical-align: middle;
    width: 30px; height: 2px;
    background: var(--primary);
    margin-left: 0.75rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 900; margin-bottom: 0.75rem;
    letter-spacing: -0.03em; line-height: 1.15;
    color: var(--text);
}
.section-subtitle {
    color: var(--text-light); font-size: 1.05rem; line-height: 1.8;
}
.section-title-left {
    font-family: var(--font-heading);
    font-size: 2.4rem; font-weight: 900; margin-bottom: 2.5rem;
    letter-spacing: -0.03em; line-height: 1.15;
    position: relative; padding-bottom: 1.25rem;
}
.section-title-left::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--primary);
    margin-top: 1rem;
}
.section-cta { text-align: center; margin-top: 3.5rem; }

/* === Page Header === */
.page-header {
    background: var(--bg-dark);
    padding: 9rem 0 4rem;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: var(--primary);
    opacity: 0.08;
    pointer-events: none;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 900; color: #fff;
    letter-spacing: -0.03em;
}
.page-header p {
    color: rgba(255,255,255,0.5); font-size: 1.05rem; margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

/* === Services === */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.service-card {
    background: var(--bg);
    border: none;
    border-left: 4px solid var(--primary);
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
    background: var(--primary);
    transition: width var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}
.service-card:hover::before { width: 8px; }
.service-icon {
    font-size: 2rem; display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    background: var(--primary);
    color: #fff;
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 800; margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.services-grid-full { grid-template-columns: repeat(2, 1fr); }
.service-card-full { display: flex; flex-direction: column; }
.service-image {
    overflow: hidden; margin-bottom: 1.5rem;
    position: relative;
}
.service-image::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 60px; height: 4px;
    background: var(--primary);
}
.service-image img {
    width: 100%; height: 240px; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(20%);
}
.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* === About === */
.about-preview {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image {
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -12px; right: -12px;
    width: 100%; height: 100%;
    border: 3px solid var(--primary);
    pointer-events: none;
    z-index: -1;
}
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.about-content p {
    color: var(--text-light); line-height: 1.9; margin-bottom: 1.75rem;
    font-size: 1.02rem;
}
.values-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.value-tag {
    background: var(--text);
    color: #fff; padding: 0.4rem 1.1rem;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-full { margin-bottom: 3rem; }
.about-image-full {
    overflow: hidden; margin-bottom: 2.5rem;
    max-width: 720px; box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image-full::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100px; height: 5px;
    background: var(--primary);
}
.about-image-full img { width: 100%; height: 420px; object-fit: cover; }
.about-text-full {
    max-width: 720px; color: var(--text-light); line-height: 1.9; font-size: 1.1rem;
}
.values-section { margin-top: 4rem; }
.values-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.value-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--bg);
    border: none;
    border-bottom: 3px solid var(--border-light);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    transition: all var(--transition);
}
.value-card:hover {
    border-bottom-color: var(--primary);
    transform: translateX(4px);
}
.value-check {
    color: #fff; font-weight: 700; font-size: 0.75rem;
    background: var(--primary);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* === Team === */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-grid-full { grid-template-columns: repeat(3, 1fr); }
.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all var(--transition);
    position: relative;
}
.team-card::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--primary);
    transition: width var(--transition);
}
.team-card:hover::after { width: 60px; }
.team-card:hover {
    background: var(--bg);
    box-shadow: var(--shadow);
}
.team-photo {
    width: 140px; height: 140px; margin: 0 auto 1.25rem;
    overflow: hidden; background: var(--bg-alt);
    border: none;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}
.team-card:hover .team-photo {
    box-shadow: var(--shadow-lg);
}
.team-photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%);
    transition: filter var(--transition);
}
.team-card:hover .team-photo img { filter: grayscale(0%); }
.team-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 900;
    color: #fff;
    background: var(--primary);
}
.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 800; margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.team-role {
    color: var(--primary); font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.team-bio {
    color: var(--text-light); font-size: 0.9rem; margin-top: 0.75rem; line-height: 1.7;
}
.team-contacts { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.2rem; }
.team-contacts a { font-size: 0.82rem; }

/* === Locations === */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.location-card {
    background: var(--bg);
    border: none;
    border-top: 4px solid var(--primary);
    padding: 2rem;
    transition: all var(--transition);
}
.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 800; margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.location-address { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0.75rem; }
.location-detail { font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--text-light); }
.location-detail strong { color: var(--text); }
.locations-list { display: flex; flex-direction: column; gap: 2.5rem; }
.location-full {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--bg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.location-full:hover { box-shadow: var(--shadow-lg); }
.location-info { padding: 2.5rem; }
.location-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 800; margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.location-details p { margin-bottom: 0.6rem; font-size: 0.95rem; color: var(--text-light); }
.location-details strong { color: var(--text); }
.location-hours { margin-top: 1rem; }
.location-hours p { color: var(--text-light); }
.location-map { min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* === Contact === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2, .contact-form-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 800; margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.contact-item {
    display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem;
}
.contact-icon {
    font-size: 1.1rem; line-height: 1;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
}
.contact-item div { padding-top: 0.15rem; }
.contact-item div strong {
    display: block; font-size: 0.72rem; font-weight: 700;
    color: var(--text-muted); margin-bottom: 0.2rem;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.contact-item div a, .contact-item div p {
    font-size: 0.95rem; margin: 0; color: var(--text);
    font-weight: 500;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.72rem; font-weight: 700; color: var(--text);
    letter-spacing: 0.08em; text-transform: uppercase;
}
.form-group input, .form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0;
    font-size: 0.95rem; font-family: inherit;
    transition: all var(--transition);
    background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: none;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-feedback {
    margin-top: 1rem; padding: 1rem 1.25rem;
    font-size: 0.9rem; font-weight: 600;
    border-left: 4px solid;
}
.form-feedback.success {
    background: #ecfdf5; color: #065f46;
    border-left-color: #059669;
}
.form-feedback.error {
    background: #fef2f2; color: #991b1b;
    border-left-color: var(--primary);
}

/* === CTA Section === */
.cta-section {
    background: var(--primary);
    color: #fff;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.05);
    transform: rotate(20deg);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 300px; height: 300px;
    background: rgba(0,0,0,0.08);
    transform: rotate(-15deg);
    pointer-events: none;
}
.cta-inner {
    text-align: center; max-width: 600px; margin: 0 auto;
    position: relative; z-index: 2;
}
.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.cta-inner p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.1rem; font-weight: 400; }
.cta-section .btn-primary {
    background: #fff; color: var(--primary); border-color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
    background: var(--text); color: #fff; border-color: var(--text);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* === Prose (privacy, custom pages) === */
.prose {
    max-width: 720px; line-height: 2; color: var(--text-light); font-size: 1.08rem;
}
.prose h2, .prose h3 {
    font-family: var(--font-heading);
    color: var(--text); margin: 2.5rem 0 0.75rem;
    font-weight: 800; letter-spacing: -0.02em;
}
.prose p + p { margin-top: 1.25rem; }
.prose a { border-bottom: 2px solid var(--primary); }
.prose a:hover { color: var(--primary-dark); }
.page-image {
    margin-bottom: 2.5rem; overflow: hidden;
    max-width: 720px; box-shadow: var(--shadow-lg);
}
.page-image img { width: 100%; }

/* === Empty state === */
.empty-state {
    color: var(--text-muted); font-style: italic; text-align: center; padding: 5rem 0;
    font-size: 1.05rem;
    font-family: var(--font-heading);
}

/* === WhatsApp FAB === */
.whatsapp-fab {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition);
    animation: fab-appear 0.5s ease 1s both;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}
@keyframes fab-appear {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* === Footer === */
.site-footer {
    background: var(--bg-dark); color: #999;
    padding: 5rem 0 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--primary);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    color: #fff; font-size: 1.3rem; margin-bottom: 0.75rem;
    font-weight: 900; letter-spacing: -0.02em;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.25rem; }
.footer-vat { font-size: 0.82rem; opacity: 0.5; }
.site-footer h4 {
    color: var(--primary); font-size: 0.72rem; margin-bottom: 1rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: #777; font-size: 0.88rem; transition: all var(--transition); }
.site-footer a:hover { color: #fff; }
.site-footer li { font-size: 0.88rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    color: #777; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.footer-social a:hover {
    color: #fff; background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid #333; padding: 1.5rem 0;
    text-align: center; font-size: 0.82rem; color: #555;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: #fff; }

/* === Responsive === */
@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .hero-inner { padding: 7rem 0 4rem; }
    .hero { min-height: 80vh; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr 1fr; }
    .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image img { height: 300px; }
    .about-image::after { display: none; }
    .team-grid, .team-grid-full { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .location-full { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section { padding: 4.5rem 0; }
    .section-title { font-size: 2.2rem; }
    .page-header { padding: 7rem 0 2.5rem; }
    .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 72px; left: 0; right: 0;
        background: #fff;
        border-bottom: 3px solid var(--primary);
        padding: 0.5rem 0;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.85rem 1.5rem; width: 100%;
        color: var(--text-light) !important;
        font-size: 0.82rem;
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover { color: var(--primary) !important; background: var(--bg-alt); }
    .nav-cta {
        text-align: center; margin: 0.5rem 1rem;
        background: var(--primary) !important; color: #fff !important;
        border-color: var(--primary) !important;
    }
}

@media (max-width: 640px) {
    .hamburger { display: block; }
    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-inner { padding: 6rem 0 4rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.8rem; }
    .section-title-left { font-size: 1.6rem; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr; }
    .team-grid, .team-grid-full { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 6rem 0 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .container { padding: 0 1.25rem; }
    .hero-shape { display: none; }
    .hero::after { display: none; }
    .about-image::after { display: none; }
    .team-photo { width: 110px; height: 110px; }
    .cta-inner h2 { font-size: 1.8rem; }
    .section-label::before,
    .section-label::after { width: 20px; }
}
