*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f3f6f2;
    --bg-elevated: #ffffff;
    --ink: #102018;
    --ink-soft: #3d5248;
    --muted: #6b7f74;
    --line: #d5e0d8;
    --accent: #0f8f6e;
    --accent-deep: #0a6b53;
    --accent-soft: #d8f3ea;
    --warm: #e8f0e4;
    --danger: #c44536;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 18px 50px rgba(16, 32, 24, 0.08);
    --shadow-sm: 0 8px 24px rgba(16, 32, 24, 0.06);
    --font-display: "Syne", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --nav-h: 72px;
    --container: 1120px;

    /* Legacy aliases used by service/case pages */
    --background: var(--bg);
    --foreground: var(--ink);
    --card: var(--bg-elevated);
    --card-foreground: var(--ink);
    --primary: var(--accent);
    --primary-foreground: #fff;
    --secondary: var(--warm);
    --secondary-foreground: var(--ink);
    --muted-foreground: var(--muted);
    --accent-foreground: #fff;
    --border: var(--line);
    --input: var(--line);
    --ring: var(--accent);
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    --gradient-secondary: linear-gradient(135deg, #e8f0e4 0%, #d8f3ea 100%);
    --gradient-hero: linear-gradient(135deg, #0a6b53 0%, #0f8f6e 55%, #1aa88a 100%);
    --gradient-cyan: var(--accent);
    --gradient-magenta: #1aa88a;
    --popover: var(--bg-elevated);
    --popover-foreground: var(--ink);
    --destructive: var(--danger);
    --destructive-foreground: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, #d8f3ea 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, #e8f0e4 0%, transparent 50%),
        var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.1rem, 3vw, 1.75rem);
}

.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 3000;
    padding: 0.65rem 1rem;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
}

/* —— Nav —— */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(243, 246, 242, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 7px;
    background:
        linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: 28% 28%;
    border-radius: 3px;
    background: #fff;
    opacity: 0.9;
}

.logo-text {
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-deep);
}

.nav-links .nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links .nav-cta:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--ink);
    cursor: pointer;
}

/* —— Hero (full-bleed) —— */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
    color: #fff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroKen 22s ease-in-out infinite alternate;
}

@keyframes heroKen {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 22, 16, 0.35) 0%, rgba(8, 22, 16, 0.55) 45%, rgba(8, 22, 16, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 22, 16, 0.55) 0%, transparent 60%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-left: 0;
    margin-right: auto;
}

.brand-lockup {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 3.4rem);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.1rem;
    color: #fff;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 18ch;
    color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 38ch;
    margin-bottom: 1.75rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-button,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 28px rgba(15, 143, 110, 0.28);
}

.cta-button:hover,
.submit-button:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

section .cta-button.secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

section .cta-button.secondary:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
    background: var(--accent-soft);
}

/* —— Sections —— */
section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-header.center,
.section-header[data-center] {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
}

/* —— About —— */
.about-content {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
}

.about-visual {
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-visual:hover img {
    transform: scale(1.04);
}

.about-text > p {
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.about-feature {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.about-feature i {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.about-feature p {
    color: var(--muted);
    font-size: 0.92rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.stat {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem 0.75rem;
    text-align: center;
}

.stat h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--accent-deep);
    letter-spacing: -0.02em;
}

.stat p {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* —— Services —— */
.services {
    background:
        linear-gradient(180deg, transparent, rgba(216, 243, 234, 0.45) 20%, rgba(216, 243, 234, 0.45) 80%, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    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);
    border-color: transparent;
}

.service-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-thumb img {
    transform: scale(1.06);
}

.service-body {
    padding: 1.35rem 1.4rem 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card h3,
.service-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.service-card p,
.service-body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--accent-deep);
    font-size: 0.92rem;
}

.service-link i {
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* —— Portfolio —— */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 11;
    margin-bottom: 0.9rem;
    background: var(--warm);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(10, 40, 30, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-btn {
    background: #fff;
    color: var(--ink);
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
}

.portfolio-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.portfolio-item > p,
.portfolio-link > p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* —— Testimonials —— */
.testimonials {
    background: var(--ink);
    color: #fff;
}

.testimonials .eyebrow {
    color: #7fdcc0;
}

.testimonials .section-header h2 {
    color: #fff;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
}

.stars {
    color: #7fdcc0;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.testimonial-author p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* —— Contact —— */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.contact-form {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fafcf9;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
}

.form-group select {
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: menulist;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 143, 110, 0.15);
}

.submit-button {
    width: 100%;
    margin-top: 0.5rem;
}

.form-status {
    min-height: 1.25rem;
    margin: 0.35rem 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-status.success {
    color: var(--accent-deep);
}

.form-status.error {
    color: var(--danger);
}

.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-info a {
    color: var(--accent-deep);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.1rem;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.info-item p {
    color: var(--muted);
    font-size: 0.92rem;
}

.social-links h4 {
    margin-bottom: 0.75rem;
}

.socials,
.footer-socials {
    display: flex;
    gap: 0.55rem;
}

.social-icon,
.footer-socials a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-deep);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover,
.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* —— Footer —— */
.footer {
    background: #0c1712;
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 1.5rem;
}

.footer .logo {
    color: #fff;
    margin-bottom: 0.85rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p {
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.footer-section a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #7fdcc0;
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-body);
}

.newsletter-form button {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
}

/* —— Modal —— */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal[aria-hidden="false"],
.modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 14, 0.55);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    max-width: 560px;
    width: 100%;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow: auto;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* —— WhatsApp —— */
.floating-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 1500;
    transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.06);
}

/* —— Loading (enhanced.js) —— */
.loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: grid;
    place-items: center;
    transition: opacity 0.4s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--line);
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* —— Responsive —— */
@media (max-width: 960px) {
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        border-bottom: 1px solid var(--line);
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 0.2rem;
    }

    .nav-links .nav-cta {
        margin-top: 0.75rem;
        text-align: center;
        border-radius: 12px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 92svh;
        align-items: flex-end;
        padding-bottom: 3rem;
    }

    .brand-lockup {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .cta-button,
    .cta-button.secondary {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-media img { animation: none; }
}
