/* ============================================
   Ultra Minimal / Clean — Vetrina Template
   Font: Outfit | Palette: #111 on #fff
   Japanese minimalism. Every pixel intentional.
   ============================================ */

/* === Variables === */
:root {
    --primary: #111111;
    --primary-hover: #000000;
    --primary-soft: #333333;
    --text: #111111;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-alt: #f9f9f9;
    --bg-dark: #111111;
    --border: #eeeeee;
    --border-light: #f3f3f3;
    --radius: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.03);
    --shadow: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.06);
    --transition: 0.25s ease;
    --transition-slow: 0.5s ease;
    --max-width: 1100px;
    --section-padding: 7rem;
}

/* === Reset === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', -apple-system, system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    font-weight: 300;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--text-light);
}
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(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: all 0.4s ease;
    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: 1px solid var(--border);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.01em;
    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: 36px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-links a {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}
.nav-links a:hover {
    color: #fff;
}
.navbar.scrolled .nav-links a {
    color: var(--text-light);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--text);
}
.nav-cta {
    border: 1px solid rgba(255,255,255,0.4) !important;
    font-weight: 500 !important;
    padding: 0.45rem 1.25rem !important;
    margin-left: 0.5rem;
}
.nav-cta:hover {
    background: #fff !important;
    color: var(--text) !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-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}
.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(--primary);
    color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-inner {
    max-width: 640px;
    padding: 10rem 0 8rem;
}
.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 480px;
}
.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 3s ease-in-out infinite;
}
.hero-scroll svg {
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.3);
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* No decorative shapes in minimal variant */
.hero-shape { display: none; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}
.btn-full {
    width: 100%;
}
.hero .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.hero .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    border-color: rgba(255,255,255,0.9);
}
.hero .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* === Sections === */
.section {
    padding: var(--section-padding) 0;
}
.section-alt {
    background: var(--bg-alt);
}
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}
.section-title-left {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.25rem;
}
.section-title-left::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--primary);
    margin-top: 1rem;
}
.section-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* === Page Header === */
.page-header {
    background: var(--primary);
    padding: 9rem 0 4rem;
    position: relative;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
}
.page-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* === Services === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.service-card {
    background: var(--bg);
    padding: 2.75rem;
    transition: all var(--transition);
    position: relative;
}
.service-card:hover {
    background: var(--bg-alt);
}
.service-icon {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
}
.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;
}
.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.02);
}

/* === About === */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image {
    overflow: hidden;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.about-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 300;
}
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.value-tag {
    background: var(--bg-alt);
    color: var(--text);
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
}
.about-full {
    margin-bottom: 3rem;
}
.about-image-full {
    overflow: hidden;
    margin-bottom: 3rem;
    max-width: 700px;
}
.about-image-full img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-text-full {
    max-width: 700px;
    color: var(--text-light);
    line-height: 2;
    font-size: 1.05rem;
    font-weight: 300;
}
.values-section {
    margin-top: 4rem;
}
.values-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
}
.value-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    font-weight: 400;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
    transition: padding-left var(--transition);
}
.value-card:hover {
    padding-left: 0.5rem;
}
.value-check {
    color: var(--text);
    font-weight: 400;
    font-size: 0.85rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === Team === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.team-grid-full {
    grid-template-columns: repeat(3, 1fr);
}
.team-card {
    text-align: center;
    padding: 0;
    transition: all var(--transition);
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: var(--bg-alt);
    transition: all var(--transition);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background: var(--primary);
}
.team-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}
.team-role {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.team-bio {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    line-height: 1.7;
    font-weight: 300;
}
.team-contacts {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.team-contacts a {
    font-size: 0.82rem;
    color: var(--text-light);
}
.team-contacts a:hover {
    color: var(--text);
}

/* === Locations === */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.location-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all var(--transition);
}
.location-card:hover {
    border-color: var(--text-muted);
}
.location-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.location-address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
}
.location-detail {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--text-light);
    font-weight: 300;
}
.location-detail strong {
    color: var(--text);
    font-weight: 500;
}
.locations-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.location-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}
.location-full:hover {
    border-color: var(--text-muted);
}
.location-info {
    padding: 3rem;
}
.location-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.location-details p {
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 300;
}
.location-details strong {
    color: var(--text);
    font-weight: 500;
}
.location-hours {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.location-hours p {
    color: var(--text-light);
    font-weight: 300;
}
.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: 5rem;
}
.contact-info h2,
.contact-form-wrap h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-icon {
    font-size: 1rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.contact-item div {
    padding-top: 0.1rem;
}
.contact-item div strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-item div a,
.contact-item div p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--text);
    font-weight: 400;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    transition: border-color var(--transition);
    background: transparent;
    border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-feedback {
    margin-top: 1rem;
    padding: 1rem 0;
    font-size: 0.88rem;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
}
.form-feedback.success {
    color: #1a7a4c;
    border-bottom-color: #1a7a4c;
}
.form-feedback.error {
    color: #c53030;
    border-bottom-color: #c53030;
}

/* === CTA Section === */
.cta-section {
    background: var(--primary);
    color: #fff;
    position: relative;
}
.cta-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.cta-inner p {
    opacity: 0.6;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.cta-section .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    border-color: rgba(255,255,255,0.9);
}

/* === Prose (privacy, custom pages) === */
.prose {
    max-width: 640px;
    line-height: 2;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}
.prose h2,
.prose h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    font-weight: 500;
    margin: 2.5rem 0 0.75rem;
}
.page-image {
    margin-bottom: 3rem;
    overflow: hidden;
    max-width: 640px;
}
.page-image img {
    width: 100%;
}

/* === Empty state === */
.empty-state {
    color: var(--text-muted);
    font-style: normal;
    text-align: center;
    padding: 5rem 0;
    font-size: 0.95rem;
    font-weight: 300;
}

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

/* === Footer === */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 5rem 0 0;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
    font-weight: 300;
}
.footer-vat {
    font-size: 0.78rem;
    opacity: 0.5;
}
.site-footer h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.site-footer a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-weight: 300;
    transition: color var(--transition);
}
.site-footer a:hover {
    color: #fff;
}
.site-footer li {
    font-size: 0.85rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social a {
    color: rgba(255,255,255,0.3);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.footer-social a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.footer-bottom a {
    color: rgba(255,255,255,0.3);
}
.footer-bottom a:hover {
    color: #fff;
}

/* === Responsive: Tablet === */
@media (max-width: 900px) {
    :root {
        --section-padding: 5rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-inner {
        padding: 8rem 0 5rem;
    }
    .hero {
        min-height: 85vh;
    }
    .services-grid,
    .services-grid-full {
        grid-template-columns: 1fr 1fr;
    }
    .about-preview {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image img {
        height: 320px;
    }
    .team-grid,
    .team-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .location-full {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .page-header {
        padding: 8rem 0 3rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

/* === Responsive: Mobile === */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 0.85rem 1rem;
        width: 100%;
        color: var(--text-light) !important;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links a:hover {
        color: var(--text) !important;
    }
    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
        margin-left: 0 !important;
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
        border-bottom: none !important;
    }
    .hero {
        min-height: 90vh;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .hero-inner {
        padding: 7rem 0 5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .section {
        padding: 4rem 0;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-title-left {
        font-size: 1.4rem;
    }
    .services-grid,
    .services-grid-full {
        grid-template-columns: 1fr;
        gap: 0;
        border: 1px solid var(--border);
    }
    .service-card {
        padding: 2rem;
    }
    .team-grid,
    .team-grid-full {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-header {
        padding: 7rem 0 2.5rem;
    }
    .page-header h1 {
        font-size: 1.6rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .contact-layout {
        gap: 2.5rem;
    }
}

/* === Responsive: Small Mobile === */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .team-grid,
    .team-grid-full {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 1.25rem;
    }
}
