/* ==========================================================================
   Hourglass Studio — Main Stylesheet
   All styles ported from reference HTML design. Do not edit hex values here;
   use the WordPress Customiser which overrides CSS variables via wp_head.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties (CSS Variables)
   -------------------------------------------------------------------------- */
:root {
    /* Brand colours */
    --gold:         #F7C200;
    --gold-dark:    #C49800;
    --gold-light:   #FDE87A;
    --teal:         #8BB8C0;
    --teal-dark:    #5A8E97;
    --teal-light:   #C8DFE3;
    --cream:        #FDFAF4;
    --white:        #FFFFFF;
    --dark:         #1A1A1A;
    --mid:          #555555;
    --light-border: rgba(247, 194, 0, 0.25);

    /* Breakpoints (reference only — use in media queries) */
    --bp-sm:  480px;
    --bp-md:  768px;
    --bp-lg:  1024px;
    --bp-xl:  1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--dark);
    background: var(--cream);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* --------------------------------------------------------------------------
   Scroll margin for fixed nav
   -------------------------------------------------------------------------- */
section[id] {
    scroll-margin-top: 112px;
}

/* --------------------------------------------------------------------------
   NAV — white/cream sticky
   -------------------------------------------------------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 4rem;
    background: rgba(253, 250, 244, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* When the_custom_logo() renders, it wraps in <a> */
.nav-logo a,
.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* Custom logo image from media library */
.custom-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.nav-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--dark);
    line-height: 1.1;
}

.nav-wordmark span {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 1px;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) {
    .nav-links a:hover {
        color: var(--gold-dark);
    }
}

.nav-links .nav-cta > a,
.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-weight: 500;
    min-height: 44px;
}

@media (hover: hover) {
    .nav-links .nav-cta > a:hover,
    .nav-links a.nav-cta:hover {
        background: var(--gold-dark);
        color: var(--dark);
    }
}

/* --------------------------------------------------------------------------
   Hamburger toggle button
   -------------------------------------------------------------------------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

/* Open state — bars morph to × */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Mobile navigation panel
   -------------------------------------------------------------------------- */
.nav-mobile-panel {
    display: none;
    width: 100%;
    background: rgba(253, 250, 244, 0.98);
    border-top: 1px solid var(--light-border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.nav-mobile-panel.is-open {
    max-height: 500px;
}

.nav-mobile-links {
    list-style: none;
    padding: 0.5rem 0 1rem;
}

.nav-mobile-links li a {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    padding: 1rem 2rem;
    min-height: 44px;
    transition: color 0.2s;
}

@media (hover: hover) {
    .nav-mobile-links li a:hover {
        color: var(--gold-dark);
    }
}

.nav-mobile-links .nav-cta a,
.nav-mobile-links a.nav-cta {
    display: block;
    margin: 0.5rem 2rem;
    padding: 0.85rem 1.25rem;
    background: var(--gold);
    color: var(--dark);
    font-weight: 500;
    border-radius: 2px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   HERO — teal-to-dark gradient background, centred CTA
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #4a8a94 0%,
        #3a7480 25%,
        #2a5a65 55%,
        #1a3540 80%,
        #0d1e25 100%
    );
    padding-top: 112px; /* account for fixed nav: 80px logo + 2×0.65rem padding */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(139, 184, 192, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(247, 194, 0, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 100% 50% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 2rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.hero-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.9rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    min-height: 44px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) {
    .btn-primary:hover {
        background: var(--gold-dark);
        transform: translateY(-1px);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.9rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.2s, color 0.2s;
    min-height: 44px;
}

@media (hover: hover) {
    .btn-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
    }
}

.btn-secondary-dark {
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(26, 26, 26, 0.3);
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.2s, color 0.2s;
    min-height: 44px;
}

@media (hover: hover) {
    .btn-secondary-dark:hover {
        border-color: var(--gold-dark);
        color: var(--gold-dark);
    }
}

/* --------------------------------------------------------------------------
   Section eyebrow / shared typography
   -------------------------------------------------------------------------- */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.section-body {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   ABOUT / INTRO
   -------------------------------------------------------------------------- */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 4rem;
    align-items: center;
    gap: 2rem;
}

.intro-image-wrap {
    position: relative;
    padding-right: 3rem;
}

.intro-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
}

.intro-img-accent {
    position: absolute;
    bottom: -1.5rem;
    right: 1.5rem;
    width: 45%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    border: 4px solid var(--cream);
}

.intro-gold-line {
    position: absolute;
    top: 2rem;
    left: -1rem;
    width: 4px;
    height: 60%;
    background: var(--gold);
    border-radius: 2px;
}

.intro-content {
    padding-left: 2rem;
}

.intro-note {
    display: flex;
    align-items: flex-start;
    background: var(--teal-light);
    border-left: 3px solid var(--teal-dark);
    padding: 0.9rem 1rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.5rem;
}

.intro-note-text {
    font-size: 0.82rem;
    color: var(--teal-dark);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */
.services {
    background: var(--dark);
    padding: 5rem 4rem;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.services-header .section-heading {
    color: var(--white);
    margin-bottom: 0;
}

.services-header .section-eyebrow-text {
    color: var(--gold);
}

.services-header .section-eyebrow-line {
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(247, 194, 0, 0.2);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, border-color 0.25s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .service-card:hover {
        background: rgba(247, 194, 0, 0.06);
        border-color: rgba(247, 194, 0, 0.4);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-rows {
    display: flex;
    flex-direction: column;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    gap: 0.5rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row-label {
    color: rgba(255, 255, 255, 0.65);
}

.price-row-value {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.price-row-badge {
    font-size: 0.65rem;
    font-family: 'Jost', sans-serif;
    background: rgba(247, 194, 0, 0.15);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    margin-left: 0.5rem;
}

.service-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------------------- */
.gallery {
    padding: 5rem 0;
}

.gallery-header {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 4rem;
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 4rem;
    scrollbar-width: none;
    cursor: grab;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.gallery-item {
    flex: 0 0 280px;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

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

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

    .gallery-item:hover .gallery-item-overlay {
        opacity: 1;
    }
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   STUDIO
   -------------------------------------------------------------------------- */
.studio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 4rem;
    gap: 4rem;
    align-items: center;
}

.studio-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.studio-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
}

.studio-img:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
}

/* --------------------------------------------------------------------------
   CTA / CONTACT BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
    background: var(--teal-light);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(90, 142, 151, 0.2);
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(90, 142, 151, 0.1);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
}

.cta-banner .section-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-banner .section-heading em {
    font-style: italic;
    color: var(--teal-dark);
}

.cta-body {
    font-size: 0.95rem;
    color: var(--teal-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark);
    text-decoration: none;
    min-height: 44px;
}

.cta-contact-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
    background: var(--dark);
    padding: 3rem 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    flex-shrink: 0;
}

.footer-logo span {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) {
    .footer-links a:hover {
        color: var(--gold);
    }
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Mobile overrides (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Nav — keep position:fixed, reduce padding to suit 80px logo */
    nav {
        padding: 0.5rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none; /* hidden on mobile — replaced by mobile panel */
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile-panel {
        display: block;
        position: fixed;
        top: 98px; /* 80px logo + 2×0.5rem padding + 2px border */
        left: 0;
        right: 0;
    }

    /* Hero — padding-top clears the fixed nav, then adds modest breathing room */
    .hero {
        padding: 5.5rem 1.5rem 3rem;
    }

    .hero-heading {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* About */
    .intro {
        grid-template-columns: 1fr;
        margin: 3rem auto;
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .intro-image-wrap {
        padding-right: 0;
        order: -1;
    }

    .intro-img-accent {
        display: none; /* too cramped on mobile */
    }

    .intro-gold-line {
        display: none;
    }

    .intro-content {
        padding-left: 0;
    }

    /* Services */
    .services {
        padding: 3rem 1.5rem;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

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

    /* Gallery */
    .gallery {
        padding: 3rem 0;
    }

    .gallery-header {
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .gallery-scroll {
        padding: 0 1.5rem;
    }

    .gallery-item {
        flex: 0 0 220px;
    }

    /* Studio */
    .studio {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .studio-imgs {
        order: 1; /* images below content */
        grid-template-columns: 1fr;
    }

    .studio-img:first-child {
        grid-row: auto;
        aspect-ratio: 1;
        height: auto;
    }

    .studio-img {
        aspect-ratio: 1;
    }

    /* CTA banner */
    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Small screens (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .hero-body {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Large screens (min-width: 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
    .studio-img:first-child {
        aspect-ratio: auto;
    }
}

/* --------------------------------------------------------------------------
   WordPress alignment helpers (for block editor content)
   -------------------------------------------------------------------------- */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: none;
}

.wp-block-image img {
    border-radius: 4px;
}
