/*
Theme Name: Wedding Piano Player V2
Theme URI: https://weddingpianoplayer.co.uk
Description: An editorial luxury WordPress theme for Jools Scott — wedding pianist, composer and musical director.
Version: 2.3.0
Author: Jools Scott
Text Domain: wedding-piano-v2
*/

:root {
    --ink: #171713;
    --ink-soft: #25251f;
    --paper: #f3efe7;
    --paper-deep: #e8e0d4;
    --white: #fffdf8;
    --brass: #a98555;
    --brass-light: #c7a778;
    --sage: #5e6253;
    --line: rgba(23, 23, 19, 0.16);
    --display: 'Newsreader', Georgia, serif;
    --body: 'Manrope', sans-serif;
    --page: min(100% - 3rem, 88rem);
    --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.wpp-v2 {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.wpp-menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--brass); color: var(--white); }

h1, h2, h3, h4, h5, h6,
.font-display {
    font-family: var(--display) !important;
    font-optical-sizing: auto;
    font-weight: 500 !important;
    letter-spacing: -.018em;
}

.font-body { font-family: var(--body) !important; }
.bg-midnight { background-color: var(--ink) !important; }
.bg-ivory { background-color: var(--paper) !important; }
.bg-champagne { background-color: var(--brass) !important; }
.text-midnight { color: var(--ink) !important; }
.text-champagne { color: var(--brass) !important; }
.text-ivory { color: var(--paper) !important; }
.border-champagne { border-color: var(--brass) !important; }
.hover\:text-champagne:hover { color: var(--brass) !important; }
.hover\:border-champagne:hover { border-color: var(--brass) !important; }
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.wpp-skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 999;
    padding: .75rem 1rem;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-200%);
}
.wpp-skip-link:focus { transform: translateY(0); }

/* Header */
.wpp-site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.18);
    transition: color .35s ease, background-color .35s ease, border-color .35s ease, transform .35s ease;
}
.wpp-site-header.is-scrolled,
body:not(.home) .wpp-site-header {
    color: var(--ink);
    background: rgba(243,239,231,.94);
    border-color: var(--line);
    backdrop-filter: blur(16px);
}
.admin-bar .wpp-site-header { top: 32px; }
.wpp-header-inner {
    width: var(--page);
    height: 6rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wpp-wordmark {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    min-width: 10.5rem;
}
.wpp-wordmark-name {
    font-family: var(--display);
    font-optical-sizing: auto;
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: .01em;
}
.wpp-wordmark-role {
    margin-top: .55rem;
    color: var(--brass-light);
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.wpp-desktop-nav { display: flex; align-items: center; gap: 2.5rem; }
.wpp-nav-list { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.wpp-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 1rem 0;
    color: inherit;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.wpp-nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: .65rem;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}
.wpp-nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.wpp-header-enquire {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    padding: .88rem 1.1rem;
    border: 1px solid currentColor;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease;
}
.wpp-header-enquire:hover { background: var(--white); color: var(--ink); }
.is-scrolled .wpp-header-enquire:hover,
body:not(.home) .wpp-header-enquire:hover { background: var(--ink); color: var(--white); }
.wpp-menu-toggle { display: none; color: inherit; background: none; border: 0; cursor: pointer; }

.wpp-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, .75rem);
    transition: .3s ease;
    pointer-events: none;
}
.group:hover > .wpp-dropdown,
.group:focus-within > .wpp-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.wpp-dropdown ul { background: var(--white) !important; border: 1px solid var(--line) !important; box-shadow: 0 1rem 3rem rgba(23,23,19,.12) !important; }
.wpp-dropdown a { color: var(--ink) !important; font-family: var(--body); }

/* Mobile navigation */
.wpp-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 109;
    opacity: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(3px);
    transition: opacity .4s ease;
}
.wpp-mobile-backdrop.is-open { opacity: 1; }
.wpp-mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 110;
    width: min(92vw, 29rem);
    display: flex;
    flex-direction: column;
    padding: max(1.5rem, env(safe-area-inset-top)) 1.5rem max(1.5rem, env(safe-area-inset-bottom));
    color: var(--paper);
    background: var(--ink);
    transform: translateX(102%);
    transition: transform .6s var(--ease);
    overflow-y: auto;
}
.wpp-mobile-menu.is-open { transform: translateX(0); }
.wpp-mobile-menu-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.wpp-mobile-index { color: var(--brass-light); font-size: .62rem; letter-spacing: .24em; }
.wpp-menu-close { padding: .4rem 0 .4rem .75rem; color: var(--paper); background: none; border: 0; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }
.wpp-menu-close span { margin-left: .5rem; font-size: 1.2rem; }
.wpp-mobile-nav { flex: 1; display: flex; align-items: center; padding: 2rem 0; }
.wpp-mobile-nav ul { width: 100%; margin: 0; padding: 0; list-style: none; }
.wpp-mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.13) !important; }
.wpp-mobile-nav > ul > li a { color: var(--paper) !important; }
.wpp-mobile-nav > ul > li > div > a,
.wpp-mobile-nav > ul > li > a {
    display: block;
    padding: 1rem 0 !important;
    font-family: var(--display);
    font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
    font-weight: 400 !important;
    letter-spacing: -.02em !important;
    line-height: 1.15;
    text-transform: none !important;
}
.wpp-mobile-nav button { color: var(--brass-light) !important; background: transparent; border: 0; }
.wpp-submenu-toggle .material-symbols-outlined { transition: transform .3s ease; }
.wpp-submenu-toggle[aria-expanded='true'] .material-symbols-outlined { transform: rotate(180deg); }
.wpp-mobile-submenu { max-height: 0; margin: 0; padding: 0; overflow: hidden; list-style: none; transition: max-height .4s ease; }
.wpp-mobile-submenu[hidden] { display: block; }
.wpp-mobile-submenu.open { max-height: 36rem; padding-bottom: .75rem; }
.wpp-mobile-submenu a { padding: .5rem 0 .5rem 1rem !important; color: rgba(255,255,255,.6) !important; }
.wpp-mobile-menu-footer { padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.15); }
.wpp-mobile-menu-footer p { margin: 0 0 1rem; color: rgba(255,255,255,.5); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; }

/* Shared buttons and type */
.wpp-btn {
    min-height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: .8rem 1.15rem;
    border: 1px solid transparent;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}
.wpp-btn:hover { transform: translateY(-2px); }
.wpp-btn-brass { color: var(--white); background: var(--brass); }
.wpp-btn-brass:hover { background: #927145; }
.wpp-btn-light { color: var(--ink); background: var(--paper); }
.wpp-btn-outline-light { color: var(--paper); border-color: rgba(255,255,255,.5); }
.wpp-btn-outline-light:hover { color: var(--ink); background: var(--paper); }
.wpp-btn-primary,
.wpp-btn-outline-dark,
.wpp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .9rem 1.6rem;
    border: 1px solid var(--brass);
    border-radius: 0;
    font-family: var(--body);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: .3s ease;
}
.wpp-btn-primary { color: var(--white); background: var(--brass); }
.wpp-btn-outline-dark { color: var(--ink); background: transparent; border-color: var(--ink); }
.wpp-btn-outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); }
.wpp-btn-primary:hover { background: #927145; transform: translateY(-2px); }
.wpp-btn-outline-dark:hover { color: var(--white); background: var(--ink); }
.v2-eyebrow {
    margin: 0;
    color: var(--brass);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .23em;
    line-height: 1.4;
    text-transform: uppercase;
}
.v2-section { position: relative; padding: clamp(6rem, 11vw, 10rem) max(1.5rem, calc((100vw - 88rem) / 2)); }
.v2-section h2,
.v2-closing h2 {
    margin: 1.15rem 0 0;
    font-family: var(--display);
    font-size: clamp(3.1rem, 7.3vw, 7rem);
    font-optical-sizing: auto;
    font-weight: 500;
    letter-spacing: -.032em;
    line-height: .94;
}
.v2-section h2 em,
.v2-closing h2 em,
.v2-hero h1 em {
    color: var(--brass-light);
    font-weight: 400;
}
.v2-reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay: calc(var(--reveal-order, 0) * 70ms);
}
.v2-reveal.is-visible { opacity: 1; transform: none; }

/* Hero */
.v2-hero {
    min-height: max(47rem, 100svh);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, .98fr);
    color: var(--white);
    background: var(--ink);
}
.v2-hero-copy {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 8rem max(2.5rem, calc((100vw - 88rem) / 2)) 3rem;
}
.v2-hero-copy::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .16;
    pointer-events: none;
    background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.22) 25%);
}
.v2-hero-kicker { position: relative; display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }
.v2-hero-body { position: relative; align-self: center; padding: 3rem 0; }
.v2-hero h1 {
    max-width: 50rem;
    margin: 1.5rem 0 2rem;
    font-family: var(--display);
    font-size: clamp(4.1rem, 7.1vw, 7.35rem);
    font-optical-sizing: auto;
    font-weight: 500;
    letter-spacing: -.038em;
    line-height: .88;
}
.v2-hero-service {
    display: block;
    margin-bottom: 1.3rem;
    color: var(--brass-light);
    font-family: var(--body);
    font-size: .65rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .23em;
    line-height: 1.4;
    text-transform: uppercase;
}
.v2-hero-title { display: block; }
.v2-hero-intro { max-width: 34rem; margin: 0; color: rgba(255,255,255,.72); font-family: var(--display); font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.45; }
.v2-hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.v2-text-link { display: inline-flex; gap: 1rem; align-items: center; font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.v2-text-link span { color: var(--brass-light); }
.v2-hero-note { position: relative; max-width: 31rem; display: flex; gap: 1rem; align-items: flex-start; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.58); }
.v2-hero-note p { margin: 0; font-size: .72rem; line-height: 1.7; }
.v2-hero-note strong { color: var(--white); font-weight: 500; }
.v2-hero-note-mark { color: var(--brass-light); font-family: serif; font-size: 1.25rem; }
.v2-hero-visual { position: relative; min-height: 100%; overflow: hidden; }
.v2-hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero-visual-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,23,19,.28), transparent 45%), linear-gradient(0deg, rgba(23,23,19,.28), transparent 45%); }
.v2-vertical-caption { position: absolute; top: 50%; right: 1.5rem; margin: 0; color: rgba(255,255,255,.7); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; transform: translateY(-50%); }
.v2-hero-monogram,
.v2-closing-orbit { position: absolute; right: 2rem; bottom: 2rem; width: 6rem; aspect-ratio: 1; display: flex; justify-content: center; align-items: center; gap: .5rem; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-family: var(--display); }
.v2-hero-monogram i,
.v2-closing-orbit i { width: 1.2rem; height: 1px; background: currentColor; transform: rotate(-45deg); }

/* Proof */
.v2-proof {
    min-height: 7.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.3fr;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.v2-proof > div,
.v2-proof > p { margin: 0; display: flex; justify-content: center; align-items: center; gap: .8rem; padding: 1.25rem; border-right: 1px solid var(--line); }
.v2-proof strong { font-family: var(--display); font-size: 2rem; font-weight: 500; }
.v2-proof span { max-width: 5rem; color: #716e66; font-size: .58rem; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }
.v2-proof > p { color: var(--brass); font-family: var(--display); font-size: 1.5rem; }

/* Intro */
.v2-intro {
    display: grid;
    grid-template-columns: 1.15fr .72fr .82fr;
    grid-template-areas: 'heading heading index' 'copy portrait portrait' 'quote portrait portrait';
    gap: 4rem 6vw;
    background: var(--paper);
}
.v2-section-index { grid-area: index; justify-self: end; align-self: start; color: var(--brass); font-family: var(--display); font-size: 1.2rem; }
.v2-intro-heading { grid-area: heading; }
.v2-intro-copy { grid-area: copy; align-self: start; padding-top: 2rem; }
.v2-intro-copy p { margin: 0 0 1.4rem; color: #69665f; font-size: .9rem; }
.v2-intro-copy .v2-lead { color: var(--ink); font-family: var(--display); font-size: 1.5rem; line-height: 1.5; }
.v2-arrow-link { display: flex; justify-content: space-between; align-items: center; margin-top: 2.25rem; padding: 1rem 0; border-block: 1px solid var(--line); font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.v2-intro-portrait { grid-area: portrait; position: relative; width: min(100%, 42rem); margin: 0 0 0 auto; }
.v2-image-frame { position: relative; margin-right: 2rem; }
.v2-image-frame::before { content: ''; position: absolute; inset: 1.3rem -1.3rem -1.3rem 1.3rem; z-index: 0; border: 1px solid var(--brass); }
.v2-image-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.72) contrast(1.03); }
.v2-intro-portrait figcaption { margin-top: 2.2rem; color: #79756c; font-size: .58rem; letter-spacing: .15em; line-height: 1.8; text-transform: uppercase; }
.v2-intro-quote { grid-area: quote; margin: 0; align-self: end; }
.v2-intro-quote span { display: block; height: 2.3rem; color: var(--brass); font-family: var(--display); font-size: 4rem; line-height: 1; }
.v2-intro-quote p { margin: 0; font-family: var(--display); font-size: 1.65rem; line-height: 1.4; }

/* Journey */
.v2-journey { color: var(--paper); background: var(--ink); }
.v2-section-head { display: grid; grid-template-columns: 1fr 25rem; align-items: end; gap: 4rem; margin-bottom: clamp(5rem, 9vw, 8rem); }
.v2-section-head > p { margin: 0 0 .75rem; color: rgba(255,255,255,.55); font-size: .87rem; }
.v2-moments { display: grid; gap: clamp(6rem, 10vw, 11rem); }
.v2-moment { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.v2-moment-reverse .v2-moment-image { order: 2; }
.v2-moment-image { position: relative; }
.v2-moment-image::after { content: ''; position: absolute; inset: 1rem -1rem -1rem 1rem; border: 1px solid rgba(201,170,123,.38); pointer-events: none; }
.v2-moment-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 5/6; object-fit: cover; filter: saturate(.65); }
.v2-moment-image > span { position: absolute; z-index: 2; top: 1rem; left: 1rem; padding: .45rem .65rem; color: var(--ink); background: var(--paper); font-size: .58rem; letter-spacing: .15em; }
.v2-moment-copy { max-width: 31rem; }
.v2-moment-copy h3 { margin: 1.2rem 0 1.75rem; font-size: clamp(2.7rem, 4.6vw, 4.5rem); line-height: 1.02; }
.v2-moment-copy > p:not(.v2-eyebrow) { margin: 0; color: rgba(255,255,255,.56); font-size: .88rem; }
.v2-moment-copy a { display: inline-flex; justify-content: space-between; gap: 4rem; margin-top: 2rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: .63rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

/* Repertoire */
.v2-repertoire { padding-bottom: 0; background: var(--sage); color: var(--paper); }
.v2-repertoire-grid { display: grid; grid-template-columns: .9fr .8fr 1fr; gap: 4vw; align-items: end; }
.v2-repertoire-copy { align-self: start; padding-bottom: 8rem; }
.v2-repertoire-copy > p:not(.v2-eyebrow) { max-width: 32rem; margin: 2rem 0; color: rgba(255,255,255,.64); font-size: .9rem; }
.v2-repertoire-list { align-self: center; padding-bottom: 8rem; }
.v2-repertoire-list ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.v2-repertoire-list li { display: grid; grid-template-columns: 2rem 1fr auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.v2-repertoire-list li span { color: var(--brass-light); font-size: .56rem; }
.v2-repertoire-list li strong { font-family: var(--display); font-size: 1.15rem; font-weight: 500; }
.v2-repertoire-list li em { color: rgba(255,255,255,.5); font-size: .64rem; }
.v2-handwritten { margin: 2rem 0 0; color: var(--brass-light); font-family: var(--display); font-size: 1.45rem; font-style: italic; line-height: 1.25; transform: rotate(-3deg); }
.v2-repertoire-image { margin: 0; }
.v2-repertoire-image img { width: 100%; height: 46rem; object-fit: cover; filter: grayscale(.35) sepia(.08); }

/* Instrument */
.v2-instrument { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(4rem, 9vw, 10rem); align-items: center; background: var(--white); }
.v2-instrument-copy h2 { font-size: clamp(3.3rem, 5.8vw, 6.2rem); }
.v2-instrument-copy > p { color: #6d6961; font-size: .86rem; }
.v2-instrument-copy .v2-instrument-lead { margin-top: 2rem; color: var(--ink); font-family: var(--display); font-size: 1.5rem; line-height: 1.45; }
.v2-instrument-copy dl { margin: 2.5rem 0 0; border-top: 1px solid var(--line); }
.v2-instrument-copy dl div { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.v2-instrument-copy dt { color: var(--brass); font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.v2-instrument-copy dd { margin: 0; font-family: var(--display); font-size: 1rem; }
.v2-instrument-images { display: grid; grid-template-columns: 1.08fr .92fr; gap: 1rem; align-items: end; }
.v2-instrument-images figure { margin: 0; }
.v2-instrument-images figure:last-child { transform: translateY(3rem); }
.v2-instrument-images img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(.6); }
.v2-instrument-images figcaption { margin-top: .8rem; color: #77736b; font-size: .52rem; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }

/* Listen */
.v2-listen { min-height: 45rem; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 9vw, 10rem); align-items: center; color: var(--paper); background: #20241f; overflow: hidden; }
.v2-listen-wave { position: absolute; inset: 12% 0 auto; height: 14rem; display: flex; align-items: center; justify-content: space-around; opacity: .09; transform: rotate(-5deg) scale(1.1); }
.v2-listen-wave i { width: 1px; height: 35%; display: block; background: var(--brass-light); }
.v2-listen-wave i:nth-child(2n) { height: 70%; }.v2-listen-wave i:nth-child(3n) { height: 100%; }.v2-listen-wave i:nth-child(5n) { height: 52%; }
.v2-listen-copy, .v2-listen-player { position: relative; z-index: 1; }
.v2-listen-copy h2 { font-size: clamp(3.5rem, 6vw, 6.4rem); }
.v2-listen-copy > p:last-child { max-width: 34rem; margin-top: 2rem; color: rgba(255,255,255,.55); font-size: .87rem; }
.v2-listen-player { padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.035); backdrop-filter: blur(8px); }
.v2-listen-label { margin: 0 0 1.2rem !important; color: var(--brass-light) !important; font-size: .58rem !important; letter-spacing: .18em; text-transform: uppercase; }
.v2-listen-player h3 { margin: 0; font-size: clamp(2rem, 3.3vw, 3.4rem); font-weight: 500; line-height: 1.1; }
.v2-listen-player > p { color: rgba(255,255,255,.55); font-size: .8rem; }
.v2-listen-player audio { width: 100%; margin-top: 2rem; accent-color: var(--brass); }
.v2-listen-actions { margin-top: 2.5rem; }
.v2-listen-actions .v2-arrow-link { color: var(--paper); border-color: rgba(255,255,255,.2); }

/* Beyond weddings */
.v2-beyond { color: var(--paper); background: #171713; }
.v2-beyond-head { display: grid; grid-template-columns: 1fr 28rem; gap: 4rem; align-items: end; margin-bottom: clamp(4rem, 8vw, 7rem); }
.v2-beyond-head > p { margin: 0 0 .8rem; color: rgba(255,255,255,.54); font-size: .87rem; }
.v2-beyond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.v2-beyond-card { position: relative; min-height: 35rem; display: flex; align-items: flex-end; padding: 2rem; overflow: hidden; background: var(--ink); }
.v2-beyond-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.05); transition: transform .8s var(--ease), filter .6s ease; }
.v2-beyond-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,15,12,.95), rgba(15,15,12,.12) 72%); }
.v2-beyond-card:hover img { transform: scale(1.04); filter: saturate(.85); }
.v2-beyond-number { position: absolute; z-index: 1; top: 1.5rem; left: 1.5rem; font-size: .56rem; letter-spacing: .15em; }
.v2-beyond-card > div { position: relative; z-index: 1; }
.v2-beyond-card h3 { margin: 0 0 .75rem; font-size: clamp(1.6rem, 2.2vw, 2.4rem); font-weight: 500; line-height: 1.05; }
.v2-beyond-card p { min-height: 4.5em; margin: 0 0 1.5rem; color: rgba(255,255,255,.57); font-size: .72rem; }
.v2-beyond-card > div > span { display: flex; justify-content: space-between; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.25); font-size: .58rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.v2-beyond-card i { color: var(--brass-light); font-style: normal; }

/* Testimonial */
.v2-testimonial { text-align: center; background: var(--paper); }
.v2-testimonial .v2-eyebrow { margin-bottom: 1.75rem; }
.v2-quote-mark { height: 4.5rem; color: var(--brass); font-family: var(--display); font-size: 7rem; line-height: 1; }
.v2-testimonial blockquote { max-width: 66rem; margin: 0 auto; }
.v2-testimonial blockquote p { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4.3vw, 4.3rem); font-weight: 500; letter-spacing: -.022em; line-height: 1.2; }
.v2-testimonial-credit { margin: 2.5rem 0 0; font-size: .63rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.v2-testimonial-credit span { display: block; margin-top: .4rem; color: #7c786f; font-weight: 400; }
.v2-rating { display: inline-flex; align-items: center; gap: 1rem; margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: #736f67; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.v2-rating span { color: var(--brass); letter-spacing: .25em; }

/* Locations */
.v2-locations { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; background: var(--white); }
.v2-locations-image { position: relative; }
.v2-locations-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.7); }
.v2-locations-image > span { position: absolute; bottom: 0; left: 0; padding: .75rem 1rem; color: var(--paper); background: var(--ink); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; }
.v2-locations-copy h2 { font-size: clamp(3rem, 5.4vw, 5.8rem); }
.v2-locations-copy > p:not(.v2-eyebrow) { margin: 2rem 0; color: #6e6a63; font-size: .88rem; }
.v2-locations-copy nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.v2-locations-copy nav a { display: flex; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.15rem; }
.v2-locations-copy nav a:nth-child(odd) { padding-right: 1rem; }
.v2-locations-copy nav a:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
.v2-locations-copy nav span { color: var(--brass); font-family: var(--body); font-size: .7rem; }

/* Closing */
.v2-closing { position: relative; min-height: 46rem; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8rem 1.5rem; color: var(--paper); background: var(--ink); text-align: center; overflow: hidden; }
.v2-closing::before { content: ''; position: absolute; inset: 2rem; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.v2-closing h2 { position: relative; z-index: 1; }
.v2-closing > p:not(.v2-eyebrow) { position: relative; z-index: 1; max-width: 36rem; margin: 2rem auto; color: rgba(255,255,255,.57); font-size: .9rem; }
.v2-closing .wpp-btn { position: relative; z-index: 1; }
.v2-closing-orbit { top: 50%; left: 50%; right: auto; bottom: auto; width: min(70vw, 34rem); color: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); font-size: 4rem; transform: translate(-50%, -50%); }

/* Footer */
.v2-footer { padding: 5rem max(1.5rem, calc((100vw - 88rem) / 2)) 1.5rem; color: var(--paper); background: #11110e; border-top: 1px solid rgba(255,255,255,.12); }
.v2-footer-top { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 5vw; padding-bottom: 5rem; }
.wpp-wordmark-light { color: var(--paper); }
.v2-footer-brand > p { margin: 1.3rem 0 0; color: rgba(255,255,255,.45); font-family: var(--display); font-size: 1.2rem; }
.v2-footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.v2-footer-nav > div,
.v2-footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.v2-footer-nav p,
.v2-footer-contact > p { margin: 0 0 1.2rem; color: var(--brass-light); font-size: .57rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.v2-footer-nav a { padding: .25rem 0; color: rgba(255,255,255,.58); font-size: .74rem; }
.v2-footer-nav a:hover { color: var(--paper); }
.v2-footer-contact > a { border-bottom: 1px solid rgba(255,255,255,.25); font-family: var(--display); font-size: 1.1rem; }
.v2-footer-contact > span { margin-top: .8rem; color: rgba(255,255,255,.45); font-size: .65rem; }
.v2-footer-socials { display: flex; gap: 1.5rem; margin-top: 2rem; }
.v2-footer-socials a { color: rgba(255,255,255,.65); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.v2-footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.v2-footer-bottom > span:nth-child(2) { text-align: center; }
.v2-footer-bottom > div { display: flex; justify-content: flex-end; gap: 1.5rem; }

/* Editorial service pages */
.service-editorial { --service-accent: var(--brass-light); background: var(--paper); }
.service-editorial--holly { --service-accent: #bd806f; }
.service-editorial--navy { --service-accent: #93a9b4; }
.service-editorial--jazz { --service-accent: #c6a56b; background: #e9e3d8; }
.service-editorial--chorus { --service-accent: #dc8b5b; }
.service-editorial--garden { --service-accent: #c8b38b; }
.service-editorial--silk { --service-accent: #b8a27c; background: #ece7de; }
.service-editorial--vow { --service-accent: #d3b5a3; }
.service-hero { position: relative; min-height: max(48rem, calc(100svh - 7rem)); display: flex; align-items: flex-end; padding: clamp(8rem, 14vw, 13rem) max(1.5rem, calc((100vw - 88rem) / 2)) clamp(5rem, 8vw, 8rem); color: var(--white); background: var(--ink); overflow: hidden; }
.service-hero__image, .service-hero__shade { position: absolute; inset: 0; }
.service-hero__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.04); }
.service-hero__shade { background: linear-gradient(90deg, rgba(18,18,15,.9) 0%, rgba(18,18,15,.55) 50%, rgba(18,18,15,.16) 100%), linear-gradient(0deg, rgba(18,18,15,.45), transparent 65%); }
.service-hero__copy { position: relative; z-index: 1; width: min(60rem, 80%); }
.service-hero .v2-eyebrow { color: var(--service-accent); }
.service-hero h1 { max-width: 58rem; margin: 1.4rem 0 2rem; font-size: clamp(4rem, 8vw, 8.5rem); font-weight: 500; letter-spacing: -.04em; line-height: .88; }
.service-hero h1 em { color: var(--service-accent); font-weight: 400; }
.service-hero__keyword, .service-hero__title { display: block; }
.service-hero__keyword { font-size: .82em; }
.service-hero__title { margin-top: .08em; }
.service-hero__lead { max-width: 39rem; margin: 0; color: rgba(255,255,255,.72); font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.5; }
.service-hero__actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.service-hero__caption { position: absolute; z-index: 1; right: 2rem; bottom: 3rem; margin: 0; font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.service-proof { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.service-proof div { display: flex; justify-content: center; align-items: center; gap: 1rem; padding: 1.5rem; border-right: 1px solid var(--line); }
.service-proof div:last-child { border: 0; }
.service-proof strong { font-family: var(--display); font-size: 1.75rem; font-weight: 500; }
.service-proof span { max-width: 9rem; color: #6f6b63; font-size: .58rem; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }
.service-story { display: grid; grid-template-columns: .7fr .65fr 1fr; gap: clamp(2.5rem, 6vw, 7rem); align-items: start; }
.service-story h2, .service-section-head h2, .service-repertoire h2 { margin: 1.25rem 0 0; font-size: clamp(3rem, 5.8vw, 6.5rem); line-height: .98; }
.service-story__copy { padding-top: 4rem; }
.service-story__copy p { color: #666259; font-size: .88rem; }
.service-story__copy .service-story__lead { color: var(--ink); font-family: var(--display); font-size: 1.45rem; line-height: 1.45; }
.service-story__image { margin: 0; }
.service-story__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.7); }
.service-story__image figcaption { margin-top: 1rem; color: #756f65; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; }
.service-moments { color: var(--paper); background: var(--ink); }
.service-section-head { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 3rem; align-items: end; margin-bottom: clamp(4rem, 7vw, 7rem); }
.service-section-head > p:last-child { margin: 0 0 .75rem; color: rgba(255,255,255,.55); font-size: .85rem; }
.service-moments__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.service-moment { min-height: 22rem; padding: 2rem 2rem 3rem 0; border-right: 1px solid rgba(255,255,255,.2); }
.service-moment + .service-moment { padding-left: 2rem; }
.service-moment > span { color: var(--service-accent); font-size: .6rem; letter-spacing: .15em; }
.service-moment h3 { margin: 7rem 0 1rem; font-size: clamp(1.7rem, 2.4vw, 2.5rem); font-weight: 500; }
.service-moment p { margin: 0; color: rgba(255,255,255,.54); font-size: .78rem; }
.service-repertoire { display: grid; grid-template-columns: 1fr 1fr; min-height: 48rem; background: var(--sage); color: var(--paper); }
.service-repertoire__image img { width: 100%; height: 100%; min-height: 48rem; object-fit: cover; filter: grayscale(.25) saturate(.65); }
.service-repertoire__copy { align-self: center; padding: clamp(4rem, 8vw, 8rem); }
.service-repertoire__copy > p:not(.v2-eyebrow) { max-width: 34rem; color: rgba(255,255,255,.6); }
.service-repertoire ol { margin: 3rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.service-repertoire li { display: grid; grid-template-columns: 2rem 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.service-repertoire li span { color: var(--service-accent); font-size: .58rem; }
.service-repertoire li strong { font-family: var(--display); font-size: 1.1rem; font-weight: 500; }
.service-repertoire li em { color: rgba(255,255,255,.48); font-size: .62rem; }
.service-process { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(4rem, 9vw, 10rem); background: var(--white); }
.service-process .service-section-head { display: block; margin: 0; }
.service-process__list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-process__list li { display: grid; grid-template-columns: 4rem 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.service-process__list li > span { color: var(--service-accent); font-size: .62rem; }
.service-process__list h3 { margin: 0 0 .35rem; font-size: 1.4rem; font-weight: 500; }
.service-process__list p { margin: 0; color: #706b62; font-size: .78rem; }
.service-quote { text-align: center; }
.service-quote > span { display: block; height: 4rem; color: var(--service-accent); font-family: var(--display); font-size: 7rem; line-height: 1; }
.service-quote blockquote { max-width: 65rem; margin: 0 auto; }
.service-quote blockquote p { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.2; }
.service-quote > p { margin: 2rem 0 0; color: #777168; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; }
.service-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(4rem, 9vw, 10rem); background: #e5dfd4; }
.service-faq .service-section-head { display: block; margin: 0; }
.service-faq .service-section-head h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.service-faq__list { border-top: 1px solid rgba(23,23,19,.3); }
.service-faq details { border-bottom: 1px solid rgba(23,23,19,.3); }
.service-faq summary { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; cursor: pointer; font-family: var(--display); font-size: 1.25rem; list-style: none; }
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary span { color: var(--service-accent); font-family: var(--body); transition: transform .25s ease; }
.service-faq details[open] summary span { transform: rotate(45deg); }
.service-faq details p { max-width: 42rem; margin: -.5rem 0 1.5rem; color: #68635b; font-size: .82rem; }

/* Each service has its own composition, not merely a colour swap. */
.service-editorial--holly .service-hero { align-items: center; }
.service-editorial--holly .service-hero__shade { background: linear-gradient(90deg, rgba(30,18,15,.93), rgba(48,25,20,.5) 55%, rgba(30,18,15,.18)); }
.service-editorial--holly .service-story__image { transform: translateY(4rem); }
.service-editorial--holly .service-moments { background: #30211d; }
.service-editorial--holly .service-repertoire { background: #344039; }
.service-editorial--navy .service-hero { align-items: center; }
.service-editorial--navy .service-hero__copy { margin-left: auto; width: min(47rem, 62%); }
.service-editorial--navy .service-hero__shade { background: linear-gradient(90deg, rgba(10,20,26,.25), rgba(10,20,26,.9) 68%); }
.service-editorial--navy .service-hero h1 { font-size: clamp(3.8rem, 6.8vw, 7rem); }
.service-editorial--navy .service-story { grid-template-columns: .9fr 1fr; }
.service-editorial--navy .service-story__heading { grid-column: 1; }
.service-editorial--navy .service-story__copy { grid-column: 1; padding-top: 0; }
.service-editorial--navy .service-story__image { grid-column: 2; grid-row: 1 / span 2; }
.service-editorial--navy .service-moments { color: var(--ink); background: #dbe2e4; }
.service-editorial--navy .service-section-head > p:last-child, .service-editorial--navy .service-moment p { color: #5d686c; }
.service-editorial--navy .service-moments__grid, .service-editorial--navy .service-moment { border-color: rgba(23,23,19,.25); }
.service-editorial--navy .service-repertoire { background: #26343b; }
.service-editorial--jazz .service-hero { width: calc(100% - clamp(2rem, 6vw, 7rem)); min-height: 52rem; margin-left: auto; }
.service-editorial--jazz .service-hero__copy { width: min(47rem, 66%); }
.service-editorial--jazz .service-hero h1 { font-size: clamp(4rem, 7.2vw, 7.5rem); }
.service-editorial--jazz .service-proof { width: calc(100% - clamp(2rem, 6vw, 7rem)); margin-left: auto; }
.service-editorial--jazz .service-story { grid-template-columns: 1fr .7fr; }
.service-editorial--jazz .service-story__image { grid-column: 1; grid-row: 1 / span 2; }
.service-editorial--jazz .service-story__heading, .service-editorial--jazz .service-story__copy { grid-column: 2; }
.service-editorial--jazz .service-story__copy { padding-top: 0; }
.service-editorial--jazz .service-moments { background: #171714; }
.service-editorial--jazz .service-moments__grid { grid-template-columns: 1fr 1fr; }
.service-editorial--jazz .service-moment { min-height: 18rem; }
.service-editorial--jazz .service-moment h3 { margin-top: 4rem; }
.service-editorial--jazz .service-repertoire { grid-template-columns: .8fr 1.2fr; background: #252019; }
.service-editorial--jazz .service-repertoire__image { order: 2; }
.service-editorial--chorus .service-hero { min-height: 46rem; align-items: center; text-align: center; }
.service-editorial--chorus .service-hero__copy { width: min(75rem, 94%); margin: auto; }
.service-editorial--chorus .service-hero h1 { max-width: none; font-size: clamp(5rem, 11vw, 11rem); line-height: .78; }
.service-editorial--chorus .service-hero__lead { margin-inline: auto; }
.service-editorial--chorus .service-hero__actions { justify-content: center; }
.service-editorial--chorus .service-hero__shade { background: linear-gradient(0deg, rgba(17,14,12,.82), rgba(17,14,12,.48)); }
.service-editorial--chorus .service-story { grid-template-columns: .8fr 1fr; }
.service-editorial--chorus .service-story__heading { grid-column: 1 / -1; }
.service-editorial--chorus .service-story__image { grid-column: 1; grid-row: 2; transform: rotate(-2deg); }
.service-editorial--chorus .service-story__copy { grid-column: 2; padding-top: 2rem; }
.service-editorial--chorus .service-moments { background: #a64f31; }
.service-editorial--chorus .service-moments__grid { gap: 1px; border: 0; background: rgba(255,255,255,.28); }
.service-editorial--chorus .service-moment { border: 0; background: #a64f31; }
.service-editorial--chorus .service-moment > span { color: #f2c39e; }
.service-editorial--chorus .service-repertoire { grid-template-columns: 1.2fr .8fr; background: #24211c; }
.service-editorial--garden .service-hero { align-items: center; }
.service-editorial--garden .service-hero__copy { width: min(63rem, 76%); }
.service-editorial--garden .service-hero__shade { background: linear-gradient(90deg, rgba(24,28,21,.88), rgba(24,28,21,.38) 70%, rgba(24,28,21,.1)); }
.service-editorial--garden .service-hero__keyword { font-size: .72em; }
.service-editorial--garden .service-story { grid-template-columns: .85fr 1.15fr; }
.service-editorial--garden .service-story__heading { grid-column: 1 / -1; max-width: 65rem; }
.service-editorial--garden .service-story__image { grid-column: 1; grid-row: 2; }
.service-editorial--garden .service-story__copy { grid-column: 2; padding: 3rem 5vw 0; }
.service-editorial--garden .service-moments { background: #30372d; }
.service-editorial--garden .service-repertoire { background: #8a816e; }
.service-editorial--silk .service-hero { width: calc(100% - clamp(2rem, 7vw, 8rem)); min-height: 50rem; margin: 0 auto; align-items: center; }
.service-editorial--silk .service-hero__copy { width: min(58rem, 78%); }
.service-editorial--silk .service-hero h1 { font-size: clamp(3.6rem, 6.6vw, 7rem); }
.service-editorial--silk .service-hero__keyword { font-size: .68em; }
.service-editorial--silk .service-proof { width: calc(100% - clamp(2rem, 7vw, 8rem)); margin: auto; background: var(--white); }
.service-editorial--silk .service-story { grid-template-columns: 1.1fr .7fr; }
.service-editorial--silk .service-story__image { grid-column: 1; grid-row: 1 / span 2; }
.service-editorial--silk .service-story__heading, .service-editorial--silk .service-story__copy { grid-column: 2; }
.service-editorial--silk .service-story__copy { padding-top: 1rem; }
.service-editorial--silk .service-moments { color: var(--ink); background: #d9d0c1; }
.service-editorial--silk .service-section-head > p:last-child, .service-editorial--silk .service-moment p { color: #655f55; }
.service-editorial--silk .service-moments__grid, .service-editorial--silk .service-moment { border-color: rgba(23,23,19,.22); }
.service-editorial--silk .service-repertoire { grid-template-columns: 1.1fr .9fr; background: #4a433a; }
.service-editorial--silk .service-repertoire__image { order: 2; }
.service-editorial--vow .service-hero { min-height: max(50rem, calc(100svh - 7rem)); justify-content: center; align-items: center; text-align: center; }
.service-editorial--vow .service-hero__copy { width: min(72rem, 90%); }
.service-editorial--vow .service-hero h1 { max-width: none; font-size: clamp(3.8rem, 7.4vw, 7.7rem); }
.service-editorial--vow .service-hero__keyword { font-size: .72em; }
.service-editorial--vow .service-hero__lead { margin-inline: auto; }
.service-editorial--vow .service-hero__actions { justify-content: center; }
.service-editorial--vow .service-hero__shade { background: linear-gradient(0deg, rgba(33,25,21,.8), rgba(33,25,21,.35)); }
.service-editorial--vow .service-proof { max-width: 70rem; margin: -2.5rem auto 0; position: relative; z-index: 2; background: var(--paper); }
.service-editorial--vow .service-story { grid-template-columns: .7fr 1fr .7fr; }
.service-editorial--vow .service-story__heading { grid-column: 1 / 3; }
.service-editorial--vow .service-story__copy { grid-column: 2 / 4; padding-top: 0; }
.service-editorial--vow .service-story__image { grid-column: 1; grid-row: 2; }
.service-editorial--vow .service-moments { background: #5e4c43; }
.service-editorial--vow .service-moment { min-height: 18rem; }
.service-editorial--vow .service-moment h3 { margin-top: 4rem; }
.service-editorial--vow .service-repertoire { background: #796a5f; }

/* Existing v1 templates, re-skinned */
.wpp-hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 14, .74) 0%,
        rgba(17, 17, 14, .66) 45%,
        rgba(17, 17, 14, .88) 100%
    );
}
.wpp-blog-hero-overlay {
    background: linear-gradient(
        to top,
        rgba(12, 12, 10, .95) 0%,
        rgba(12, 12, 10, .80) 42%,
        rgba(12, 12, 10, .70) 100%
    );
}
.wpp-page-hero {
    min-height: clamp(46rem, 78svh, 58rem) !important;
    padding-bottom: clamp(5rem, 8vw, 7rem);
}
body:not(.home) #main-content > section:first-of-type { padding-top: clamp(9rem, 13vw, 12rem) !important; }
body:not(.home) #main-content > section:first-of-type h1 { font-size: clamp(3.3rem, 6.5vw, 6.5rem) !important; line-height: .98 !important; }
.wpp-card { background: var(--white); border: 1px solid var(--line); border-radius: 0; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s ease; }
.wpp-card:hover { transform: translateY(-.4rem); box-shadow: 0 2rem 5rem rgba(23,23,19,.1); }
.wpp-divider { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.wpp-divider::before, .wpp-divider::after { content: ''; width: 4rem; height: 1px; background: var(--brass); opacity: .6; }
.wpp-fade-up { opacity: 0; transform: translateY(1.5rem); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.wpp-fade-up.visible { opacity: 1; transform: none; }
.wpp-stars { color: var(--brass); letter-spacing: .15em; }
.wpp-location-card { position: relative; overflow: hidden; }
.wpp-location-card img { transition: transform .8s var(--ease); }
.wpp-location-card:hover img { transform: scale(1.035); }
.wpp-location-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.25rem; background: linear-gradient(0deg, rgba(17,17,14,.88), transparent 70%); }
.wpp-audio-progress { appearance: none; width: 100%; height: 2px; background: rgba(169,133,85,.25); }
.wpp-audio-progress::-webkit-slider-thumb { appearance: none; width: 11px; height: 11px; border-radius: 50%; background: var(--brass); }
details.wpp-faq { border-bottom: 1px solid var(--line); }
details.wpp-faq summary { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; color: var(--ink); font-family: var(--display); font-size: 1.25rem; cursor: pointer; list-style: none; }
details.wpp-faq summary::-webkit-details-marker { display: none; }
details.wpp-faq .wpp-faq-content { padding-bottom: 1.5rem; color: #69665f; }
details.wpp-faq[open] summary .material-symbols-outlined { transform: rotate(45deg); }
.wpcf7 input:not([type='submit']), .wpcf7 textarea, .wpcf7 select,
#main-content form input:not([type='submit']), #main-content form textarea, #main-content form select {
    width: 100%;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    padding: .85rem .1rem !important;
    background: transparent !important;
    outline: none;
}
.wpcf7 input:focus, .wpcf7 textarea:focus,
#main-content form input:focus, #main-content form textarea:focus { border-color: var(--brass) !important; }

/* Tablet */
@media (max-width: 1023px) {
    :root { --page: min(100% - 2.5rem, 88rem); }
    .admin-bar .wpp-site-header { top: 32px; }
    .wpp-header-inner { height: 5rem; }
    .wpp-desktop-nav { display: none; }
    .wpp-menu-toggle { display: flex; align-items: center; gap: .8rem; padding: .75rem 0; }
    .wpp-menu-label { font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
    .wpp-menu-icon { width: 1.6rem; display: grid; gap: .35rem; }
    .wpp-menu-icon i { display: block; height: 1px; background: currentColor; }
    .wpp-menu-icon i:last-child { width: 70%; margin-left: auto; }

    .v2-hero { grid-template-columns: 1fr 44%; }
    .v2-hero-copy { padding: 7rem 2rem 2.5rem; }
    .v2-hero h1 { font-size: clamp(4rem, 9.5vw, 6.5rem); }
    .v2-hero-actions { align-items: flex-start; flex-direction: column; }
    .v2-hero-kicker span:last-child { display: none; }
    .v2-hero-monogram { width: 4.5rem; }

    .v2-intro { grid-template-columns: .8fr 1.2fr; grid-template-areas: 'heading heading' 'copy portrait' 'quote portrait'; }
    .v2-section-index { display: none; }
    .v2-section-head { grid-template-columns: 1fr 20rem; }
    .v2-repertoire-grid { grid-template-columns: 1fr 1fr; }
    .v2-repertoire-copy { padding-bottom: 4rem; }
    .v2-repertoire-list { padding-bottom: 4rem; }
    .v2-repertoire-image { grid-column: 1 / -1; }
    .v2-repertoire-image img { height: 32rem; object-position: center 55%; }
    .v2-locations { grid-template-columns: 1fr 1fr; }
    .v2-beyond-grid { grid-template-columns: 1fr 1fr; }
    .service-story { grid-template-columns: 1fr 1fr; }
    .service-story__heading { grid-column: 1 / -1; }
    .service-story__copy { padding-top: 1rem; }
    .service-section-head { grid-template-columns: .7fr 1.5fr; }
    .service-section-head > p:last-child { grid-column: 2; }
    .service-moments__grid { grid-template-columns: 1fr 1fr; }
    .service-editorial--navy .service-story__heading { grid-column: 1; }
    .service-repertoire__copy { padding: 4rem 2.5rem; }
}

/* Mobile */
@media (max-width: 767px) {
    :root { --page: calc(100% - 2rem); }
    .admin-bar .wpp-site-header { top: 46px; }
    .wpp-header-inner { height: 4.5rem; }
    .wpp-wordmark-name { font-size: 1.32rem; }
    .wpp-wordmark-role { margin-top: .4rem; font-size: .5rem; }
    .wpp-menu-label { display: none; }

    .v2-section { padding: 5.5rem 1.25rem; }
    .v2-section h2, .v2-closing h2 { font-size: clamp(3rem, 14vw, 4.65rem); }

    .v2-hero { min-height: 100svh; display: block; }
    .v2-hero-visual { position: absolute; inset: 0; min-height: 100svh; }
    .v2-hero-visual > img { object-position: 61% center; }
    .v2-hero-visual-shade { background: linear-gradient(0deg, rgba(15,15,12,.96) 4%, rgba(15,15,12,.76) 58%, rgba(15,15,12,.42) 100%); }
    .v2-hero-copy { min-height: 100svh; padding: 6rem 1.25rem max(1.5rem, env(safe-area-inset-bottom)); }
    .v2-hero-copy::before { opacity: .12; }
    .v2-hero-body { align-self: end; padding: 2rem 0; }
    .v2-hero h1 { margin: .9rem 0 1.3rem; font-size: clamp(4rem, 20vw, 6.2rem); line-height: .83; }
    .v2-hero-service { margin-bottom: .9rem; font-size: .6rem; line-height: 1.4; }
    .v2-hero-intro { max-width: 23rem; color: rgba(255,255,255,.78); font-size: 1.18rem; }
    .v2-hero-actions { gap: 1.25rem; margin-top: 1.75rem; }
    .v2-hero-actions .wpp-btn { width: 100%; }
    .v2-hero-note { display: none; }
    .v2-vertical-caption, .v2-hero-monogram { display: none; }

    .v2-proof { display: flex; min-height: 6rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .v2-proof::-webkit-scrollbar { display: none; }
    .v2-proof > div, .v2-proof > p { min-width: 11rem; flex: 0 0 auto; scroll-snap-align: start; }
    .v2-proof > p { min-width: 14rem; }

    .v2-intro { display: flex; flex-direction: column; gap: 3rem; }
    .v2-intro-heading { order: 1; }
    .v2-intro-copy { order: 2; padding-top: 0; }
    .v2-intro-portrait { order: 3; }
    .v2-intro-quote { order: 4; }
    .v2-image-frame { margin-right: .8rem; }
    .v2-image-frame::before { inset: .7rem -.7rem -.7rem .7rem; }
    .v2-intro-quote p { font-size: 1.5rem; }

    .v2-section-head { display: block; margin-bottom: 4rem; }
    .v2-section-head > p { margin-top: 2rem; }
    .v2-moments { gap: 6rem; }
    .v2-moment { display: flex; flex-direction: column; align-items: stretch; gap: 2.5rem; }
    .v2-moment-reverse .v2-moment-image { order: 0; }
    .v2-moment-image { width: calc(100% - .7rem); }
    .v2-moment-image::after { inset: .7rem -.7rem -.7rem .7rem; }
    .v2-moment-copy h3 { font-size: 2.75rem; }

    .v2-repertoire { padding-bottom: 0; }
    .v2-repertoire-grid { display: flex; flex-direction: column; gap: 3.5rem; }
    .v2-repertoire-copy, .v2-repertoire-list { width: 100%; padding-bottom: 0; }
    .v2-repertoire-list li { grid-template-columns: 1.5rem 1fr; }
    .v2-repertoire-list li em { grid-column: 2; }
    .v2-repertoire-image { width: calc(100% + 2.5rem); margin-left: -1.25rem; }
    .v2-repertoire-image img { height: 28rem; }

    .v2-testimonial blockquote p { font-size: 2rem; }
    .v2-instrument, .v2-listen { display: flex; flex-direction: column; align-items: stretch; gap: 4rem; }
    .v2-instrument-images { margin-bottom: 3rem; }
    .v2-instrument-images figure:last-child { transform: translateY(2rem); }
    .v2-listen { min-height: 0; }
    .v2-listen-player { padding: 2rem 1.25rem; }
    .v2-beyond-head { display: block; }
    .v2-beyond-head > p { margin-top: 2rem; }
    .v2-beyond-grid { display: flex; width: calc(100% + 2.5rem); margin-left: -1.25rem; gap: 1px; overflow-x: auto; scroll-snap-type: x mandatory; }
    .v2-beyond-card { min-width: 82vw; min-height: 31rem; flex: 0 0 auto; scroll-snap-align: start; }
    .v2-locations { display: flex; flex-direction: column; }
    .v2-locations-image { order: 2; }
    .v2-locations-copy nav { grid-template-columns: 1fr; }
    .v2-locations-copy nav a:nth-child(n) { padding-inline: 0; border-left: 0; }
    .v2-locations-image > span { right: 0; font-size: .48rem; }

    .v2-closing { min-height: 40rem; padding-inline: 1.25rem; }
    .v2-closing::before { inset: .75rem; }
    .v2-closing .wpp-btn { width: 100%; max-width: 22rem; }

    .v2-footer { padding-top: 4rem; }
    .v2-footer-top { display: flex; flex-direction: column; gap: 3.5rem; padding-bottom: 3.5rem; }
    .v2-footer-nav { width: 100%; }
    .v2-footer-contact > a { font-size: .95rem; overflow-wrap: anywhere; }
    .v2-footer-bottom { grid-template-columns: 1fr auto; gap: 1rem; }
    .v2-footer-bottom > span:nth-child(2) { display: none; }

    .service-hero,
    .service-editorial--jazz .service-hero { width: 100%; min-height: max(44rem, 100svh); margin: 0; padding: 8rem 1.25rem 4rem; align-items: flex-end; text-align: left; }
    .service-hero__shade,
    .service-editorial--navy .service-hero__shade,
    .service-editorial--chorus .service-hero__shade { background: linear-gradient(0deg, rgba(17,16,13,.94) 8%, rgba(17,16,13,.66) 60%, rgba(17,16,13,.35)); }
    .service-hero__copy,
    .service-editorial--navy .service-hero__copy,
    .service-editorial--jazz .service-hero__copy,
    .service-editorial--chorus .service-hero__copy { width: 100%; margin: 0; text-align: left; }
    .service-hero h1,
    .service-editorial--navy .service-hero h1,
    .service-editorial--jazz .service-hero h1,
    .service-editorial--chorus .service-hero h1 { margin: 1rem 0 1.5rem; font-size: clamp(3.6rem, 17vw, 5.5rem); line-height: .87; }
    .service-hero__keyword { font-size: .67em !important; line-height: 1; }
    .service-hero__lead { font-size: 1.12rem; }
    .service-hero__actions, .service-editorial--chorus .service-hero__actions { align-items: stretch; flex-direction: column; justify-content: flex-start; gap: 1.25rem; }
    .service-hero__actions .wpp-btn { width: 100%; }
    .service-hero__caption { display: none; }
    .service-proof, .service-editorial--jazz .service-proof { width: 100%; display: flex; margin: 0; overflow-x: auto; scroll-snap-type: x mandatory; }
    .service-editorial--silk .service-proof, .service-editorial--vow .service-proof { width: 100%; margin: 0; }
    .service-proof div { min-width: 15rem; flex: 0 0 auto; justify-content: flex-start; scroll-snap-align: start; }
    .service-story,
    .service-editorial--navy .service-story,
    .service-editorial--jazz .service-story,
    .service-editorial--chorus .service-story { display: flex; flex-direction: column; gap: 2.5rem; }
    .service-story__heading { order: 1; }
    .service-story__copy { order: 2; padding-top: 0; }
    .service-story__image,
    .service-editorial--holly .service-story__image,
    .service-editorial--chorus .service-story__image { order: 3; transform: none; }
    .service-story h2, .service-section-head h2, .service-repertoire h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .service-section-head { display: block; margin-bottom: 3.5rem; }
    .service-section-head > p:last-child { margin-top: 1.5rem; }
    .service-moments__grid, .service-editorial--jazz .service-moments__grid { display: block; border-top: 1px solid rgba(255,255,255,.2); }
    .service-moment, .service-moment + .service-moment { min-height: 0; padding: 2rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
    .service-moment h3 { margin: 3rem 0 1rem; font-size: 2rem; }
    .service-repertoire,
    .service-editorial--jazz .service-repertoire,
    .service-editorial--chorus .service-repertoire { display: flex; flex-direction: column; min-height: 0; }
    .service-repertoire__image, .service-editorial--jazz .service-repertoire__image { order: 2; }
    .service-repertoire__image img { min-height: 0; height: 28rem; }
    .service-repertoire__copy { padding: 5rem 1.25rem; }
    .service-editorial--silk .service-repertoire__copy { width: 100%; }
    .service-repertoire li { grid-template-columns: 1.5rem 1fr; }
    .service-repertoire li em { grid-column: 2; }
    .service-process, .service-faq { display: flex; flex-direction: column; gap: 3.5rem; }
    .service-process__list li { grid-template-columns: 2.5rem 1fr; }
    .service-quote blockquote p { font-size: 2rem; }
    .service-faq summary { font-size: 1.08rem; }

    body:not(.home) #main-content > section:first-of-type { padding-top: 7.5rem !important; }
    body:not(.home) #main-content > section:first-of-type h1 { font-size: clamp(3rem, 14vw, 4.5rem) !important; }
    .wpp-page-hero { min-height: max(42rem, calc(100svh - 4.5rem)) !important; padding-bottom: 4rem; }
    .wpp-btn-primary, .wpp-btn-outline, .wpp-btn-outline-dark { width: 100%; }
    .grid.grid-cols-2 { grid-template-columns: 1fr !important; }
    .wpp-location-card.aspect-\[3\/4\] { aspect-ratio: 4/5; }
}

@media (max-width: 374px) {
    .v2-hero h1 { font-size: 3.75rem; }
    .v2-hero-kicker { font-size: .52rem; }
    .v2-section h2, .v2-closing h2 { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .v2-reveal, .wpp-fade-up { opacity: 1; transform: none; }
}
