/* ==========================================================================
   J Burgoyne Limited - Site Stylesheet
   ========================================================================== */

:root {
    --red: #a91100;
    --red-dark: #8a0e00;
    --red-deeper: #6f0b00;
    --ink: #23211e;
    --body: #43403b;
    --muted: #6e6a64;
    --paper: #ffffff;
    --stone: #f6f5f2;
    --stone-deep: #edebe6;
    --line: #e3e0d9;
    --charcoal: #211f1c;
    --charcoal-2: #2b2926;
    --charcoal-line: #3a3733;
    --footer-text: #cfccc6;
    --radius: 10px;
    --shadow-sm: 0 1px 3px rgba(35, 33, 30, 0.08);
    --shadow-md: 0 10px 30px rgba(35, 33, 30, 0.12);
    --font-head: "Barlow", "Segoe UI", Arial, sans-serif;
    --font-body: "Barlow", "Segoe UI", Arial, sans-serif;
}

/* Reset ------------------------------------------------------------------ */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--body);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 0.6em;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }

p {
    margin: 0 0 1.1em;
}

a {
    color: var(--red);
}

a:hover {
    color: var(--red-dark);
}

ul {
    margin: 0;
    padding: 0;
}

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 2px;
    border-radius: 2px;
}

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

/* Layout helpers ---------------------------------------------------------- */

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 22px;
}

.section {
    padding-block: 84px;
}

.section-alt {
    background: var(--stone);
}

.section-head {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    color: var(--red);
    margin-bottom: 10px;
}

.lead {
    font-size: 1.15rem;
    color: var(--muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--red);
    color: #fff;
    padding: 12px 20px;
    z-index: 200;
    font-weight: 600;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    color: #fff;
}

/* Buttons ------------------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.02rem;
    font-weight: 700;
    padding: 15px 30px;
    border: 2px solid var(--red);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--red);
}

.btn-light:hover {
    background: var(--stone);
    border-color: var(--stone);
    color: var(--red-dark);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.btn svg {
    flex-shrink: 0;
}

/* Top bar ------------------------------------------------------------------ */

.topbar {
    background: var(--charcoal);
    color: #dcd9d3;
    font-size: 0.88rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px 18px;
    min-height: 42px;
    padding-block: 6px;
}

.topbar-tagline {
    margin: 0;
    letter-spacing: 0.01em;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.topbar-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.topbar-links svg {
    color: #ff6a57;
}

/* Header / navigation ------------------------------------------------------ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    width: 52px;
    height: 52px;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.1;
    white-space: nowrap;
}

.brand:hover .brand-name {
    color: var(--red);
}

.nav {
    margin-left: auto;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav a {
    display: block;
    padding: 10px 11px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink);
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--red);
    background: var(--stone);
}

.nav a[aria-current="page"] {
    color: var(--red);
    box-shadow: inset 0 -3px 0 var(--red);
    border-radius: 6px 6px 0 0;
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.nav-est {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--line);
    border-radius: 6px;
    width: 48px;
    height: 48px;
    padding: 10px;
    cursor: pointer;
    color: var(--ink);
}

.nav-toggle:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Home hero ---------------------------------------------------------------- */

.hero {
    position: relative;
    background: var(--charcoal);
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, rgba(24, 20, 17, 0.88) 0%, rgba(24, 20, 17, 0.72) 45%, rgba(24, 20, 17, 0.45) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
    padding-block: 88px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 18px;
}

.hero .eyebrow {
    color: #ff8272;
}

.hero-text p {
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 34em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

/* Enquiry form card (hero + reuse) ----------------------------------------- */

.form-card {
    background: #fff;
    color: var(--body);
    border-radius: 12px;
    padding: 30px 28px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--red);
}

.form-card h2 {
    font-size: 1.45rem;
    margin-bottom: 4px;
}

.form-card > p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

/* Trust strip ---------------------------------------------------------------- */

.strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-block: 26px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.06rem;
    color: var(--ink);
}

.strip-item svg {
    color: var(--red);
    flex-shrink: 0;
}

/* Split rows (image + text) -------------------------------------------------- */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.split-media {
    position: relative;
}

.split-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.split-media::before {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 3px solid var(--red);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.55;
}

.split-media.plain::before {
    display: none;
}

.split-media.plain img {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

/* Checklist ------------------------------------------------------------------ */

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    margin: 22px 0 28px;
}

.checklist.single {
    grid-template-columns: 1fr;
}

.checklist li {
    position: relative;
    padding-left: 36px;
    font-weight: 600;
    color: var(--ink);
    font-size: 1.04rem;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Service cards ---------------------------------------------------------------- */

.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.cards.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--stone-deep);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.22rem;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.card-link {
    margin-top: auto;
    font-family: var(--font-head);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.card-link:hover {
    gap: 11px;
}

.card-link::after {
    content: "\2192";
    transition: none;
}

/* Testimonials ------------------------------------------------------------------ */

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

.testimonial-grid.stack {
    grid-template-columns: 1fr;
    margin-top: 28px;
}

.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin: 0;
}

.testimonial::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 4.2rem;
    line-height: 1;
    color: var(--red);
    position: absolute;
    top: 14px;
    left: 24px;
    opacity: 0.28;
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--ink);
    position: relative;
    margin-bottom: 18px;
}

.testimonial footer {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
}

.testimonial footer span {
    display: block;
    font-weight: 500;
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 2px;
}

.testimonial footer::before {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: var(--red);
    margin-bottom: 12px;
    border-radius: 2px;
}

/* CTA band ------------------------------------------------------------------------ */

.cta-band {
    background: linear-gradient(115deg, var(--red-deeper), var(--red) 55%, var(--red-dark));
    color: #fff;
    text-align: center;
    padding-block: 74px;
}

.cta-band h2 {
    color: #fff;
    max-width: 22em;
    margin-inline: auto;
}

.cta-band p {
    max-width: 46em;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.1rem;
}

/* Sub-page hero -------------------------------------------------------------------- */

.page-hero {
    background: var(--charcoal);
    background-image: linear-gradient(105deg, rgba(169, 17, 0, 0.32), rgba(33, 31, 28, 0) 55%);
    color: #fff;
    border-bottom: 4px solid var(--red);
}

.page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
    padding-block: 56px;
}

.page-hero h1 {
    color: #fff;
    margin: 0;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.85);
    margin: 10px 0 0;
    max-width: 38em;
}

.call-chip {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 14px 22px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.call-chip:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.call-chip svg {
    color: #ff6a57;
}

.call-chip .call-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.call-chip .call-number {
    display: block;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Content blocks on service pages ---------------------------------------------------- */

.service-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    margin-top: 34px;
}

.service-block h3::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--red);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.service-block h3:first-child {
    margin-top: 0;
}

.media-stack {
    display: grid;
    gap: 24px;
    align-content: start;
}

.media-stack img {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    width: 100%;
    object-fit: cover;
}

.note-box {
    background: var(--stone);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.note-box p {
    margin: 0;
    font-weight: 500;
    color: var(--ink);
}

.inline-cta {
    margin-top: 30px;
}

/* Gallery ------------------------------------------------------------------------------ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    border: none;
    background: var(--stone-deep);
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
}

.lightbox::backdrop {
    background: rgba(15, 13, 11, 0.92);
}

.lightbox-inner {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 76px;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-btn {
    position: fixed;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

.lightbox-btn:hover {
    background: var(--red);
}

.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* Forms --------------------------------------------------------------------------------- */

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

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label,
.field legend {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--ink);
}

.req {
    color: var(--red);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
    font: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid #c9c5bd;
    border-radius: 7px;
    padding: 12px 14px;
    min-height: 50px;
    width: 100%;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 3px solid rgba(169, 17, 0, 0.35);
    outline-offset: 0;
    border-color: var(--red);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2343403b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
}

fieldset.field {
    border: none;
    padding: 0;
    margin: 0;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding-top: 4px;
}

.radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--body);
    cursor: pointer;
}

.radio-row input[type="radio"] {
    width: 21px;
    height: 21px;
    accent-color: var(--red);
    cursor: pointer;
}

.form-actions {
    grid-column: 1 / -1;
    margin-top: 6px;
}

.form-actions .btn {
    width: 100%;
}

.form-note {
    grid-column: 1 / -1;
    font-size: 0.88rem;
    color: var(--muted);
    margin: 4px 0 0;
}

.form-success {
    grid-column: 1 / -1;
    display: none;
    background: #eef7ee;
    border: 1.5px solid #2e7d32;
    color: #205723;
    border-radius: 8px;
    padding: 16px 18px;
    font-weight: 600;
}

.form-success.visible {
    display: block;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Contact page ----------------------------------------------------------------------------- */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: start;
}

.contact-panel {
    background: var(--charcoal);
    color: var(--footer-text);
    border-radius: var(--radius);
    padding: 34px 32px;
}

.contact-panel h2 {
    color: #fff;
    font-size: 1.4rem;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 22px;
    margin-top: 26px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-list svg {
    color: #ff6a57;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #979289;
    margin-bottom: 3px;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
}

.contact-list a:hover {
    color: #ff8272;
}

.contact-list address {
    font-style: normal;
    color: #fff;
    font-weight: 500;
    line-height: 1.55;
}

/* Footer ------------------------------------------------------------------------------------- */

.site-footer {
    background: var(--charcoal);
    color: var(--footer-text);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 48px;
    padding-block: 64px 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
}

.footer-brand span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}

.site-footer h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.site-footer h4::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: var(--red);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    display: grid;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact svg {
    color: #ff6a57;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact a {
    color: var(--footer-text);
    text-decoration: none;
}

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

.footer-contact address {
    font-style: normal;
    line-height: 1.55;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
}

.social-link:hover {
    color: #ff8272;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-line);
    padding-block: 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive ------------------------------------------------------------------------------------ */

@media (max-width: 1250px) {
    .nav a {
        padding: 10px 9px;
        font-size: 0.95rem;
    }
}

@media (max-width: 1200px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 1150px) {
    .topbar-tagline {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }
}

@media (max-width: 920px) {
    .section {
        padding-block: 60px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        display: none;
        margin-left: 0;
    }

    .nav.open {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .nav a {
        padding: 15px 26px;
        font-size: 1.08rem;
        border-radius: 0;
    }

    .nav a[aria-current="page"] {
        box-shadow: inset 4px 0 0 var(--red);
        background: var(--stone);
    }

    .nav-est {
        display: block;
        padding: 10px 26px 16px;
    }

    .nav .nav-est a {
        background: var(--red);
        color: #fff;
        text-align: center;
        font-weight: 700;
        border-radius: 6px;
        padding: 15px 20px;
    }

    .nav .nav-est a:hover {
        background: var(--red-dark);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-block: 64px;
    }

    .split,
    .split.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-media {
        max-width: 560px;
    }

    .split-media::before {
        inset: 14px -14px -14px 14px;
    }

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

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

    .strip-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-block: 20px;
    }

    .strip-item {
        justify-content: flex-start;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 52px 40px;
    }

}

@media (max-width: 600px) {
    body {
        font-size: 1rem;
    }

    .topbar-links {
        gap: 16px;
    }

    .topbar-links a[href^="mailto"] {
        display: none;
    }

    .cards,
    .cards.cols-2 {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-actions .btn {
        width: 100%;
    }

    .page-hero-inner {
        padding-block: 42px;
    }

    .call-chip {
        width: 100%;
        justify-content: center;
    }

    .lightbox-inner {
        padding: 66px 12px;
    }

    .lightbox-prev { left: 8px; top: auto; bottom: 14px; transform: none; }
    .lightbox-next { right: 8px; top: auto; bottom: 14px; transform: none; }
}
