/* ============================================
   Studio Punto Creativo — Styles
   Palette: Emerald #064e3b / Cream #f5f0e8
   Fonts: Cormorant Garamond + Inter
   ============================================ */

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

:root {
    --emerald: #064e3b;
    --emerald-dark: #043a2b;
    --emerald-light: #065f46;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald);
    color: var(--cream);
    padding: 8px 16px;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 4px;
}

.skip-link:focus {
    top: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 100;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: var(--font-display), serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--emerald);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-display), serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--emerald);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--emerald);
}

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

.nav-cta {
    font-size: 0.8125rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--emerald);
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

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

.nav-cta:hover {
    background: var(--emerald-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--emerald);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-height);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(6, 78, 59, 0.04) 0%, transparent 70%);
}

.hero-bg-line {
    position: absolute;
    top: var(--nav-height);
    left: 8%;
    width: 1px;
    height: calc(100vh - var(--nav-height));
    background: linear-gradient(to bottom, transparent, rgba(6, 78, 59, 0.12), transparent);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 20px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display), serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-accent {
    font-style: italic;
    color: var(--emerald);
}

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 420px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--font-display), serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--emerald);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.12);
}

.hero-image-frame img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15);
    border: 4px solid var(--cream);
}

.hero-image-accent img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-dark {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}

.btn-dark:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 78, 59, 0.25);
}

.btn-outline-dark {
    background: transparent;
    color: var(--emerald);
    border-color: var(--emerald);
}

.btn-outline-dark:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--emerald);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--emerald);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========== SECTION COMMON ========== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--emerald);
    margin-bottom: 40px;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    background: var(--cream-light);
}

.services-header {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(6, 78, 59, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.service-card {
    background: var(--cream-light);
    padding: 40px 32px;
    transition: background 0.3s ease;
}

.service-card:hover {
    background: var(--white);
}

.service-num {
    font-family: var(--font-display), serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--emerald);
    opacity: 0.5;
    margin-bottom: 16px;
    display: block;
}

.service-name {
    font-family: var(--font-display), serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-col img:first-child {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-aside {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 200px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.12);
    border: 4px solid var(--cream);
}

.about-image-aside img {
    width: 100%;
    height: 267px;
    object-fit: cover;
}

.about-content-col {
    padding-top: 20px;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 78, 59, 0.2);
    border-radius: 50%;
    color: var(--emerald);
    flex-shrink: 0;
}

.value-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 120px 0;
    background: var(--cream-light);
}

.gallery-header {
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.gallery-overlay span {
    font-family: var(--font-display), serif;
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(6, 78, 59, 0.4);
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    min-height: 560px;
}

.gallery-item--tall img {
    min-height: 560px;
}

.gallery-item:not(.gallery-item--tall) {
    grid-column: span 4;
}

.gallery-item:not(.gallery-item--tall) img {
    height: 280px;
}

/* ========== CTA ========== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0.82);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: rgba(245, 240, 232, 0.7);
}

.cta-title {
    color: var(--white);
    margin-bottom: 24px;
}

.cta-body {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-detail-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--emerald);
    border-bottom: 1px solid rgba(6, 78, 59, 0.2);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.contact-detail-link:hover {
    border-color: var(--emerald);
}

.contact-map {
    margin-top: 32px;
    border-radius: 4px;
    overflow: hidden;
}

.contact-form-col {
    background: var(--white);
    border-radius: 4px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(6, 78, 59, 0.06);
}

.contact-form-title {
    font-family: var(--font-display), serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(6, 78, 59, 0.06);
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--emerald);
}

.form-success svg {
    flex-shrink: 0;
    color: var(--emerald);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--emerald);
    color: var(--cream);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}

.footer-logo-mark {
    font-family: var(--font-display), serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
}

.footer-logo-text {
    display: block;
    font-family: var(--font-display), serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    margin-top: 4px;
}

.footer-tagline {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-contact a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.45);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-up {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal-left {
        opacity: 0;
        transform: translateX(-24px);
    }
    .reveal-right {
        opacity: 0;
        transform: translateX(24px);
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: none;
    }
}

/* ========== MOBILE MENU ========== */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-eyebrow {
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-image-frame {
        max-width: 400px;
    }

    .hero-image-frame img {
        height: 500px;
    }

    .hero-image-accent {
        width: 180px;
        left: auto;
        right: 20px;
        bottom: -20px;
    }

    .hero-image-accent img {
        height: 240px;
    }

    .hero-bg-line {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-aside {
        width: 160px;
        right: -16px;
        bottom: -24px;
    }

    .about-image-aside img {
        height: 213px;
    }

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

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 360px;
    }

    .gallery-item--tall img {
        min-height: 360px;
    }

    .gallery-item:not(.gallery-item--tall) {
        grid-column: span 1;
    }

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

    .contact-form-col {
        padding: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--tall {
        grid-column: 1;
    }

    .gallery-item:not(.gallery-item--tall) {
        grid-column: 1;
    }

    .hero-image-frame {
        max-width: 100%;
    }

    .hero-image-frame img {
        height: 400px;
    }

    .hero-image-accent {
        display: none;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-col {
        padding: 24px;
    }
}
