/* Tone Interiors — Brand-compliant stylesheet */
/* Per Brand Guidelines PDF (signed off by Manong) + cross-sector positioning brief */
/* Last rebuilt: 28 April 2026 */

:root {
    /* ─── Tone palette (per Brand Guidelines) ─── */
    --stone:     #F2F0ED;     /* Backgrounds with bodies of text, especially print */
    --ivory:     #E8E2D8;     /* DOMINANT background — light, fresh, airy */
    --charcoal:  #2C2D2C;     /* Primary text and dark surfaces */
    --forest:    #444C42;     /* Softer alternative for dark colour use */
    --pistachio: #7A8178;     /* Softer alternative for backgrounds */
    --coffee:    #7D6C58;     /* Accent and decorative — sparingly */

    --line:        rgba(44,45,44,0.10);
    --line-strong: rgba(44,45,44,0.22);

    /* Map onto LaunchPad-derived component variables for backwards compat */
    --colour-primary:        var(--charcoal);
    --colour-secondary:      var(--coffee);
    --colour-accent:         var(--coffee);
    --colour-success:        #5A6F4F;
    --colour-error:          #7c2d2d;
    --colour-neutral-dark:   var(--charcoal);
    --colour-neutral-light:  var(--stone);
    --colour-white:          var(--ivory);

    /* ─── Typography ─── */
    /* Per Manong directive (Session 198, 7 May 2026): revert to ORIGINAL       */
    /* Brand Guidelines (signed-off PDF). Two-typeface system:                  */
    /*   Display & Title — Span Thin (Adobe Typekit, weight 200)                */
    /*   Body            — Montserrat Light (Google Fonts, weight 300)          */
    /*   Highlights      — Montserrat SemiBold (Google Fonts, weight 600,       */
    /*                     occasional, never on titles)                         */
    /* Supersedes the Session 188 "Span Thin universal" amendment (which was    */
    /* itself a workaround for the unsigned Span Thin licence at the time).     */
    /* Span Thin loaded via Adobe Typekit: use.typekit.net/fbt7wso.css.         */
    /* Montserrat loaded via Google Fonts in each page's <head>.                */
    --font-display: 'span', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-size-base: 16px;
    --font-size-h1: 3rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-small: 0.875rem;
    --line-height-tight: 1.25;
    --line-height-normal: 1.65;
    /* Display weights (Span Thin only ships in 200). */
    --font-weight-light:    200;
    --font-weight-regular:  200;
    --font-weight-bold:     200;
    /* Body weights (Montserrat). */
    --font-weight-body:     300;   /* Montserrat Light — body default */
    --font-weight-semibold: 600;   /* Montserrat SemiBold — highlights only */

    /* ─── Spacing ─── */
    --spacing-xs:  0.25rem;
    --spacing-sm:  0.5rem;
    --spacing-md:  1rem;
    --spacing-lg:  1.5rem;
    --spacing-xl:  2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* ─── Slightly rounded corners (per Brand Guidelines) ─── */
    /* Box shapes: very slightly rounded. Never pill, never sharp. */
    --border-radius-sm: 2px;
    --border-radius-md: 3px;
    --border-radius-lg: 4px;
    --border-width: 1px;

    --transition-fast:   150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow:   500ms ease-in-out;

    --shadow-sm: 0 1px 2px rgba(44,45,44,0.05);
    --shadow-md: 0 2px 12px rgba(44,45,44,0.08);
    --shadow-lg: 0 4px 24px rgba(44,45,44,0.10);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size-base); scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-body);
    color: var(--charcoal);
    line-height: var(--line-height-normal);
    letter-spacing: 0.01em;
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Defensive: form controls don't inherit body font in any browser. Force Montserrat. */
input, select, textarea, button, optgroup, fieldset, legend {
    font-family: var(--font-body);
    font-weight: var(--font-weight-body);
}

img { max-width: 100%; height: auto; display: block; }
a {
    color: var(--charcoal); text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
a:hover { color: var(--coffee); border-bottom-color: var(--coffee); }

/* ─── Skip Link ─────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--charcoal); color: var(--ivory);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    z-index: 10000; font-weight: var(--font-weight-semibold);
    letter-spacing: 0.04em;
}
.skip-link:focus { top: var(--spacing-sm); }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-weight-light);   /* CANONICAL — never bold on titles */
    color: var(--charcoal);
    line-height: var(--line-height-tight);
    letter-spacing: 0.005em;
    margin-bottom: var(--spacing-md);
}
h1 { font-size: 2rem;     font-weight: 300; }
h2 { font-size: 1.5rem;   font-weight: 300; }
h3 { font-size: 1.25rem;  font-weight: 300; }
h4 { font-size: 1.1rem;   font-weight: 300; letter-spacing: 0.04em; }
h5 { font-size: 0.95rem;  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
h6 { font-size: 0.85rem;  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pistachio); }

p { margin-bottom: var(--spacing-md); font-weight: var(--font-weight-body); }

@media (min-width: 768px) {
    h1 { font-size: var(--font-size-h1); }
    h2 { font-size: var(--font-size-h2); }
    h3 { font-size: var(--font-size-h3); }
}

/* ─── Layout ────────────────────────────────────────────── */
.container {
    width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 0 var(--spacing-md);
}
@media (min-width: 768px) {
    .container { padding: 0 var(--spacing-xl); }
}

.section { padding: var(--spacing-3xl) 0; }
.section--alt     { background: var(--stone); }
.section--dark    { background: var(--charcoal); color: var(--ivory); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }
.section--dark a  { color: var(--ivory); }
.section--dark a:hover { color: var(--coffee); border-bottom-color: var(--coffee); }
.section--primary { background: var(--forest); color: var(--ivory); }
.section--primary h1, .section--primary h2, .section--primary h3 { color: var(--ivory); }

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

.grid { display: grid; gap: var(--spacing-xl); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Navigation ────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex; justify-content: space-between; align-items: center;
    transition: box-shadow var(--transition-normal), background var(--transition-normal);
}
.nav--scrolled { box-shadow: var(--shadow-md); background: var(--ivory); }

/* Wix-style nav: links left, logo right (flex order swap) */
.nav__logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: var(--font-weight-light);
    color: var(--charcoal);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: none;
    line-height: 1;
    order: 2;
}
.nav__logo:hover { border-bottom: none; }
.nav__logo img { height: 80px; width: auto; display: block; }
.nav__logo span { color: var(--coffee); font-weight: var(--font-weight-semibold); }

.nav__links {
    display: none; list-style: none; gap: var(--spacing-md);
    order: 1;
}
.nav__links a {
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast), background var(--transition-fast);
    border-bottom: none;
    background: transparent;
    padding: 0.5rem 1.1rem;
    border-radius: 3px;
}
.nav__links a:hover {
    color: var(--charcoal);
    background: rgba(232,226,216,0.55);
    border-bottom: none;
}
.nav__links a[aria-current="page"] {
    color: var(--charcoal);
    background: var(--stone);
    border-bottom: none;
}
.nav__links a[aria-current="page"]:hover {
    background: var(--stone);
}

@media (min-width: 768px) {
    .nav__links { display: flex; }
    .nav__toggle { display: none; }
}

.nav__toggle {
    background: none; border: none; font-size: 1.4rem; cursor: pointer;
    color: var(--charcoal);
}

.nav__links--open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
    margin-top: 64px;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--ivory);
    color: var(--charcoal);
    text-align: center;
    min-height: 60vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
}

/* Hero text inherits colour from the section so inline-styled dark heroes,
   image-backed heroes, and default Ivory heroes all flow correctly */
.hero h1 {
    color: inherit;
    font-size: 2.4rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.005em;
    max-width: 880px;
    margin-bottom: var(--spacing-lg);
    position: relative; z-index: 3;
}
.hero p {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.92;
    max-width: 640px;
    margin: 0 auto var(--spacing-xl);
    font-weight: var(--font-weight-light);
    position: relative; z-index: 3;
}
.hero .btn, .hero a, .hero h2, .hero h3 { position: relative; z-index: 3; }

@media (min-width: 768px) {
    .hero { padding: 6rem var(--spacing-xl); }
    .hero h1 { font-size: 3.4rem; }
    .hero p { font-size: 1.2rem; }
}

/* Image-backed hero — Sophie Paterson airy treatment.
   Gentle brightness lift on the photo, soft Ivory tint instead of dark scrim,
   Ivory text with strong charcoal-halo text-shadow for legibility on any region. */
.hero:has(> img),
.hero:has(> video),
.hero--image {
    color: var(--ivory);
    background: var(--ivory);
}
.hero:has(> img) > img,
.hero:has(> video) > video,
.hero--image > img {
    filter: brightness(1.05) saturate(0.92);
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
/* Respect reduced-motion preference: pause hero videos for users who set it */
@media (prefers-reduced-motion: reduce) {
    .hero > video, .project-hero > video, .sector-hero > video {
        animation: none !important;
    }
}
.hero:has(> img) h1,
.hero:has(> img) h2,
.hero:has(> img) h3,
.hero:has(> img) p,
.hero:has(> video) h1,
.hero:has(> video) h2,
.hero:has(> video) h3,
.hero:has(> video) p,
.hero--image h1,
.hero--image h2,
.hero--image h3,
.hero--image p {
    color: var(--ivory);
    text-shadow: 0 1px 2px rgba(44,45,44,0.55), 0 2px 18px rgba(44,45,44,0.45);
}
.hero:has(> img) p,
.hero:has(> video) p,
.hero--image p {
    opacity: 0.96;
}
/* Soft Ivory tint — lifts the photo, reads airy. Bottom-weighted so text
   at lower thirds gains a touch more contrast without darkening the top. */
.hero:has(> img)::after,
.hero:has(> video)::after,
.hero--image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(232,226,216,0.06) 0%,
        rgba(232,226,216,0.04) 40%,
        rgba(44,45,44,0.20) 100%);
    z-index: 2;
    pointer-events: none;
}
/* Image-backed hero buttons: Ivory outline reads against dark scrim */
.hero:has(> img) .btn--primary,
.hero:has(> video) .btn--primary,
.hero--image .btn--primary {
    background: var(--ivory);
    color: var(--charcoal);
    border-color: var(--ivory);
}
.hero:has(> img) .btn--primary:hover,
.hero:has(> video) .btn--primary:hover,
.hero--image .btn--primary:hover {
    background: var(--coffee);
    color: var(--ivory);
    border-color: var(--coffee);
}
.hero:has(> img) .btn--outline,
.hero:has(> video) .btn--outline,
.hero--image .btn--outline {
    color: var(--ivory);
    border-color: var(--ivory);
    background: transparent;
}
.hero:has(> img) .btn--outline:hover,
.hero:has(> video) .btn--outline:hover,
.hero--image .btn--outline:hover {
    background: var(--ivory);
    color: var(--charcoal);
}
/* Make sure the image stays below scrim and content */
.hero > img, .hero > video { z-index: 1; }

/* ─── Hero slider — Phase F (six-video fade-cycle) ──────── */
.hero--slider .hero-slides {
    position: absolute; inset: 0;
    z-index: 1;
}
.hero--slider .hero-slide {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    filter: brightness(1.05) saturate(0.92);
}
.hero--slider .hero-slide.active {
    opacity: 1;
    animation: hero-kenburns 9s ease-out forwards;
}
@keyframes hero-kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
    .hero--slider .hero-slide { transition: none; }
    .hero--slider .hero-slide.active { animation: none; }
}
/* Phase F follow-on: when slides are <video>, disable Ken Burns scale so the
   video's own motion plays cleanly. Image slides still get Ken Burns. */
.hero--slider video.hero-slide.active {
    animation: none !important;
    transform: none !important;
}
.hero--slider video.hero-slide {
    /* Inherit hero-slide cover/object-fit + opacity transition; brightness lift
       is handled by the existing .hero--slider .hero-slide rule above. */
}
/* Soft Ivory tint over slider (replaces single-video scrim) */
.hero--slider::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(232,226,216,0.06) 0%,
        rgba(232,226,216,0.04) 40%,
        rgba(44,45,44,0.20) 100%);
    z-index: 2;
    pointer-events: none;
}
/* Hero text on slider gets the same legibility treatment as image-backed hero */
.hero--slider .hero-content h1,
.hero--slider .hero-content p {
    color: var(--ivory);
    text-shadow: 0 1px 2px rgba(44,45,44,0.55), 0 2px 18px rgba(44,45,44,0.45);
}
.hero--slider .btn--primary {
    background: var(--ivory);
    color: var(--charcoal);
    border-color: var(--ivory);
}
.hero--slider .btn--primary:hover {
    background: var(--coffee);
    color: var(--ivory);
    border-color: var(--coffee);
}
.hero--slider .btn--outline {
    color: var(--ivory);
    border-color: var(--ivory);
    background: transparent;
}
.hero--slider .btn--outline:hover {
    background: var(--ivory);
    color: var(--charcoal);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center; cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid var(--charcoal);
    text-decoration: none;
}
.btn:hover { border-bottom-color: var(--charcoal); }
.btn--primary {
    background: var(--charcoal); color: var(--ivory);
    border-color: var(--charcoal);
}
.btn--primary:hover {
    background: var(--coffee); color: var(--ivory);
    border-color: var(--coffee);
}
.btn--outline {
    background: transparent; color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn--outline:hover {
    background: var(--charcoal); color: var(--ivory);
    border-color: var(--charcoal);
}
.btn--secondary {
    background: var(--coffee); color: var(--ivory);
    border-color: var(--coffee);
}
.btn--secondary:hover {
    background: var(--charcoal); border-color: var(--charcoal);
}

/* On dark sections, invert outline styling */
.section--dark .btn--outline,
.cta-section .btn--outline,
.hero--dark .btn--outline {
    color: var(--ivory); border-color: var(--ivory);
}
.section--dark .btn--outline:hover,
.cta-section .btn--outline:hover,
.hero--dark .btn--outline:hover {
    background: var(--ivory); color: var(--charcoal);
}

/* ─── Cards ─────────────────────────────────────────────── */
.card {
    background: var(--stone);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}
.card__icon {
    font-size: 2rem; margin-bottom: var(--spacing-md);
    color: var(--coffee);
}
.card h3 { margin-bottom: var(--spacing-sm); font-weight: var(--font-weight-light); }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial {
    background: var(--stone);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    position: relative;
}
.testimonial::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--coffee);
    opacity: 0.25;
    position: absolute; top: 0.4rem; left: 1rem;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial__text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-weight: var(--font-weight-light);
    color: var(--forest);
}
.testimonial__author {
    font-weight: var(--font-weight-semibold);
    color: var(--charcoal);
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

/* ─── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
    background: var(--stone);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--spacing-xl) 0;
    text-align: center;
}
.trust-bar__items {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--spacing-2xl);
}
.trust-bar__item {
    display: flex; flex-direction: column; align-items: center;
    gap: var(--spacing-xs);
}
.trust-bar__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: var(--font-weight-light);
    color: var(--charcoal);
    letter-spacing: 0.005em;
}
.trust-bar__label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pistachio);
    font-weight: var(--font-weight-semibold);
}

/* ─── CTA Section ───────────────────────────────────────── */
.cta-section {
    background: var(--charcoal);
    color: var(--ivory);
    padding: var(--spacing-3xl) var(--spacing-xl);
    text-align: center;
}
.cta-section h2 {
    color: var(--ivory);
    font-weight: var(--font-weight-light);
    margin-bottom: var(--spacing-md);
}
.cta-section p {
    max-width: 640px;
    margin: 0 auto var(--spacing-xl);
    color: var(--ivory); opacity: 0.85;
    font-size: 1.05rem;
    font-weight: var(--font-weight-light);
}

/* ─── Gallery Grid ──────────────────────────────────────── */
.gallery-grid {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-grid__item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--stone);
    display: flex; align-items: center; justify-content: center;
    color: var(--charcoal);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.04em;
    transition: transform var(--transition-normal);
}
.gallery-grid__item:hover { transform: translateY(-1px); }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Contact Form ──────────────────────────────────────── */
.form { max-width: 640px; }
.form__group { margin-bottom: var(--spacing-lg); }
.form__label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-semibold);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pistachio);
}
/* Session 198 — form-input backgrounds switched from --stone to --pistachio
 * per Manong's directive. Pistachio + ivory pairing matches the established
 * awards-strip pattern on index.html (background: #7A8178, color: #E8E2D8).
 * On focus, the background flips to --ivory and text goes to --charcoal for
 * a high-contrast typing experience. All values from the brand palette only —
 * no tints, no mixes, no invented colours. */
.form__input, .form__textarea {
    width: 100%;
    padding: 0.85rem var(--spacing-md);
    border: var(--border-width) solid var(--line-strong);
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--font-weight-light);
    color: var(--ivory);
    background: var(--pistachio);
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.form__input::placeholder, .form__textarea::placeholder {
    color: var(--ivory);
    opacity: 0.7;
}
.form__input:focus, .form__textarea:focus {
    outline: none;
    border-color: var(--coffee);
    background: var(--ivory);
    color: var(--charcoal);
}
.form__textarea { min-height: 140px; resize: vertical; }

/* ─── Blog List ─────────────────────────────────────────── */
.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--stone);
    border: 1px solid var(--line);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.blog-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    color: inherit;
}
.blog-card__body { padding: var(--spacing-lg); }
.blog-card__tag {
    display: inline-block;
    background: var(--ivory);
    color: var(--coffee);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--border-radius-md);
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}
.blog-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}
.blog-card__excerpt {
    color: var(--forest);
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: var(--font-weight-light);
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
}
.footer__grid {
    display: grid;
    gap: var(--spacing-xl);
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer h4 {
    color: var(--ivory);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.06em;
    margin-bottom: var(--spacing-md);
}
.footer a { color: var(--ivory); opacity: 0.8; border-bottom-color: transparent; }
.footer a:hover { color: var(--ivory); opacity: 1; border-bottom-color: var(--coffee); }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: var(--spacing-sm); }
.footer__bottom {
    border-top: 1px solid rgba(232,226,216,0.15);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    text-align: center;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-light);
    opacity: 0.65;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
}

/* ─── Reveal Animation ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── Utilities ─────────────────────────────────────────── */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pistachio);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
}
.lede {
    font-size: 1.15rem;
    color: var(--forest);
    font-weight: var(--font-weight-light);
    max-width: 720px;
    line-height: 1.7;
}

/* ─── Multi-suite project page sections (Session 198, 7 May 2026) ──────────
 * Used on project pages whose underlying portfolio_groups row has child
 * sub-groups (e.g. Funky Monk Boutique Hotel → Suite 1, Suite 2, ...).
 * The sync script (tools/tone-gallery-sync.js) emits one <section class="suite">
 * per child, each with an <h2 class="suite-label"> heading and its own .collage.
 * Matches the live Wix toneinteriors.co.uk/funky-monk-boutique-hotel layout. */
section.suite {
    display: block;
    max-width: 1500px;
    margin: 0 auto;
}
.suite-label {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--charcoal);
    text-align: center;
    margin: 4rem 0 1.5rem;
    letter-spacing: 0.005em;
}
section.suite .collage {
    /* Sit a touch tighter under its label than the default .collage spacing
     * (which assumes a single collage per page with generous 4rem top margin). */
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}
