:root {
    --ink: #172027;
    --ink-soft: #34424c;
    --paper: #f5f1e9;
    --paper-deep: #e8e0d3;
    --white: #fffdf9;
    --copper: #ad5f31;
    --copper-dark: #82401f;
    --gold: #d6a429;
    --blue: #28637b;
    --line: rgba(23, 32, 39, 0.16);
    --line-light: rgba(255, 255, 255, 0.2);
    --shadow: 0 24px 70px rgba(20, 29, 35, 0.14);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

h3 {
    line-height: 1.2;
}

.site-container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-topline {
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-topline-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 8px;
}

.site-topline a {
    color: var(--white);
    text-decoration: none;
}

.auction-topline {
    color: #fff;
    background: #121212;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.auction-topline-inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 30px;
}

.auction-topline p {
    margin: 0;
    white-space: nowrap;
}

.auction-topline-sale {
    margin-left: auto !important;
}

.auction-topline-note {
    color: #f5cc1d;
    font-weight: 700;
}

.auction-topline .live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ee5b31;
    box-shadow: 0 0 0 4px rgba(238, 91, 49, 0.18);
    vertical-align: 1px;
}

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 241, 233, 0.96);
}

.site-header-inner {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    display: block;
    flex: 0 0 auto;
}

.site-logo img {
    width: 152px;
    height: auto;
    mix-blend-mode: multiply;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
}

.primary-navigation a {
    position: relative;
    padding-block: 12px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    background: var(--copper);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-navigation .nav-contact {
    padding: 12px 18px;
    border: 1px solid var(--ink);
}

.primary-navigation .nav-contact::after {
    display: none;
}

.primary-navigation .nav-contact:hover,
.primary-navigation .nav-contact.active {
    color: var(--white);
    background: var(--ink);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: '';
    transition: transform 180ms ease;
}

.nav-toggle-lines::before {
    transform: translateY(-7px);
}

.nav-toggle-lines::after {
    transform: translateY(5px);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines {
    background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines::before {
    transform: rotate(45deg) translate(1px, 1px);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines::after {
    transform: rotate(-45deg) translate(1px, -1px);
}

.eyebrow {
    margin-bottom: 20px;
    color: var(--copper-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 32px;
    height: 1px;
    margin-right: 12px;
    background: currentColor;
    content: '';
    vertical-align: 0.28em;
}

.eyebrow-light {
    color: #e9b982;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--copper);
}

.button-primary:hover {
    background: var(--copper-dark);
}

.button-outline {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}

.button-outline:hover {
    color: var(--white);
    background: var(--ink);
}

.button-light {
    border-color: var(--white);
    color: var(--ink);
    background: var(--white);
}

.button-light:hover {
    border-color: #e9b982;
    background: #e9b982;
}

.button-text {
    min-height: auto;
    padding-inline: 2px;
    color: var(--ink);
}

.button-text:hover {
    color: var(--copper-dark);
}

.text-link-light {
    color: var(--white);
    font-weight: 700;
}

.image-frame {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
}

.image-frame::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    content: '';
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flash-banner,
.form-message {
    margin-top: 24px;
    padding: 14px 18px;
    border-left: 4px solid var(--blue);
    background: #eaf5f8;
}

.flash-banner.error,
.form-message.error {
    border-left-color: #9b2c2c;
    background: #fff0ed;
}

/* Home */
.home-hero {
    position: relative;
    padding: clamp(64px, 8vw, 120px) 0 clamp(72px, 9vw, 132px);
    overflow: hidden;
}

.home-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: #ebe4d8;
    content: '';
}

.home-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.84fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
}

.home-hero-copy h1 {
    max-width: 750px;
    margin-bottom: 28px;
    font-size: clamp(58px, 7.2vw, 108px);
}

.hero-lead {
    max-width: 670px;
    margin-bottom: 38px;
    color: var(--ink-soft);
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.6;
}

.home-hero-art {
    position: relative;
    margin: 0;
}

.image-frame-hero {
    aspect-ratio: 0.92;
    box-shadow: var(--shadow);
}

.image-frame-hero img {
    object-position: 56% center;
}

.home-hero-art figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 14px;
}

.home-hero-art figcaption span {
    color: var(--ink);
    font-style: italic;
}

.hero-facts {
    display: flex;
    max-width: 670px;
    margin: 56px 0 0;
    border-top: 1px solid var(--line);
}

.hero-facts div {
    flex: 1;
    padding: 20px 20px 0 0;
}

.hero-facts dt {
    color: #68747b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 4px 0 0;
    font-family: var(--serif);
    font-size: 22px;
}

.home-services {
    padding: clamp(80px, 10vw, 150px) 0;
    background: var(--white);
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 64px;
}

.split-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(48px, 5.4vw, 78px);
}

.split-heading > p {
    max-width: 520px;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-card {
    min-height: 370px;
    padding: 44px 38px 36px;
    border-right: 1px solid var(--line);
}

.service-card:last-child {
    border-right: 0;
}

.service-card.featured {
    color: var(--white);
    background: var(--ink);
}

.service-number {
    display: block;
    margin-bottom: 70px;
    color: var(--copper);
    font-family: var(--serif);
    font-style: italic;
}

.service-card.featured .service-number {
    color: #e9b982;
}

.service-card h3 {
    margin-bottom: 16px;
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
}

.service-card p {
    color: var(--ink-soft);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.72);
}

.service-card a {
    display: inline-block;
    margin-top: 16px;
    color: var(--copper-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.service-card.featured a {
    color: #e9b982;
}

.call-for-entries {
    padding: clamp(72px, 9vw, 125px) 0;
    color: var(--white);
    background: var(--copper-dark);
}

.call-grid {
    display: grid;
    grid-template-columns: 0.55fr 1.2fr 0.6fr;
    align-items: center;
    gap: clamp(42px, 7vw, 100px);
}

.call-art {
    display: flex;
    aspect-ratio: 1;
    max-width: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #e9b982;
    font-family: var(--serif);
}

.call-art span {
    font-size: 18px;
    letter-spacing: 0.2em;
}

.call-art strong {
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    line-height: 1;
}

.call-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(52px, 6vw, 88px);
}

.call-copy > p:not(.eyebrow) {
    max-width: 690px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.call-contact {
    padding: 26px 0 26px 28px;
    border-left: 1px solid var(--line-light);
    font-style: normal;
}

.call-contact span,
.call-contact strong,
.call-contact a {
    display: block;
}

.call-contact span {
    margin-bottom: 12px;
    color: #e9b982;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.call-contact strong {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
}

.call-contact a {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
}

.why-gfl {
    padding: clamp(80px, 10vw, 150px) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: clamp(70px, 10vw, 150px);
}

.why-intro h2 {
    font-size: clamp(46px, 5.4vw, 76px);
}

.principle-grid {
    display: grid;
    gap: 0;
}

.principle-grid article {
    display: grid;
    grid-template-columns: 56px 0.8fr 1.2fr;
    gap: 28px;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.principle-grid article:last-child {
    border-bottom: 1px solid var(--line);
}

.principle-grid span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--copper);
    border-radius: 50%;
    color: var(--copper-dark);
    font-family: var(--serif);
}

.principle-grid h3 {
    margin: 6px 0 0;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
}

.principle-grid p {
    margin: 4px 0 0;
    color: var(--ink-soft);
}

/* Shared page hero */
.page-hero {
    padding: clamp(76px, 9vw, 132px) 0;
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 70px;
}

.page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(64px, 8vw, 118px);
}

.page-hero-lead {
    max-width: 520px;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-size: clamp(18px, 1.8vw, 23px);
}

.compact-hero {
    padding-block: 70px;
}

.compact-hero h1 {
    font-size: clamp(54px, 6.5vw, 86px);
}

/* Services */
.page-hero-service {
    color: var(--white);
    background: var(--ink);
}

.page-hero-service .eyebrow,
.page-hero-service .page-hero-lead {
    color: #e9b982;
}

.service-feature {
    padding: clamp(80px, 10vw, 145px) 0;
    background: var(--white);
}

.service-feature-reverse {
    background: var(--paper);
}

.service-feature-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.service-feature-reverse .service-feature-grid {
    grid-template-columns: 0.9fr 1fr;
}

.service-feature-image {
    aspect-ratio: 1.08;
    box-shadow: var(--shadow);
}

.service-feature-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(46px, 5.2vw, 75px);
}

.service-feature-copy p:not(.eyebrow) {
    max-width: 610px;
    color: var(--ink-soft);
    font-size: 18px;
}

.service-feature-copy .button {
    margin-top: 18px;
}

.valuation-section {
    padding: clamp(80px, 9vw, 125px) 0;
    color: var(--white);
    background: var(--blue);
}

.valuation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(60px, 9vw, 130px);
}

.valuation-grid h2 {
    font-size: clamp(52px, 6vw, 86px);
}

.valuation-grid > div:last-child > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 19px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 12px 0;
    border-top: 1px solid var(--line-light);
}

/* Catalogues */
.catalogue-hero {
    background: #ebe4d8;
}

.catalogue-section {
    padding: clamp(70px, 9vw, 130px) 0;
    background: var(--white);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 36px;
}

.catalogue-card {
    min-width: 0;
}

.catalogue-image {
    position: relative;
    display: block;
    aspect-ratio: 1.3;
    overflow: hidden;
    background: var(--paper-deep);
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.catalogue-image:hover img {
    transform: scale(1.035);
}

.catalogue-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 9px 13px;
    color: var(--white);
    background: var(--copper-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.catalogue-card-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
}

.catalogue-card-copy p {
    margin-bottom: 4px;
    color: #69757d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalogue-card-copy h2 {
    margin-bottom: 0;
    font-size: clamp(31px, 3vw, 45px);
}

.catalogue-card-copy h2 a {
    text-decoration: none;
}

.circle-link {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
}

.circle-link:hover {
    color: var(--white);
    background: var(--ink);
}

.catalogue-help {
    padding: 76px 0;
}

.catalogue-help-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr auto;
    align-items: center;
    gap: 50px;
}

.catalogue-help h2 {
    margin-bottom: 0;
    font-size: clamp(34px, 3.6vw, 52px);
}

.catalogue-help p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

/* About */
.about-hero {
    padding: clamp(70px, 9vw, 130px) 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px 80px;
}

.about-title h1 {
    max-width: 760px;
    font-size: clamp(58px, 7vw, 102px);
}

.about-image {
    grid-row: span 2;
    margin: 0;
    aspect-ratio: 0.93;
}

.about-image figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(16, 23, 28, 0.82);
    font-size: 13px;
    line-height: 1.45;
    backdrop-filter: blur(5px);
}

.about-intro {
    max-width: 680px;
    align-self: end;
}

.about-intro .large-copy {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(26px, 2.7vw, 38px);
    line-height: 1.25;
}

.about-intro p:last-child {
    color: var(--ink-soft);
    font-size: 17px;
}

.ethos-section {
    padding: clamp(70px, 9vw, 125px) 0;
    color: var(--white);
    background: var(--ink);
}

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

.ethos-grid article {
    min-height: 390px;
    padding: 42px 55px;
    border-right: 1px solid var(--line-light);
}

.ethos-grid article:last-child {
    border-right: 0;
}

.ethos-grid span {
    display: block;
    margin-bottom: 90px;
    color: #e9b982;
    font-family: var(--serif);
}

.ethos-grid h2 {
    font-size: clamp(40px, 4.5vw, 64px);
}

.ethos-grid p {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.about-commitment {
    padding: clamp(80px, 10vw, 145px) 0;
    text-align: center;
}

.commitment-grid {
    display: grid;
    justify-items: center;
}

.commitment-grid blockquote {
    max-width: 990px;
    margin: 0 0 45px;
    font-family: var(--serif);
    font-size: clamp(40px, 5.3vw, 76px);
    line-height: 1.15;
}

/* Contact */
.contact-hero {
    padding: clamp(70px, 8vw, 120px) 0;
    background: var(--white);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: clamp(60px, 9vw, 130px);
}

.contact-copy h1 {
    max-width: 760px;
    font-size: clamp(56px, 7vw, 100px);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 19px;
}

.contact-form,
.newsletter-form {
    display: grid;
    gap: 20px;
}

.contact-form {
    margin-top: 42px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form label,
.newsletter-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span,
.newsletter-form label > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-form small {
    color: #7d878d;
    font-weight: 500;
    text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input,
.newsletter-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
}

.contact-form input,
.contact-form select,
.newsletter-form input,
.newsletter-form select {
    height: 54px;
    padding: 0 14px;
}

.contact-form textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus,
.newsletter-form select:focus {
    border-color: var(--copper);
    outline: 2px solid rgba(173, 95, 49, 0.18);
    outline-offset: 0;
}

.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.turnstile-field {
    width: 100%;
    min-height: 65px;
}

.newsletter-form .turnstile-field {
    grid-column: 1 / -1;
}

.turnstile-unavailable {
    margin: 0;
    color: #a32f20;
    font-size: 14px;
    font-weight: 700;
}

.contact-aside {
    align-self: start;
}

.contact-image {
    aspect-ratio: 0.93;
}

.contact-direct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.contact-direct div {
    min-width: 0;
    padding: 22px 18px;
    border-right: 1px solid var(--line);
}

.contact-direct div:last-child {
    border-right: 0;
}

.contact-direct span,
.contact-direct a {
    display: block;
}

.contact-direct span {
    color: #6d777e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-direct a {
    overflow: hidden;
    font-family: var(--serif);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.locations-section {
    padding: clamp(72px, 9vw, 120px) 0;
    color: var(--white);
    background: var(--ink);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr 0.72fr;
    gap: 50px;
}

.locations-heading h2 {
    font-size: clamp(44px, 5vw, 70px);
}

.locations-grid article {
    padding-left: 32px;
    border-left: 1px solid var(--line-light);
}

.locations-grid article > span {
    color: #e9b982;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.locations-grid h3 {
    margin: 12px 0 22px;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
}

.locations-grid address,
.locations-grid article p {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

/* Legal */
.legal-content {
    max-width: 850px;
    padding-block: 76px 110px;
}

.legal-updated {
    margin-bottom: 48px;
    color: #6b747a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-content h2 {
    margin-top: 48px;
    margin-bottom: 14px;
    font-size: 34px;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    font-size: 17px;
}

.legal-content li + li {
    margin-top: 7px;
}

/* Newsletter and footer */
.newsletter-panel {
    padding: clamp(70px, 8vw, 105px) 0;
    color: var(--white);
    background: var(--copper-dark);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 8vw, 120px);
}

.newsletter-grid h2 {
    max-width: 560px;
    font-size: clamp(40px, 4.5vw, 62px);
}

.newsletter-form {
    grid-template-columns: 1fr 1.25fr 0.75fr auto;
    align-items: end;
}

.newsletter-form label > span {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input,
.newsletter-form select {
    border-color: rgba(255, 255, 255, 0.38);
    color: var(--white);
}

.newsletter-form select option {
    color: var(--ink);
}

.newsletter-form .button {
    height: 54px;
}

.form-note {
    grid-column: 1 / -1;
    margin: -4px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.site-footer {
    padding: 70px 0 26px;
    color: rgba(255, 255, 255, 0.72);
    background: #10171c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.8fr 0.65fr;
    gap: 50px;
    padding-bottom: 58px;
}

.footer-brand img {
    width: min(100%, 255px);
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 300px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #e9b982;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer address {
    font-style: normal;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.84);
}

.site-footer nav {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line-light);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Standalone auction and stockroom shells */
.page-auction #main-content,
.page-stockroom #main-content {
    padding-top: 34px;
    background: #f5f6f7;
}

.page-auction .newsletter-panel,
.page-stockroom .newsletter-panel {
    display: none;
}

@media (max-width: 1100px) {
    .primary-navigation {
        gap: 18px;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
        gap: 50px;
    }

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

    .service-card {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .service-number {
        margin-bottom: 38px;
    }

    .call-grid {
        grid-template-columns: 200px 1fr;
    }

    .call-contact {
        grid-column: 2;
    }

    .why-grid,
    .newsletter-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        grid-template-columns: 1fr 1.2fr 0.7fr auto;
    }

    .catalogue-help-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalogue-help .button {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .auction-topline-inner {
        min-height: 44px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 22px;
        padding-block: 6px;
    }

    .auction-topline-note {
        display: none;
    }

    .auction-topline-sale {
        margin-left: 0 !important;
    }

    .site-header-inner {
        min-height: 86px;
    }

    .nav-toggle {
        display: flex;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 120px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        overflow-y: auto;
        border-top: 1px solid var(--line);
        background: var(--paper);
        box-shadow: 0 30px 45px rgba(20, 29, 35, 0.15);
    }

    .primary-navigation.open {
        display: flex;
    }

    .primary-navigation a {
        padding: 15px 4px;
        border-bottom: 1px solid var(--line);
    }

    .primary-navigation .nav-contact {
        margin-top: 18px;
        padding: 14px 18px;
        text-align: center;
    }

    .home-hero::before {
        display: none;
    }

    .home-hero-grid,
    .page-hero-grid,
    .service-feature-grid,
    .service-feature-reverse .service-feature-grid,
    .valuation-grid,
    .about-hero-grid,
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-art {
        max-width: 680px;
    }

    .image-frame-hero {
        aspect-ratio: 1.2;
    }

    .split-heading,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-feature-reverse .service-feature-copy {
        order: 2;
    }

    .catalogue-grid,
    .ethos-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-card-featured .catalogue-image {
        aspect-ratio: 1.4;
    }

    .about-image {
        grid-row: auto;
        aspect-ratio: 1.2;
    }

    .ethos-grid article {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .ethos-grid span {
        margin-bottom: 50px;
    }

    .locations-grid article {
        padding: 28px 0 0;
        border-top: 1px solid var(--line-light);
        border-left: 0;
    }

    .newsletter-form {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px) {
    .auction-topline {
        font-size: 9px;
        letter-spacing: 0.045em;
    }

    .auction-topline-inner {
        flex-direction: column;
        gap: 1px;
        padding-block: 5px;
        text-align: center;
    }

    .site-container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-topline-inner span {
        display: none;
    }

    .site-topline-inner {
        justify-content: flex-end;
    }

    .site-logo img {
        width: 128px;
    }

    .home-hero-copy h1,
    .page-hero h1,
    .about-title h1,
    .contact-copy h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

    .home-hero {
        padding-top: 56px;
    }

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

    .hero-facts dd {
        font-size: 17px;
    }

    .split-heading,
    .principle-grid article {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding-inline: 24px;
    }

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

    .call-art {
        max-width: 160px;
    }

    .call-contact {
        grid-column: auto;
    }

    .check-list,
    .catalogue-grid,
    .catalogue-help-grid,
    .form-row,
    .contact-direct,
    .newsletter-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-grid {
        gap: 52px;
    }

    .catalogue-image,
    .catalogue-card-featured .catalogue-image {
        aspect-ratio: 1.15;
    }

    .contact-direct div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .contact-direct div:last-child {
        border-bottom: 0;
    }

    .newsletter-form .button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
