/* ============================================================
   Combustion Linings Ltd — Stylesheet
   Primary Yellow: #FFE000
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    color: #2c2c2c;
    background-color: #1a0a2e;
    line-height: 1.7;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/images/stoke-potteries-background.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.18;
    z-index: -1;
}

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

a {
    color: #c8a800;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1c1c1c;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #1c1c1c;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.4rem;
}

/* --- Layout --- */
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.site-outer {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 60px rgba(0,0,0,0.45);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-outer > main {
    flex: 1;
}

/* --- Site Header --- */
/*
 * Logo: 800×834px. Crossbar centre ≈ 63% down the image.
 * Logo-mark column height ≈ 170px (2×0.75rem padding + 146px displayed).
 * Crossbar centre as % of identity column = ~61%.
 * Extrusion thickness ≈ 11% of logo height = ~9.5% of identity column.
 * Both values are percentage-based so they hold at all breakpoints.
 */
.site-header {
    background-color: #ffffff;
    overflow: hidden;
}

.site-header__inner {
    display: flex;
    align-items: stretch;
    padding-left: 3.5rem;
    /* No right padding — tagline bar extends flush to box edge */
}

.site-header__logo-mark {
    flex-shrink: 0;
    width: 140px;
    padding: 0.75rem 1.75rem 0.75rem 0;
}

.site-header__logo-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Identity column takes all remaining width and acts as the
   positioning context for the two absolutely placed children. */
.site-header__identity {
    flex: 1;
    position: relative;
    min-width: 0;
}

/* Company name — positioned 22px from top of identity column */
.site-header__name {
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1c1c1c;
    margin: 0;
}

/* Yellow bar — pixel-tuned at desktop (logo width 140px):
   top: 80px  aligns centre with the logo's L extrusion
   height: 28px matches the extrusion thickness.
   Mobile breakpoints scale both values proportionally (×90/140, ×70/140). */
.site-header__tagline-bar {
    position: absolute;
    top: 80px;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 28px;
    background-color: #FFE000;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.site-header__tagline {
    display: block;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-style: italic;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #1c1c1c;
    line-height: 1;
    white-space: nowrap;
}

/* Case history result highlight */
.callout-card__result {
    color: #FFE000;
    font-weight: 700;
}


/* --- Primary Navigation --- */
.site-nav {
    background-color: #1c1c1c;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.site-nav .wrapper {
    display: flex;
    align-items: stretch;
}

.site-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.site-nav__item a {
    display: block;
    padding: 1rem 1.1rem;
    color: #e0e0e0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 3px solid transparent;
}

.site-nav__item a:hover,
.site-nav__item a.active {
    background-color: #FFE000;
    color: #1c1c1c;
    border-bottom-color: #c8a800;
}

/* --- Mobile nav toggle --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 1.5rem;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #e0e0e0;
    transition: background-color 0.2s;
}

.nav-toggle:hover span {
    background-color: #FFE000;
}

/* --- Page Content --- */
.page-content {
    padding: 3rem 0 4rem;
}

/* --- Hero / Page Title Banner --- */
.page-hero {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
}

.page-hero__label {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFE000;
    margin-bottom: 0.5rem;
}

.page-hero__title {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin: 0;
    max-width: 640px;
}

/* --- Home page hero --- */
.home-hero {
    background: linear-gradient(135deg, #1c1c1c 60%, #3a3a3a 100%);
    color: #ffffff;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.home-hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: 3rem;
    align-items: center;
}

.home-hero__content {
    min-width: 0;
}

.home-hero__eyebrow {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFE000;
    margin-bottom: 1rem;
}

.home-hero__heading {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.home-hero__heading span {
    color: #FFE000;
}

.home-hero__intro {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-hero__actions .btn--outline {
    margin-left: 0;
}

.home-hero__photo {
    margin: 0;
    justify-self: end;
}

.home-hero__photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border-left: 5px solid #FFE000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.home-hero__photo-caption {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn--primary {
    background-color: #FFE000;
    color: #1c1c1c;
}

.btn--primary:hover {
    background-color: #e0c800;
    color: #1c1c1c;
}

.btn--outline {
    border: 2px solid #FFE000;
    color: #FFE000;
    margin-left: 1rem;
}

.btn--outline:hover {
    background-color: #FFE000;
    color: #1c1c1c;
}

/* --- Services Grid (Home) --- */
.services-section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header__label {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c8a800;
    margin-bottom: 0.4rem;
}

.section-header__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border: 1px solid #e8e8e8;
    border-top: 4px solid #FFE000;
    border-radius: 4px;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    background-color: #ffffff;
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #1c1c1c;
}

.service-card__desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card__link {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c8a800;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-card__link::after {
    content: '→';
}

.service-card__link:hover {
    color: #1c1c1c;
}

/* --- About Strip (Home) --- */
.about-strip {
    background-color: #f7f7f5;
    border-left: 5px solid #FFE000;
    padding: 2.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 4px 4px 0;
}

.about-strip p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.about-strip p:last-child {
    margin-bottom: 0;
}

.about-strip__clients-block {
    margin: 2.5rem -2rem -2.5rem;
    padding: 2rem 2rem 2.5rem;
    border-top: 1px solid #e0e0dc;
    background-color: #ffffff;
    border-radius: 0 0 4px 0;
}

.about-strip__clients-intro {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-strip__clients {
    margin-bottom: 0;
}

/* --- Stats Bar (Home) --- */
.stats-bar {
    background-color: #1c1c1c;
    padding: 2rem 0;
    margin: 2.5rem 0;
}

.stats-bar .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
    text-align: center;
}

.stat-item__number {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #FFE000;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-item__label {
    font-size: 0.82rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* --- Content Sections --- */
.content-section {
    margin-bottom: 2.5rem;
}

.content-section + .content-section {
    padding-top: 2.5rem;
    border-top: 1px solid #eeeeee;
}

/* --- Highlight Box --- */
.highlight-box {
    background-color: #fff9cc;
    border-left: 4px solid #FFE000;
    padding: 1.25rem 1.5rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.5rem;
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    color: #1c1c1c;
}

/* --- Feature List --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.5rem 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    margin: 0;
}

.feature-list li::before {
    content: '✦';
    color: #FFE000;
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 0.65rem;
}

.about-strip .feature-list.about-strip__clients {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 2.5rem;
    margin-bottom: 0;
}

.about-strip .feature-list.about-strip__clients li {
    padding: 0.65rem 0 0.65rem 1.5rem;
    border-bottom-color: #eeeeee;
}

.about-strip .feature-list.about-strip__clients li::before {
    content: '✓';
    color: #2e8b3c;
    font-size: 0.9rem;
    font-weight: 700;
    top: 0.6rem;
}

/* --- Advantages List --- */
.advantages-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    counter-reset: adv-counter;
}

.advantages-list li {
    padding: 0.6rem 0 0.6rem 2.75rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    counter-increment: adv-counter;
    font-size: 0.95rem;
    margin: 0;
}

.advantages-list li::before {
    content: counter(adv-counter);
    position: absolute;
    left: 0;
    top: 0.5rem;
    background-color: #FFE000;
    color: #1c1c1c;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- Two Column Layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* --- Content Images --- */
.content-intro::after {
    content: '';
    display: table;
    clear: both;
}

.content-intro__gallery {
    float: right;
    width: min(100%, 360px);
    margin: 0 0 1rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.content-intro__gallery--single {
    grid-template-columns: 1fr;
    width: min(100%, 200px);
}

.content-figure {
    margin: 0;
}

.content-figure__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: 4px;
    overflow: hidden;
    border-left: 4px solid #FFE000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.content-figure__trigger:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.content-figure__trigger:focus-visible {
    outline: 2px solid #FFE000;
    outline-offset: 2px;
}

.content-figure--thumb img,
.content-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border-left: 5px solid #FFE000;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.content-figure--thumb img {
    aspect-ratio: 1;
    object-fit: cover;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.content-figure--thumb .content-figure__trigger {
    border-left-width: 4px;
}

.content-figure__caption {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: #666;
    font-style: italic;
    line-height: 1.35;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.photo-grid .content-figure img {
    aspect-ratio: 1;
    object-fit: cover;
    cursor: zoom-in;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.photo-grid .content-figure img:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.media-aside {
    display: grid;
    grid-template-columns: 1fr minmax(160px, 200px);
    gap: 2rem;
    align-items: start;
}

.media-aside .content-figure img {
    aspect-ratio: 1;
    object-fit: cover;
    cursor: zoom-in;
}

.media-aside__pair {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 420px;
}

.media-aside__pair .content-figure img {
    aspect-ratio: 1;
    object-fit: cover;
    cursor: zoom-in;
}

/* --- Image Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.82);
    cursor: pointer;
}

.lightbox__dialog {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 900px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 4rem);
    width: auto;
    height: auto;
    border-radius: 4px;
    border-left: 5px solid #FFE000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.lightbox__caption {
    margin: 0.85rem 0 0;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}

.lightbox__caption:empty {
    display: none;
}

.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1c1c1c;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease;
}

.lightbox__close:hover {
    background-color: #FFE000;
}

.lightbox__close:focus-visible {
    outline: 2px solid #FFE000;
    outline-offset: 2px;
}

body.lightbox-open {
    overflow: hidden;
}

/* --- Case History / Callout Card --- */
.callout-card {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.callout-card h3 {
    color: #FFE000;
    margin-bottom: 1rem;
}

.callout-card p {
    color: #cccccc;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.callout-card p:last-child {
    margin-bottom: 0;
}

/* --- Installation Steps --- */
.phase-block {
    margin-bottom: 1.75rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.phase-block__header {
    background-color: #1c1c1c;
    color: #FFE000;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.25rem;
}

.phase-block__body {
    padding: 1.25rem;
}

.phase-block__body ol {
    margin: 0;
    padding-left: 1.5rem;
}

.phase-block__body li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.phase-note {
    margin-top: 1rem;
}

/* --- Warning / Notice Box --- */
.notice-box {
    background-color: #fff3cd;
    border: 1px solid #FFE000;
    border-left: 4px solid #c8a800;
    padding: 1rem 1.25rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.notice-box strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1c1c1c;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-grid aside {
    display: flex;
    flex-direction: column;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contact-details li {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    align-items: flex-start;
    margin: 0;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details__label {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    min-width: 70px;
    padding-top: 0.1rem;
}

.contact-details__value {
    color: #2c2c2c;
    font-weight: 500;
}

.contact-details__value a {
    color: #2c2c2c;
}

.contact-details__value a:hover {
    color: #c8a800;
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    min-height: 340px;
    border: 1px solid #e8e8e8;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    border: none;
}

/* --- Site Footer --- */
.site-footer {
    background-color: #1c1c1c;
    color: #888;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 3px solid #FFE000;
}

.site-footer .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand__name {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.footer-brand__tagline {
    font-style: italic;
    color: #FFE000;
    font-size: 0.85rem;
}

.footer-nav__title {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav__list li {
    margin-bottom: 0.35rem;
}

.footer-nav__list a {
    color: #888;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-nav__list a:hover {
    color: #FFE000;
}

.footer-contact__title {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-contact p {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 0.35rem;
}

.footer-contact a {
    color: #aaa;
}

.footer-contact a:hover {
    color: #FFE000;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wrapper {
        padding: 0 1.75rem;
    }

    .site-header__inner {
        padding-left: 1.75rem;
    }

    .site-header__logo-mark {
        width: 90px;
        padding: 0.6rem 1.25rem 0.6rem 0;
    }

    .site-header__name {
        font-size: 1.25rem;
    }

    /* Scale top and height proportionally: logo 90px vs desktop 140px = 0.643× */
    .site-header__tagline-bar {
        top: 51px;
        height: 18px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .site-header__name { font-size: 1.3rem; }

    .home-hero__heading { font-size: 1.9rem; }
    .page-hero__title { font-size: 1.7rem; }

    .home-hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-hero__photo {
        justify-self: center;
        max-width: 280px;
    }

    .nav-toggle { display: flex; }

    .site-nav__list {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .site-nav__list.is-open {
        display: flex;
    }

    .site-nav__item a {
        padding: 0.85rem 1.5rem;
        border-bottom: 1px solid #333;
    }

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-intro__gallery {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem;
        max-width: 360px;
    }

    .media-aside {
        grid-template-columns: 1fr;
    }

    .media-aside__pair {
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }

    .btn--outline { margin-left: 0; margin-top: 0.75rem; }

    .stats-bar .wrapper {
        gap: 1.25rem;
    }

    .site-footer .wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-strip .feature-list.about-strip__clients {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 0 1.25rem;
    }

    .site-header__inner {
        padding-left: 1.25rem;
    }

    .site-header__logo-mark {
        width: 70px;
        padding: 0.5rem 1rem 0.5rem 0;
    }

    .site-header__name {
        font-size: 0.9rem;
        top: 14px;
    }

    /* Scale top and height proportionally: logo 70px vs desktop 140px = 0.5× */
    .site-header__tagline-bar {
        top: 40px;
        height: 14px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .about-strip .feature-list.about-strip__clients {
        grid-template-columns: 1fr;
    }

    .media-aside__pair {
        grid-template-columns: 1fr;
    }
}
