/* ============================================================================
   Paparazzi · About  —  about.css
   ----------------------------------------------------------------------------
   Built to the "Aura" reference: light, warm, airy editorial. A high-contrast
   serif (Cormorant Garamond) for display, small clean sans labels, generous
   whitespace, rounded photo cards with characterful stills, one signature
   serif hover-list, people cards, and a black footer closing on a giant
   Paparazzi wordmark. Red is the single accent. Premium, playful, classy.
   Namespaced .ab* so nothing collides with webflow.css.
   ============================================================================ */

.ab {
    --paper:    #e7e1d4;   /* the exact home cream/sand */
    --paper-2:  #e7e1d4;   /* same — this colour only */
    --card:     #f2ede2;   /* subtly lighter card, same family */
    --ink:      #1a150f;   /* home ink on cream */
    --ink-soft: #514a3e;
    --ink-mute: #8b8071;
    --line:     rgba(26, 21, 15, 0.13);
    --line-soft:rgba(26, 21, 15, 0.08);

    --red:      #d81f2a;
    --red-soft: #e85560;
    --red-deep: #a3121b;

    --dark:     #141210;   /* contact + footer */
    --dark-2:   #1c1815;
    --cream:    #f1ece2;    /* text on dark */
    --cream-dim:#b0a794;
    --cream-mute:#7c7264;
    --line-d:   rgba(241, 236, 226, 0.13);

    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --wrap: 1240px;
    --gutter: clamp(1.25rem, 5vw, 4rem);
    --radius: 22px;
    --shadow: 0 26px 60px -34px rgba(23,19,13,.42);

    position: relative;
    /* exact home cream + the same fractal-noise sand texture (not invented) */
    background-color: var(--paper);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)' opacity='0.14'/%3E%3C/svg%3E");
    background-blend-mode: multiply;
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
.ab *, .ab *::before, .ab *::after { box-sizing: border-box; }
.ab a { color: inherit; text-decoration: none; }
.ab img { display: block; max-width: 100%; }
.ab em { font-style: italic; }
.ab .ab-red { color: var(--red); }

.ab-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.09s}.reveal[data-d="2"]{transition-delay:.18s}.reveal[data-d="3"]{transition-delay:.27s}.reveal[data-d="4"]{transition-delay:.36s}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- small label:  — our story ---- */
.ab-tag { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans);
    font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--ink-mute); }
.ab-tag::before { content: ""; width: 20px; height: 1px; background: var(--red); }
.ab-tag--center { justify-content: center; }

/* ---- big serif display ---- */
.ab-display { font-family: var(--serif); font-weight: 500; letter-spacing: -.02em; line-height: 1.0; color: var(--ink); }
.ab-display em { color: var(--red); }

/* =========================================================================
   HERO — light, centered, with the film-still reel
   ========================================================================= */
.ab-hero { padding: clamp(2.2rem, 6vh, 3.5rem) var(--gutter) clamp(2.5rem, 6vh, 4rem); text-align: center; }
.ab-hero-meta { display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: clamp(1.4rem, 4vh, 2.4rem); }
.ab-pill { display: inline-flex; align-items: center; gap: .5rem; background: var(--card); border: 1px solid var(--line);
    border-radius: 100px; padding: .5rem .95rem; box-shadow: var(--shadow);
    font-family: var(--sans); font-size: .74rem; font-weight: 600; color: var(--ink); }
.ab-pill b { color: var(--red); font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.ab-avatars { display: inline-flex; }
.ab-avatars img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--paper); margin-left: -10px; }
.ab-avatars img:first-child { margin-left: 0; }
.ab-hero-note { font-family: var(--sans); font-size: .82rem; color: var(--ink-soft); max-width: 26ch; text-align: left; }
.ab-hero-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.03em; line-height: .92;
    font-size: clamp(3.6rem, 13vw, 11rem); margin: 0; color: var(--ink); }
.ab-hero-title em { font-style: italic; color: var(--red); }
.ab-hero-sub { font-family: var(--sans); font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.65; color: var(--ink-soft);
    max-width: 46ch; margin: clamp(1.4rem, 3vh, 2rem) auto 0; }

.ab-reel { display: flex; gap: clamp(.6rem, 1.2vw, 1rem); align-items: flex-end; justify-content: center;
    margin-top: clamp(2.2rem, 6vh, 4rem); flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem;
    scrollbar-width: none; }
.ab-reel::-webkit-scrollbar { display: none; }
.ab-reel figure { flex: 0 0 auto; margin: 0; width: clamp(120px, 15vw, 210px); border-radius: 18px; overflow: hidden;
    background: var(--paper-2); box-shadow: var(--shadow); transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.ab-reel figure:nth-child(odd) { aspect-ratio: 3 / 4; }
.ab-reel figure:nth-child(even) { aspect-ratio: 4 / 5; margin-bottom: clamp(1rem, 3vh, 2.2rem); }
.ab-reel figure:nth-child(4) { width: clamp(150px, 18vw, 250px); aspect-ratio: 4 / 4.4; margin-bottom: 0; }
.ab-reel img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.ab-reel figure:hover { transform: translateY(-8px); }
.ab-reel figure:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .ab-reel { justify-content: flex-start; } .ab-reel figure { width: 40vw; } }

/* =========================================================================
   Section scaffold (light bands)
   ========================================================================= */
.ab-section { padding-block: clamp(4.5rem, 10vw, 8rem); }
.ab-section--band { background: transparent; }

/* --- Our Story --- */
.ab-story-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 6vw, 4rem); display: grid; gap: 1.1rem; justify-items: center; }
.ab-story-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em; margin: 0; }
.ab-story-head h2 em { color: var(--red); }
.ab-story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 3vw, 2.4rem); align-items: stretch; }
.ab-story-copy { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.8rem); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.ab-story-copy p { font-family: var(--sans); font-size: clamp(.98rem, 1.1vw, 1.06rem); line-height: 1.75; color: var(--ink-soft); margin: 1rem 0 0; }
.ab-story-copy .ab-lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.28; color: var(--ink); margin: 0; max-width: 20ch; }
.ab-story-copy .ab-lead em { color: var(--red); }
.ab-story-stats { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); flex-wrap: wrap; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.ab-story-stat b { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: .9; color: var(--red); }
.ab-story-stat span { font-family: var(--sans); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-top: .4rem; display: block; }
.ab-story-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: clamp(.7rem, 1.4vw, 1.1rem); }
.ab-story-media figure { margin: 0; overflow: hidden; border-radius: 18px; background: var(--paper-2); box-shadow: var(--shadow); }
.ab-story-media figure:first-child { grid-row: span 2; }
.ab-story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.22,.61,.36,1); }
.ab-story-media figure:hover img { transform: scale(1.05); }
@media (max-width: 860px) { .ab-story-grid { grid-template-columns: 1fr; } .ab-story-media { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .ab-story-media figure:first-child { grid-row: auto; grid-column: span 2; aspect-ratio: 16/9; } .ab-story-media figure { aspect-ratio: 1/1; } }

/* --- What We Do — the signature serif hover-list --- */
.ab-do-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ab-do-intro { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.ab-do-intro h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.06; letter-spacing: -.02em; margin: .8rem 0 0; }
.ab-do-intro h2 em { color: var(--red); }
.ab-do-list { list-style: none; margin: 0; padding: 0; }
.ab-do-item { display: flex; align-items: center; gap: 1rem; padding: clamp(.5rem, 1.4vw, 1rem) 0; cursor: default; border-top: 1px solid var(--line-soft); }
.ab-do-item:first-child { border-top: 0; }
.ab-do-item .ab-do-idx { font-family: var(--sans); font-size: .7rem; font-weight: 700; color: var(--ink-mute); letter-spacing: .1em; width: 2ch; transition: color .35s ease; }
.ab-do-item .ab-do-name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.05; letter-spacing: -.02em; color: var(--ink-mute); transition: color .4s cubic-bezier(.22,.61,.36,1), transform .4s cubic-bezier(.22,.61,.36,1); }
.ab-do-item .ab-do-arrow { margin-left: auto; opacity: 0; color: var(--red); transform: translateX(-8px); transition: opacity .35s ease, transform .35s ease; font-size: 1.4rem; }
.ab-do-item.is-active .ab-do-name, .ab-do-item:hover .ab-do-name { color: var(--ink); transform: translateX(6px); }
.ab-do-item.is-active .ab-do-idx, .ab-do-item:hover .ab-do-idx { color: var(--red); }
.ab-do-item.is-active .ab-do-arrow, .ab-do-item:hover .ab-do-arrow { opacity: 1; transform: none; }
.ab-do-stage { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow); }
.ab-do-shot { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity .5s ease, transform .9s cubic-bezier(.22,.61,.36,1); }
.ab-do-shot.is-active { opacity: 1; transform: none; }
.ab-do-shot img { width: 100%; height: 100%; object-fit: cover; }
.ab-do-shot span { position: absolute; left: 1.1rem; bottom: 1.1rem; background: rgba(20,18,16,.72); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    font-family: var(--sans); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: .4rem .8rem; border-radius: 100px; }
@media (max-width: 860px) { .ab-do-grid { grid-template-columns: 1fr; gap: 2rem; } .ab-do-stage { display: none; } .ab-do-item .ab-do-name { color: var(--ink); } .ab-do-item .ab-do-idx { color: var(--red); } }

/* --- The Team — rounded people cards + hover briefs --- */
.ab-team-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.ab-team-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.04; letter-spacing: -.02em; margin: .8rem 0 0; }
.ab-team-head h2 em { color: var(--red); }
.ab-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1.1rem, 2.2vw, 1.8rem); }
.ab-member { position: relative; }
.ab-member figure { position: relative; margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); box-shadow: var(--shadow); }
.ab-member img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.ab-member:hover img, .ab-member:focus-within img { transform: scale(1.05); }
.ab-member-tag { position: absolute; left: .8rem; top: .8rem; z-index: 2; background: rgba(255,253,248,.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    font-family: var(--sans); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--red); padding: .35rem .7rem; border-radius: 100px; }
.ab-member-bio { position: absolute; inset: 0; z-index: 3; display: flex; align-items: flex-end; padding: clamp(1.1rem, 1.8vw, 1.5rem);
    background: linear-gradient(to top, rgba(17,14,10,.94) 16%, rgba(17,14,10,.5) 56%, transparent 88%);
    opacity: 0; transition: opacity .45s cubic-bezier(.22,.61,.36,1); pointer-events: none; border-radius: var(--radius); }
.ab-member-bio p { margin: 0; font-family: var(--sans); color: var(--cream); font-size: clamp(.82rem, .95vw, .93rem); line-height: 1.55; transform: translateY(10px); transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.ab-member:hover .ab-member-bio, .ab-member:focus-within .ab-member-bio { opacity: 1; }
.ab-member:hover .ab-member-bio p, .ab-member:focus-within .ab-member-bio p { transform: none; }
.ab-member-name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--ink); margin: .9rem 0 .15rem; letter-spacing: -.01em; }
.ab-member-role { font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; color: var(--ink-mute); font-weight: 600; }
@media (hover: none) { .ab-member-bio { opacity: 1; background: linear-gradient(to top, rgba(17,14,10,.92) 6%, rgba(17,14,10,.2) 46%, transparent 72%); } .ab-member-bio p { transform: none; } }
@media (max-width: 760px) { .ab-team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem; } }

/* =========================================================================
   CONTACT — the original dark film-slate enquiry form (kept exactly)
   ========================================================================= */
.ab-contact { position: relative; background: var(--dark); color: var(--cream); padding-block: clamp(5rem, 11vw, 8.5rem); overflow: hidden;
    border-radius: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0 0; margin-top: clamp(2rem, 5vw, 4rem); }
.ab-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.ab-contact .ab-tag { color: var(--cream-dim); }
.ab-contact-title { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.4rem); line-height: 1.02; font-weight: 500; letter-spacing: -.015em; margin: 1rem 0 1.4rem; color: var(--cream); }
.ab-contact-lede { font-family: var(--sans); font-size: 1.02rem; line-height: 1.75; color: var(--cream-dim); max-width: 42ch; margin: 0 0 2.6rem; }
.ab-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.ab-contact-item { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; padding-top: 1.3rem; border-top: 1px solid var(--line-d); align-items: start; min-width: 0; }
.ab-ci-key { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red-soft); padding-top: .2rem; font-weight: 600; }
.ab-ci-val { font-family: var(--sans); font-size: 1rem; line-height: 1.6; color: var(--cream); overflow-wrap: anywhere; }
.ab-ci-val a { border-bottom: 1px solid var(--line-d); transition: border-color .3s; }
.ab-ci-val a:hover { border-color: var(--red); }
.ab-ci-dim { color: var(--cream-mute); font-size: .88rem; }
.ab-form-wrap { position: relative; min-width: 0; }
.ab-form { position: relative; background: var(--dark-2); border: 1px solid var(--line-d); border-radius: 14px; padding: clamp(1.6rem, 3vw, 2.6rem); overflow: hidden; min-width: 0; }
.ab-form::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 100%); }
.ab-form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; padding-bottom: 1.2rem; border-bottom: 1px dashed var(--line-d); }
.ab-form-slate { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); font-weight: 600; }
.ab-form-slate-stripes { width: 30px; height: 16px; background: repeating-linear-gradient(115deg, var(--cream) 0 5px, var(--dark-2) 5px 10px); border-radius: 1px; }
.ab-form-take { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; color: var(--cream-mute); }
.ab-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.ab-field { position: relative; margin-bottom: 1.5rem; }
.ab-field input, .ab-field select, .ab-field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-d); color: var(--cream); font-family: var(--sans); font-size: 1rem; padding: .9rem 0 .6rem; outline: none; border-radius: 0; transition: border-color .3s ease; }
.ab-field textarea { resize: vertical; min-height: 3.2rem; line-height: 1.6; }
.ab-field select { appearance: none; -webkit-appearance: none; color: var(--cream); cursor: pointer; }
.ab-field select option { background: var(--dark-2); color: var(--cream); }
.ab-field label { position: absolute; left: 0; top: .9rem; font-family: var(--sans); font-size: 1rem; color: var(--cream-mute); pointer-events: none; transition: transform .28s cubic-bezier(.22,.61,.36,1), color .28s, font-size .28s; transform-origin: left; }
.ab-opt { font-size: .8em; opacity: .7; }
.ab-field input:focus + label, .ab-field input:not(:placeholder-shown) + label,
.ab-field textarea:focus + label, .ab-field textarea:not(:placeholder-shown) + label,
.ab-field select:focus + label, .ab-field select.filled + label { transform: translateY(-1.55rem) scale(.72); color: var(--red-soft); letter-spacing: .06em; }
.ab-field-line { position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.ab-field input:focus ~ .ab-field-line, .ab-field textarea:focus ~ .ab-field-line, .ab-field select:focus ~ .ab-field-line { transform: scaleX(1); }
.ab-field--select { position: relative; }
.ab-select-caret { position: absolute; right: 2px; top: 1.1rem; width: 8px; height: 8px; border-right: 1.5px solid var(--cream-mute); border-bottom: 1.5px solid var(--cream-mute); transform: rotate(45deg); pointer-events: none; }
.ab-field.invalid input, .ab-field.invalid select, .ab-field.invalid textarea { border-bottom-color: var(--red); }
.ab-field.invalid label { color: var(--red); }
.ab-submit { position: relative; width: 100%; margin-top: .6rem; display: inline-flex; align-items: center; justify-content: center; gap: .8rem; background: var(--red); color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; border: 0; border-radius: 100px; padding: 1.15rem 1.4rem; cursor: pointer; overflow: hidden; transition: transform .25s ease, box-shadow .35s ease, background .3s ease; }
.ab-submit::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); transform: translateX(-120%); transition: transform .6s ease; }
.ab-submit:hover { background: #e42734; box-shadow: 0 18px 40px -14px rgba(216,31,42,.6); transform: translateY(-2px); }
.ab-submit:hover::before { transform: translateX(120%); }
.ab-submit:active { transform: translateY(0); }
.ab-submit-icon { display: inline-flex; transition: transform .3s ease; }
.ab-submit:hover .ab-submit-icon { transform: translate(3px, -3px); }
.ab-submit.sending { pointer-events: none; opacity: .8; }
.ab-form-done { position: absolute; inset: 0; background: var(--dark-2); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .4rem; padding: 2rem; opacity: 0; visibility: hidden; transform: scale(1.02); transition: opacity .5s ease, transform .5s ease, visibility .5s; }
.ab-form-done.show { opacity: 1; visibility: visible; transform: none; }
.ab-form-done h3 { font-family: var(--serif); font-size: 2rem; font-weight: 500; margin: 1rem 0 .3rem; color: var(--cream); }
.ab-form-done p { font-family: var(--sans); color: var(--cream-dim); margin: 0; max-width: 28ch; }
.ab-done-mark { width: 46px; height: 46px; }
.ab-done-circle { stroke: var(--red); stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; }
.ab-done-check { stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.ab-form-done.show .ab-done-circle { animation: ab-draw .6s ease forwards; }
.ab-form-done.show .ab-done-check { animation: ab-draw .4s ease .5s forwards; }
@keyframes ab-draw { to { stroke-dashoffset: 0; } }
.ab-form-note { margin-top: 1.2rem; text-align: center; font-family: var(--sans); font-size: .85rem; color: var(--cream-mute); }
.ab-form-note a { color: var(--cream-dim); border-bottom: 1px solid var(--line-d); }
.ab-form-note a:hover { color: var(--red-soft); }
.ab-form-status { min-height: 1.35em; margin: .8rem 0 0; color: var(--cream-dim); font-size: .78rem; text-align: center; }
@media (max-width: 960px) { .ab-contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 760px) { .ab-field-row { grid-template-columns: 1fr; gap: 0; } }

/* =========================================================================
   FOOTER — shared site footer (social icons + Privacy Policy + copyright)
   ========================================================================= */
.ab-footer { background: var(--dark); color: var(--cream); padding-block: clamp(2.5rem, 5vw, 4rem) clamp(6rem, 12vh, 8rem); }
.ab-foot-divider { height: 1px; background: var(--line-d); margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.ab-foot-row { display: flex; justify-content: flex-end; }
.ab-foot-social { display: flex; align-items: center; gap: clamp(.7rem, 1.4vw, 1.1rem); flex-wrap: wrap; }
.ab-foot-social > a[aria-label] { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-d);
    display: inline-flex; align-items: center; justify-content: center; color: var(--cream-dim);
    transition: color .25s ease, border-color .25s ease, background .25s ease; }
.ab-foot-social > a[aria-label]:hover { color: var(--cream); border-color: var(--red); background: rgba(216,31,42,.12); }
.ab-foot-social svg { width: 17px; height: 17px; }
.ab-foot-privacy { color: var(--cream); font-family: var(--sans); font-size: .95rem; text-decoration: underline;
    text-underline-offset: 4px; text-decoration-color: rgba(241,236,226,.4); margin-left: .8rem; transition: color .25s ease; }
.ab-foot-privacy:hover { color: var(--red-soft); }
.ab-foot-copy { margin: clamp(1.6rem, 3vw, 2.2rem) 0 0; color: var(--cream-mute); font-family: var(--sans); font-size: .8rem; }
@media (max-width: 620px) { .ab-foot-row { justify-content: flex-start; } }
