/* ============================================================
   MARRIED BY ALICE — Redesign V2
   Direction: Dark & Editorial (Soulsbys-inspired)
   Fonts: Cormorant Garamond (BERRINGER) + Playfair Display (MASCARPONE) + Nunito (futura-pt)
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
    /* Colours — exact Soulsbys palette */
    --deep:           #022020;   /* Dark teal — body bg, dark sections */
    --plum:           #012C2C;   /* Deeper teal — alternate dark sections */
    --coral:          #EA6852;   /* Exact Soulsbys coral — CTAs, accents, display headings */
    --coral-hover:    #C85540;   /* Darker coral on hover */
    --soulsby-plum:   #662E44;   /* Soulsbys body/secondary colour — used as accent */
    --cream:          #F5F0E8;   /* Warm cream — light sections */
    --ivory:          #EDE5D8;   /* Slightly deeper cream */
    --white:          #FFFFFF;

    /* Text */
    --text-on-dark:   #FFFFFF;             /* Pure white — as Soulsbys uses on dark */
    --text-muted:     rgba(255,255,255,0.62);  /* Matches Soulsbys muted text opacity */
    --text-dark:      #022020;
    --text-mid:       #5A3E30;

    /* Utility */
    --border-dark:    rgba(255, 255, 255, 0.12);
    --border-light:   #E0D5C8;
    --success-color:  #5A8A5A;
    --error-color:    #C44030;
    --shadow-sm:      0 2px 12px rgba(0, 0, 0, 0.25);
    --shadow-md:      0 6px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg:      0 16px 48px rgba(0, 0, 0, 0.4);
    --transition:     all 0.3s ease;

    /* Typography — matching Soulsbys font roles */
    --font-berringer:   'Cormorant Garamond', Georgia, serif;  /* BERRINGER equiv — headings, nav */
    --font-mascarpone:  'Playfair Display', Georgia, serif;    /* MASCARPONE equiv — display labels */
    --font-futura:      'Nunito', -apple-system, sans-serif;   /* futura-pt equiv — body, labels */

    /* Aliases */
    --font-display:   var(--font-mascarpone);
    --font-body:      var(--font-mascarpone);
}

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

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

body {
    font-family: var(--font-mascarpone);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--deep);
    text-transform: uppercase;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* === TYPOGRAPHY — Soulsbys system === */

/* MASCARPONE role: all headings */
h1, h2, h3, h4 {
    font-family: var(--font-mascarpone);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;   /* Soulsbys -0.48px at 16px */
    text-transform: uppercase;
}

/* MASCARPONE role: section label / display accent
   Soulsbys: uppercase, coral #EA6852, letter-spacing -0.48px, weight 400, Playfair Display */
.script-accent,
.script-accent-light {
    display: block;
    font-family: var(--font-mascarpone);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: -0.03em;   /* matches Soulsbys -0.48px at 16px */
    line-height: 1.4;
    margin-bottom: 0.4rem;
    text-align: inherit;
}

/* === BUTTONS — Soulsbys style ===
   Soulsbys: border-radius 300px (full pill), coral bg, white text,
   BERRINGER font weight 500, letter-spacing 0.32px, no border */
.cta-button {
    display: inline-block;
    padding: 13px 36px;
    background-color: var(--coral);
    color: var(--white);
    font-family: var(--font-mascarpone);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 0px solid transparent;
    border-radius: 300px;        /* Soulsbys pill shape */
    transition: var(--transition);
    min-height: 48px;
    line-height: 1;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
    background-color: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Outline pill for light sections */
.cta-outline {
    background-color: transparent;
    color: var(--coral);
    border: 1.5px solid var(--coral);
}

.cta-outline:hover,
.cta-outline:focus {
    background-color: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

/* Ghost pill for dark sections */
.cta-ghost {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cta-ghost:hover,
.cta-ghost:focus {
    background-color: var(--white);
    color: var(--deep);
    border-color: var(--white);
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(2, 32, 32, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.nav-brand a {
    font-family: var(--font-mascarpone);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0px #D4506A,
        3px 4px 0px rgba(180, 40, 70, 0.45);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background-color: var(--text-on-dark);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background-color: var(--deep);
    list-style: none;
    padding: 90px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-dark);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 0.4rem;
}

.nav-menu a {
    display: block;
    padding: 10px 12px;
    font-family: var(--font-mascarpone);    /* BERRINGER style */
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;               /* Soulsbys 0.48px ≈ 0.03em */
    text-transform: uppercase;
    color: var(--white);
    border-radius: 300px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--coral);
    background-color: transparent;
}

/* ============================================================
   HERO — dark, full bleed
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 28px 100px;
    position: relative;
    background: url('images/hero-photo.jpeg') center / cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

/* Dark overlay — teal tones matching Soulsbys */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(2, 32, 32, 0.70) 0%,
        rgba(2, 44, 44, 0.80) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-script {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--coral);
    line-height: 1.2;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
    line-height: 1.05;
    text-shadow:
        3px 4px 0px #D4506A,
        5px 7px 0px rgba(180, 40, 70, 0.35);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    color: rgba(240, 234, 224, 0.82);
    margin-bottom: 2.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-cta {
    background-color: transparent;
    border: 1.5px solid rgba(240, 234, 224, 0.6);
    color: var(--text-on-dark);
    letter-spacing: 0.14em;
}

.hero-cta:hover,
.hero-cta:focus {
    background-color: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   TAGLINE STRIP
   ============================================================ */
.tagline-strip {
    background-color: var(--coral);
    color: var(--white);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}

.tagline-inner {
    display: inline-flex;
    gap: 2.5rem;
    animation: marquee 32s linear infinite;
}

.tagline-inner span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.strip-dot {
    opacity: 0.5;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT — light section
   ============================================================ */
.about {
    padding: 110px 0;
    background-color: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1020px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 2px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    /* Warm, slightly muted image treatment */
    filter: sepia(0.08) contrast(1.05) brightness(0.97) saturate(0.92);
}

.about-text .script-accent {
    font-size: 1.7rem;
    margin-bottom: 0;
}

.about-text h2 {
    font-size: clamp(3.2rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--deep);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
}

.about-text p em {
    font-style: italic;
    color: var(--coral);
    font-family: var(--font-display);
    font-size: 1.12em;
}

.about-text .cta-button {
    margin-top: 1rem;
}

/* ============================================================
   SERVICES — dark section
   ============================================================ */
.services {
    padding: 110px 0;
    background-color: var(--deep);
}

.services .section-header h2 {
    color: var(--text-on-dark);
}

.services .section-subtitle {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;           /* hairline gap between cards */
    max-width: 1020px;
    margin: 0 auto;
    border: 1px solid var(--border-dark);
}

.service-card {
    padding: 2.5rem 2.75rem;
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--coral);
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 3px;
}

.service-card:last-child {
    border-bottom: none;
}

.service-card h3 {
    font-size: 1.45rem;
    color: var(--text-on-dark);
    margin-bottom: 0.65rem;
    font-weight: 400;
}

.service-card p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================================
   PULL QUOTE — coral section
   ============================================================ */
.pull-quote-section {
    background-color: var(--coral);
    padding: 90px 28px;
    text-align: center;
}

.pull-quote {
    font-family: var(--font-mascarpone);
    font-style: normal;            /* Soulsbys quotes are not italic */
    font-weight: 400;              /* Soulsbys BERRINGER quote weight */
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--white);
    max-width: 720px;
    margin: 0 auto 1rem;
    line-height: 1.8;              /* Soulsbys 28.8px / 16px = 1.8 */
    letter-spacing: normal;
}

.quote-mark {
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.35em;
    opacity: 0.55;
    font-style: normal;
}

.pull-cite {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ============================================================
   GALLERY — light section, warm image filters
   ============================================================ */
.gallery {
    padding: 110px 0;
    background-color: var(--ivory);
}

.gallery .section-header {
    text-align: center;
}

.gallery .section-header h2 {
    color: var(--deep);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 1150px;
    margin: 0 auto 2.5rem;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--deep);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Soulsbys-inspired warm moody filter */
    filter: sepia(0.18) contrast(1.08) brightness(0.94) saturate(0.88);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: sepia(0.05) contrast(1.05) brightness(0.98) saturate(1);
}

/* Instagram feed */
.instagram-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 1150px;
    margin: 0 auto 2.5rem;
}

.carousel-loading {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
    color: var(--text-mid);
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--border-light);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.instagram-post {
    overflow: hidden;
    background-color: var(--deep);
    transition: var(--transition);
}

.instagram-post:hover {
    box-shadow: var(--shadow-md);
}

.instagram-post img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: sepia(0.18) contrast(1.08) brightness(0.94) saturate(0.88);
    transition: transform 0.5s ease;
}

.instagram-post:hover img {
    transform: scale(1.04);
    filter: sepia(0.05) contrast(1.05) brightness(0.98) saturate(1);
}

.instagram-caption {
    padding: 1rem;
    background-color: var(--cream);
}

.instagram-caption p {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-follow {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.instagram-handle-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--coral);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.instagram-handle-link:hover,
.instagram-handle-link:focus {
    color: var(--deep);
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 36px;
    background-color: transparent;
    color: var(--coral);
    border: 1.5px solid var(--coral);
    border-radius: 300px;
    font-family: var(--font-mascarpone);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    min-height: 48px;
}

.instagram-button:hover,
.instagram-button:focus {
    background-color: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   CONTACT — dark section (plum)
   ============================================================ */
.contact {
    padding: 110px 0;
    background-color: var(--plum);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-intro .script-accent-light {
    font-size: 1.7rem;
    margin-bottom: 0;
}

.contact-intro h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--text-on-dark);
    margin: 0.2rem 0 1rem;
    font-weight: 400;
}

.contact-intro > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.contact-intro > p em {
    font-style: italic;
    color: var(--text-on-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.contact-item svg {
    color: var(--coral);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--coral);
}

.contact-item a:hover {
    color: var(--white);
}

/* Form */
.contact-form-wrap {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    padding: 2.5rem;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    margin-bottom: 0.5rem;
}

.required { color: var(--coral); }

.field-optional {
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-on-dark);
    font-family: var(--font-body);
    font-size: 0.97rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(240, 234, 224, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(201, 88, 64, 0.18);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e06050;
}

.error-message {
    display: block;
    font-size: 0.76rem;
    color: #e08070;
    margin-top: 0.35rem;
    min-height: 1.1em;
}

.form-status {
    padding: 1rem 1.25rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-status.success {
    background-color: rgba(90, 138, 90, 0.18);
    color: #8ecf8e;
    border: 1px solid rgba(90, 138, 90, 0.3);
}

.form-status.error {
    background-color: rgba(196, 64, 48, 0.18);
    color: #e09080;
    border: 1px solid rgba(196, 64, 48, 0.3);
}

.submit-button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-family: var(--font-mascarpone);
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.button-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner-svg {
    animation: spin 0.9s linear infinite;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--deep);
    color: rgba(240, 234, 224, 0.45);
    text-align: center;
    padding: 3rem 28px;
    border-top: 1px solid var(--border-dark);
}

.footer-brand {
    font-family: var(--font-mascarpone);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0px #D4506A,
        3px 4px 0px rgba(180, 40, 70, 0.45);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(240, 234, 224, 0.5);
}

.footer-copy {
    font-size: 0.76rem;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
}

/* ============================================================
   TABLET  ≥ 768px
   ============================================================ */
@media (min-width: 768px) {

    .nav-toggle { display: none; }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        border-left: none;
        display: flex;
        gap: 0.25rem;
    }

    .nav-menu li { margin-bottom: 0; }
    .nav-menu a { padding: 6px 12px; }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
    }

    .about-image { max-width: none; margin: 0; }

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

    /* Remove bottom border from last row on 2-col */
    .services-grid .service-card:nth-last-child(-n+2):nth-child(2n+1),
    .services-grid .service-card:last-child {
        border-bottom: none;
    }

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

    .instagram-carousel {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
        gap: 5rem;
    }
}

/* ============================================================
   DESKTOP  ≥ 1024px
   ============================================================ */
@media (min-width: 1024px) {

    .about-grid {
        grid-template-columns: 5fr 6fr;
        gap: 5.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .navbar, .cta-button, #contact-form,
    .instagram-carousel, .tagline-strip { display: none; }
    section { page-break-inside: avoid; }

    .services, .contact { background-color: white; color: black; }
    .services .section-header h2,
    .service-card h3,
    .service-card p,
    .contact-intro h2,
    .contact-intro > p { color: black; }
}
