:root {
    --bg: #f5f6f8;
    --bg-soft: #f8f9fb;
    --surface: #ffffff;
    --surface-strong: #fff7ed;
    --ink: #3b3d46;
    --ink-strong: #031629;
    --muted: #5d6470;
    --line: #d9dde3;
    --accent: #f78b08;
    --accent-strong: #d87800;
    --accent-deep: #9f5605;
    --dark-panel: #031629;
    --dark-panel-soft: #0a2138;
    --success: #14532d;
    --error: #8f1d1d;
    --radius: 12px;
    --shadow: 0 18px 42px rgba(3, 22, 41, 0.08);
}

* {
    box-sizing: border-box;
}

/* Global Document */
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    background: white;
    color: var(--ink);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: clip;
}

body.nav-open {
    overflow: hidden;
}

/* Global Media And Links */
a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

/* Main Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(47, 57, 69, 0.08);
}

.site-header__inner,
.hero,
.section,
.content-grid,
.detail-grid,
.admin-grid {
    display: grid;
    gap: 1.5rem;
}

.site-header__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Brand Mark */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-deep));
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(51, 148, 240, 0.24);
}

img.logo__mark {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    object-fit: contain;
    width: auto;
    height: 2.7rem;
    max-width: 9rem;
}

.logo__wording {
    display: grid;
    line-height: 1.05;
}

.logo__wording strong {
    color: var(--ink-strong);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo__wording span {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Primary Navigation */
.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.98rem;
}

.nav__panel,
.nav__body {
    display: contents;
}

.nav__header,
.nav__footer,
.nav-mobile-cta,
.menu-toggle,
.nav-close,
.nav-backdrop {
    display: none;
}

.nav a,
.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    cursor: pointer;
    transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.nav a.is-active,
.nav-dropdown__trigger.is-active {
    color: var(--accent-deep);
    background: linear-gradient(180deg, rgba(127, 196, 255, 0.2), rgba(127, 196, 255, 0.1));
    box-shadow: inset 0 0 0 1px rgba(45, 121, 197, 0.14), 0 10px 18px rgba(45, 121, 197, 0.08);
}

.nav a:hover,
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
    color: var(--accent-deep);
    background: rgba(127, 196, 255, 0.14);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-dropdown__trigger span {
    pointer-events: none;
}

.nav-dropdown__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: transform 0.2s ease;
}

.nav-dropdown__chevron svg {
    width: 0.92rem;
    height: 0.92rem;
}

.nav__socials {
    display: flex;
    gap: 1rem;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    display: grid;
    gap: 0.35rem;
    min-width: 13rem;
    padding: 0.75rem;
    border: 1px solid rgba(47, 57, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 44px rgba(27, 69, 113, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.nav-dropdown__menu a {
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 5px;
    color: var(--ink);
}

.nav-dropdown__menu a:hover {
    color: var(--accent-deep);
    background: var(--surface-strong);
    transform: none;
}

.nav-dropdown:hover > .nav-dropdown__menu,
.nav-dropdown:focus-within > .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > .nav-dropdown__trigger > .nav-dropdown__chevron,
.nav-dropdown:focus-within > .nav-dropdown__trigger > .nav-dropdown__chevron {
    transform: rotate(180deg);
}

.nav-dropdown--nested {
    position: relative;
}

.nav-dropdown--nested > .nav-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
}

.nav-dropdown--nested:hover > .nav-dropdown__trigger,
.nav-dropdown--nested:focus-within > .nav-dropdown__trigger {
    color: var(--accent-deep);
    background: var(--surface-strong);
    transform: none;
}

.nav-dropdown__chevron--nested svg {
    width: 0.78rem;
    height: 0.78rem;
    transform: rotate(-90deg);
}

.nav-dropdown--nested:hover > .nav-dropdown__trigger > .nav-dropdown__chevron--nested,
.nav-dropdown--nested:focus-within > .nav-dropdown__trigger > .nav-dropdown__chevron--nested {
    transform: none;
}

.nav-dropdown__menu--nested {
    top: -0.75rem;
    left: calc(100% + 0.35rem);
    min-width: 16rem;
}

.nav-dropdown--nested:last-child > .nav-dropdown__menu--nested {
    top: auto;
    bottom: -0.75rem;
}

.menu-toggle:focus-visible,
.nav-close:focus-visible,
.nav a:focus-visible,
.nav-dropdown__trigger:focus-visible,
.nav-backdrop:focus-visible {
    outline: 3px solid rgba(127, 196, 255, 0.55);
    outline-offset: 2px;
}

/* Global Buttons */
.button,
button:not(.nav-dropdown__trigger):not(.menu-toggle):not(.nav-close):not(.nav-backdrop):not(.inventory-gallery__thumb):not(.admin-icon-button):not([class*="ql-"]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.88rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: var(--dark-panel);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
button:not(.nav-dropdown__trigger):not(.menu-toggle):not(.nav-close):not(.nav-backdrop):not(.inventory-gallery__thumb):not(.admin-icon-button):not([class*="ql-"]):hover {
    transform: translateY(-2px);
    background: var(--dark-panel-soft);
    box-shadow: 0 10px 22px rgba(46, 57, 68, 0.16);
}

.button--accent {
    background: var(--accent);
    color: var(--ink-strong);
}

.button--accent:hover {
    background: var(--accent-strong);
    color: white;
}

.button--ghost {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

.button--ghost:hover {
    background: var(--surface-strong);
    border-color: var(--accent);
    color: var(--accent-deep);
}

/* Main Page Layout */
.page {
    padding: 2.5rem 0 4rem;
}

.panel,
.inquiry-form {
    padding: 1.55rem;
}

.card,
.card,
.notice,
.panel,
.inquiry-form,
.stat {
    border: 1px solid rgba(47, 57, 69, 0.08);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

/* Shared Section Typography */
.section h2,
.content-grid h1,
.detail-grid h1,
.admin-grid h1 {
    margin: 0;
    color: var(--ink-strong);
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    line-height: 1.04;
}

.section-intro,
.muted {
    color: var(--muted);
}

/* Home Hero Banner */
.hero-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-top: -2.5rem;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 23, 34, 0.12), rgba(10, 23, 34, 0.18));
}

.hero-banner__overlay {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    padding-top: clamp(4.5rem, 6vw, 5.75rem);
}

.hero-banner__content {
    width: min(1180px, calc(100% - 2rem));
    margin: auto auto;
}

.hero-banner__copy {
    max-width: 78rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
}

.hero-banner__copy h1 {
    margin: 0 0 0.55rem;
    color: white;
    font-size: clamp(2.1rem, 2.7vw, 3.45rem);
    line-height: 1.03;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hero-banner__copy p {
    margin: 0 0 1.8rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 1.35vw, 1.55rem);
    line-height: 1.25;
}

.hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Home Hero Primary CTA */
.hero-banner__button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 1.35rem;
    border-radius: 4px;
    background: #2877c6;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(17, 74, 131, 0.24);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-banner__button:hover {
    background: #1f69b2;
    transform: translateY(-1px);
}

/* Home Contact Strip */
.hero-contact-wrap {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 0;
}

.hero-contact-strip {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #2d79c5;
}

.hero-contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1.5rem;
    color: white;
}

.hero-contact-card + .hero-contact-card {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
}

.hero-contact-card__icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.hero-contact-card__body h3,
.hero-contact-card__body p {
    margin: 0;
}

.hero-contact-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-contact-card__body p {
    font-size: 0.98rem;
    line-height: 1.35;
    opacity: 0.97;
}

/* Home Welcome Intro */
.home-welcome {
    padding-top: 1.2rem;
}

.home-welcome__heading {
    margin-bottom: 1.8rem;
    text-align: center;
}

.home-welcome__heading h2 {
    font-size: clamp(1.9rem, 2.55vw, 3rem);
}

.home-welcome__feature {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1.6rem;
    align-items: center;
    max-width: 84rem;
    margin: 0 auto;
    padding: 2rem 0 1rem;
}

.home-welcome__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    border: 1px solid #d7dbe1;
    color: #9ba3ad;
    background: #f5f5f5;
}

.home-welcome__icon svg {
    width: 2.8rem;
    height: 2.8rem;
}

.home-welcome__copy h3 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.35rem, 1.6vw, 2rem);
    font-weight: 800;
}

.home-welcome__copy h3 a {
    color: #2d79c5;
    transition: color 0.2s ease;
}

.home-welcome__copy h3 a:hover {
    color: #1f69b2;
}

.home-welcome__copy p {
    margin: 0;
    color: #6b7077;
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    line-height: 1.72;
}

/* Home Job Site Services */
.home-job-site-services {
    padding-top: 1rem;
}

.home-job-site-services__heading {
    margin-bottom: 2.1rem;
    text-align: center;
}

.home-job-site-services__heading h2 {
    font-size: clamp(2.15rem, 3vw, 3.7rem);
}

.home-job-site-services__layout {
    display: grid;
    grid-template-columns: 1fr minmax(17rem, 26rem) 1fr;
    gap: 2.4rem;
    align-items: start;
}

.home-job-site-services__column {
    display: grid;
    gap: 3rem;
}

.home-job-site-services__column--left {
    padding-top: 4rem;
}

.home-job-site-services__column--right {
    padding-top: 4rem;
}

.home-job-site-services__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.8rem;
}

.home-job-site-services__image-wrap img {
    width: 100%;
    max-width: 24rem;
    height: auto;
    display: block;
}

.service-feature {
    display: grid;
    gap: 1.2rem;
    align-items: center;
}

.service-feature--left {
    grid-template-columns: minmax(0, 1fr) 5.8rem;
}

.service-feature--right {
    grid-template-columns: 5.8rem minmax(0, 1fr);
}

.service-feature__text h3 {
    margin: 0 0 0.75rem;
    color: #3b434b;
    font-size: clamp(1.55rem, 1.9vw, 2.35rem);
    font-weight: 800;
    line-height: 1.08;
}

.service-feature__title-link {
    color: inherit;
    transition: color 0.2s ease;
}

.service-feature__title-link:focus-visible,
.service-feature__icon:focus-visible {
    outline: 3px solid rgba(127, 196, 255, 0.55);
    outline-offset: 4px;
}

.service-feature__text p {
    margin: 0;
    color: #6b7077;
    font-size: clamp(1rem, 1.08vw, 1.14rem);
    line-height: 1.74;
}

.service-feature__text {
    min-width: 0;
}

.service-feature--left .service-feature__text {
    text-align: right;
}

.service-feature--right .service-feature__text {
    text-align: left;
}

.service-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.9rem;
    height: 4.9rem;
    border-radius: 999px;
    background: #f5f5f5;
    color: #a7a7a7;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.service-feature__icon svg {
    width: 2rem;
    height: 2rem;
}

.service-feature:hover .service-feature__icon {
    background: linear-gradient(180deg, #7fc4ff, #2d79c5);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 28px rgba(45, 121, 197, 0.22);
}

.service-feature:hover .service-feature__text h3 {
    color: #2d79c5;
}

/* Home Technical Support Banner */
.home-support-banner {
    width: 100vw;
    margin-top: 3.25rem;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background: #2d79c5;
}

.home-support-banner__inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 2rem;
    padding: 3.35rem 0 3rem;
    text-align: center;
}

.home-support-banner__inner h2 {
    max-width: 68rem;
    margin: 0;
    color: white;
    font-size: clamp(2rem, 3vw, 3.35rem);
    font-weight: 800;
    line-height: 1.18;
}

.home-support-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 16rem;
    padding: 1rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    background: transparent;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.home-support-banner__button:hover {
    background: white;
    color: #2d79c5;
    border-color: white;
    transform: translateY(-1px);
}

/* Home Drilling Accessories */
.home-drilling-accessories {
    padding-top: 0.8rem;
}

.home-drilling-accessories__heading {
    margin-bottom: 2.2rem;
    text-align: center;
}

.home-drilling-accessories__heading h2 {
    font-size: clamp(2.15rem, 3vw, 3.5rem);
}

.home-drilling-accessories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.accessory-card {
    border: 1px solid rgba(47, 57, 69, 0.08);
    border-radius: 24px;
    background: white;
    box-shadow: 0 18px 40px rgba(27, 69, 113, 0.08);
    overflow: hidden;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.accessory-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 121, 197, 0.18);
    box-shadow: 0 28px 58px rgba(27, 69, 113, 0.16);
}

.accessory-card__media {
    position: relative;
    aspect-ratio: 1 / 1.18;
    overflow: hidden;
    background: #eef5fb;
}

.accessory-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 28, 42, 0) 48%, rgba(11, 28, 42, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.26s ease;
}

.accessory-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.accessory-card:hover .accessory-card__media img {
    transform: scale(1.05);
}

.accessory-card:hover .accessory-card__media::after {
    opacity: 0.7;
}

.accessory-card__body {
    display: grid;
    gap: 0.65rem;
    padding: 1.25rem 1.2rem 1.35rem;
}

.accessory-card__body h3 {
    margin: 0;
    color: #3b434b;
    font-size: clamp(1.35rem, 1.55vw, 1.85rem);
    font-weight: 800;
    line-height: 1.08;
    transition: color 0.22s ease;
}

.accessory-card__body p {
    margin: 0;
    color: #687583;
    font-size: 0.99rem;
    line-height: 1.68;
}

.accessory-card:hover .accessory-card__body h3 {
    color: #2d79c5;
}

/* Home Partners */
.home-partners {
    padding-top: 0.9rem;
}

.home-partners__heading {
    margin-bottom: 2rem;
    text-align: center;
}

.home-partners__heading h2 {
    font-size: clamp(2.1rem, 3vw, 3.45rem);
}

.home-partners__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 1.4rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.25rem;
    padding: 1.1rem 0.9rem;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(47, 57, 69, 0.06);
    box-shadow: 0 14px 34px rgba(27, 69, 113, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 121, 197, 0.16);
    box-shadow: 0 22px 42px rgba(27, 69, 113, 0.12);
}

.partner-logo:focus-visible {
    outline: 3px solid rgba(127, 196, 255, 0.55);
    outline-offset: 4px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 3.9rem;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.22s ease;
}

.partner-logo:hover img {
    transform: scale(1.03);
}

/* Shared Section Layout */
.eyebrow {
    display: inline-block;
    margin-bottom: 0.25rem;
    color: var(--accent-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stack,
.card-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.section {
    margin-top: 2.2rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}

.grid-3,
.grid-4,
.trust-strip,
.admin-grid,
.content-grid,
.detail-grid {
    display: grid;
    gap: 1rem;
}

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

.grid-4,
.trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stat {
    padding: 1.25rem;
}

.card h3,
.panel h2,
.stat h3 {
    margin-top: 0;
    color: var(--ink-strong);
}

.tag {
    display: inline-flex;
    width: fit-content;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: rgba(127, 196, 255, 0.16);
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 700;
}

.tag--soft {
    background: rgba(255, 255, 255, 0.82);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
}

.panel--wide {
    padding: 1.75rem;
}

/* Notices */
.notice {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    transition: opacity 0.22s ease, transform 0.22s ease, margin 0.22s ease, padding 0.22s ease;
}

.notice.is-dismissing {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-0.35rem);
}

.notice--success {
    border-color: rgba(20, 83, 45, 0.18);
    color: var(--success);
}

.notice--error {
    border-color: rgba(143, 29, 29, 0.18);
    color: var(--error);
}

/* Forms */
.inquiry-form form,
.form-grid {
    display: grid;
    gap: 0.9rem;
}

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

label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-strong);
}

input,
textarea,
select {
    width: 100%;
    padding: 0.82rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fcfeff;
    color: var(--ink);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(127, 196, 255, 0.18);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

/* Contact Page Hero Panel */
.split--contact {
    gap: 1.25rem;
    align-items: stretch;
}

.panel--contact-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    min-height: 30rem;
}

.panel--contact-hero__overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(180deg, rgba(8, 20, 32, 0.72), rgba(8, 20, 32, 0.78));
}

.panel--contact-hero__content {
    max-width: 30rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.panel--contact-hero__content .eyebrow {
    justify-self: center;
    margin: 0 auto 0.9rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(127, 196, 255, 0.18);
    color: var(--accent);
    letter-spacing: 0.16em;
}

.panel--contact-hero__content h1 {
    margin: 0 0 0.75rem;
    color: white;
    font-size: clamp(1.75rem, 2.4vw, 2.5rem);
    line-height: 1.1;
}

.panel--contact-hero__content .section-intro {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.panel--contact-hero__detail {
    margin: 0.35rem 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Contact Form Field Polish */
.inquiry-form label {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-strong);
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 0.95rem 1.05rem;
    border: 1px solid rgba(47, 57, 69, 0.12);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: inset 0 1px 2px rgba(17, 32, 48, 0.04);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.inquiry-form input:hover:not(:focus),
.inquiry-form textarea:hover:not(:focus) {
    border-color: rgba(47, 57, 69, 0.22);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--accent-strong);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(51, 148, 240, 0.14), inset 0 1px 2px rgba(17, 32, 48, 0.04);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(98, 112, 128, 0.7);
}

/* Lists */
.list,
.card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.subtle {
    color: var(--muted);
    font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1080px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        justify-items: stretch;
        padding: 0.85rem 0;
    }

    .site-header__actions {
        justify-self: end;
        gap: 0.6rem;
    }

    .logo {
        min-width: 0;
        gap: 0.7rem;
    }

    .logo__mark {
        width: 2.45rem;
        height: 2.45rem;
    }

    img.logo__mark {
        width: auto;
        height: 2.45rem;
    }

    .logo__wording {
        min-width: 0;
    }

    .logo__wording strong {
        font-size: 0.96rem;
        letter-spacing: 0.06em;
    }

    .logo__wording span {
        font-size: 0.64rem;
        letter-spacing: 0.08em;
    }

    .site-header__cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.28rem;
        width: 3rem;
        height: 3rem;
        padding: 0;
        border: 1px solid rgba(47, 57, 69, 0.08);
        border-radius: 14px;
        background: white;
        color: var(--ink-strong);
        box-shadow: var(--shadow);
        cursor: pointer;
        flex-shrink: 0;
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .menu-toggle:hover {
        background: var(--surface-strong);
        transform: translateY(-1px);
    }

    .menu-toggle__bar {
        width: 1.1rem;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.22s ease, opacity 0.18s ease;
        transform-origin: center;
    }

    body.nav-open .menu-toggle {
        background: var(--accent-deep);
        color: white;
        box-shadow: 0 18px 32px rgba(18, 102, 177, 0.22);
    }

    body.nav-open .menu-toggle__bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .menu-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .menu-toggle__bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-backdrop {
        display: none;
    }

    body.nav-open .nav-backdrop {
        display: none;
        opacity: 0;
        pointer-events: none;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: block;
        width: 100vw;
        height: 100dvh;
        padding: calc(0.85rem + env(safe-area-inset-top)) 0 calc(1.2rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 1);
        border-left: 0;
        box-shadow: none;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-0.5rem);
        transition: transform 0.2s ease, opacity 0.18s ease, visibility 0.18s ease;
    }

    body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav__panel {
        display: grid;
        grid-template-rows: auto 1fr auto;
        width: 100%;
        min-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 2.05rem);
    }

    .nav__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 1;
        margin-bottom: 1rem;
        padding: 0.15rem clamp(1rem, 5vw, 1.45rem) 0.95rem;
        border-bottom: 0;
        background: rgba(255, 255, 255, 1);
    }

    .nav__brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .logo__mark--nav {
        width: 2rem;
        height: 2rem;
        font-size: 0.95rem;
        box-shadow: none;
    }

    img.logo__mark--nav {
        width: auto;
        height: 2rem;
    }

    .nav__title-group {
        display: grid;
        gap: 0.1rem;
    }

    .nav__title {
        color: var(--ink-strong);
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .nav__subtitle {
        color: var(--muted);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.6rem;
        height: 2.6rem;
        padding: 0;
        border: 1px solid rgba(47, 57, 69, 0.08);
        border-radius: 999px;
        background: white;
        color: var(--ink-strong);
        font-size: 1.7rem;
        line-height: 1;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .nav-close:hover {
        background: var(--surface-strong);
        transform: rotate(90deg);
    }

    .nav__body {
        display: grid;
        align-content: start;
        width: 100%;
        padding: 0 clamp(1rem, 5vw, 1.45rem);
    }

    .nav__body > a,
    .nav__body > .nav-dropdown > .nav-dropdown__trigger {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 0;
        border: 0;
        border-radius: 0;
        background-color: transparent;
        background-image: linear-gradient(rgba(47, 57, 69, 0.08), rgba(47, 57, 69, 0.08));
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 90% 1px;
        color: var(--ink);
        font-size: 1.18rem;
        font-weight: 500;
        box-shadow: none;
        letter-spacing: 0.01em;
    }

    .nav__body > .nav-dropdown {
        display: grid;
        gap: 0;
    }

    .nav__body > a.is-active,
    .nav__body > a:hover,
    .nav-dropdown__trigger.is-active,
    .nav-dropdown.is-open .nav-dropdown__trigger,
    .nav-dropdown__trigger:hover {
        background-color: transparent;
        color: var(--accent-deep);
        transform: none;
    }

    .nav__body > .nav-dropdown > .nav-dropdown__trigger {
        justify-content: space-between;
    }

    .nav__body > .nav-dropdown > .nav-dropdown__trigger .nav-dropdown__chevron {
        margin-left: auto;
    }

    .nav__body > .nav-dropdown > .nav-dropdown__trigger .nav-dropdown__chevron svg {
        width: 1rem;
        height: 1rem;
    }

    .nav-dropdown.is-open .nav-dropdown__trigger .nav-dropdown__chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown__menu {
        position: static;
        min-width: 0;
        margin-top: 0;
        padding: 0.1rem 0 0.2rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
    }

    .nav-dropdown__menu a {
        padding: 0.9rem 0 0.9rem 10%;
        border-radius: 0;
        background-color: transparent;
        background-image: linear-gradient(rgba(47, 57, 69, 0.06), rgba(47, 57, 69, 0.06));
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 90% 1px;
        color: var(--muted);
        font-weight: 600;
    }

    .nav-dropdown__menu a:hover {
        background-color: transparent;
        color: var(--accent-deep);
    }

    .nav-dropdown--nested {
        display: grid;
        gap: 0;
    }

    .nav-dropdown--nested > .nav-dropdown__trigger {
        justify-content: space-between;
        width: 100%;
        padding: 0.9rem 0 0.9rem 10%;
        border: 0;
        border-radius: 0;
        background-color: transparent;
        background-image: linear-gradient(rgba(47, 57, 69, 0.06), rgba(47, 57, 69, 0.06));
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 90% 1px;
        color: var(--muted);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: normal;
        text-transform: none;
        text-align: left;
    }

    .nav-dropdown--nested.is-open > .nav-dropdown__trigger,
    .nav-dropdown--nested > .nav-dropdown__trigger:hover {
        background-color: transparent;
        color: var(--accent-deep);
    }

    .nav-dropdown__chevron--nested svg {
        width: 0.95rem;
        height: 0.95rem;
        transform: none;
    }

    .nav-dropdown--nested.is-open > .nav-dropdown__trigger > .nav-dropdown__chevron--nested {
        transform: rotate(180deg);
    }

    .nav-dropdown__menu--nested {
        position: static;
        padding: 0;
    }

    .nav-dropdown__menu--nested a {
        padding-left: 18%;
        font-size: 0.97rem;
    }

    .nav__footer {
        display: grid;
        gap: 1.1rem;
        width: 100%;
        margin-top: 2rem;
        padding: 1rem clamp(1rem, 5vw, 1.45rem) 0;
    }

    .nav-mobile-cta {
        display: inline-flex;
        width: 100%;
        margin: 0;
        border-radius: 12px;
        background: var(--ink-strong);
        color: white;
        justify-content: center;
    }

    .nav-mobile-cta:hover {
        background: var(--dark-panel);
        color: white;
    }

    .nav__socials {
        justify-content: space-between;
        width: 100%;
        padding: 0;
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 500;
    }

    .nav__socials a {
        color: inherit;
        transition: color 0.2s ease;
    }

    .nav__socials a:hover {
        color: var(--accent-deep);
    }
}

@media (max-width: 960px) {
    .split,
    .grid-3,
    .grid-4,
    .trust-strip,
    .form-grid,
    .content-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner,
    .hero-banner__overlay {
        height: auto;
        min-height: 36rem;
    }

    .panel--contact-hero {
        min-height: 22rem;
    }

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

    .hero-contact-card + .hero-contact-card {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
    }

    .home-welcome__feature {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .home-job-site-services__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-job-site-services__column--left,
    .home-job-site-services__column--right,
    .home-job-site-services__image-wrap {
        padding-top: 0;
    }

    .home-drilling-accessories__grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .home-partners__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-job-site-services__image-wrap {
        order: 2;
    }

    .home-job-site-services__column--left {
        order: 1;
    }

    .home-job-site-services__column--right {
        order: 3;
    }

    .service-feature--left,
    .service-feature--right {
        width: 100%;
        gap: 1rem;
    }

    .service-feature--left {
        grid-template-columns: minmax(0, 1fr) 4.25rem;
    }

    .service-feature--right {
        grid-template-columns: 4.25rem minmax(0, 1fr);
    }

    .service-feature__text,
    .service-feature--left .service-feature__text,
    .service-feature--right .service-feature__text {
        text-align: left;
    }

    .service-feature__icon {
        width: 4.25rem;
        height: 4.25rem;
        justify-self: center;
        align-self: center;
    }

    .service-feature__text h3 {
        font-size: clamp(1.5rem, 4.8vw, 1.9rem);
    }

    .service-feature__text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .home-support-banner__inner {
        gap: 1.5rem;
        padding: 2.7rem 0 2.5rem;
    }

    .home-support-banner__inner h2 {
        max-width: 42rem;
    }

    .accessory-card__media {
        aspect-ratio: 1 / 0.88;
    }
}

@media (max-width: 640px) {
    .page {
        padding-top: 1.5rem;
    }

    .site-header__inner {
        gap: 0.8rem;
        padding: 0.75rem 0;
    }

    .logo__wording strong {
        font-size: 0.88rem;
        letter-spacing: 0.05em;
    }

    .logo__wording span {
        font-size: 0.58rem;
        letter-spacing: 0.07em;
    }

    .menu-toggle {
        width: 2.85rem;
        height: 2.85rem;
    }

    .nav {
        width: 100vw;
        padding: calc(0.85rem + env(safe-area-inset-top)) 0.9rem calc(1.2rem + env(safe-area-inset-bottom));
    }

    .nav__panel {
        width: 100%;
    }

    .section h2,
    .content-grid h1,
    .detail-grid h1,
    .admin-grid h1 {
        font-size: 2rem;
    }

    .hero-banner {
        min-height: 30rem;
        margin-top: -1.5rem;
    }

    .hero-banner__overlay {
        min-height: 30rem;
        padding-top: 2.8rem;
    }

    .hero-banner__copy h1 {
        font-size: 2rem;
    }

    .hero-banner__copy p {
        font-size: 1rem;
    }

    .hero-contact-strip {
        width: calc(100% - 1.5rem);
    }

    .hero-contact-card {
        padding: 0.9rem 1rem;
    }

    .home-support-banner {
        margin-top: 2.5rem;
    }

    .home-support-banner__inner {
        width: calc(100% - 1.5rem);
        gap: 1.2rem;
        padding: 2.35rem 0 2.15rem;
    }

    .home-support-banner__inner h2 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }

    .home-support-banner__button {
        width: 100%;
        min-width: 0;
        padding: 0.95rem 1.25rem;
    }

    .home-drilling-accessories__heading {
        margin-bottom: 1.5rem;
    }

    .home-drilling-accessories__heading h2 {
        font-size: clamp(1.8rem, 7vw, 2.35rem);
    }

    .accessory-card {
        border-radius: 18px;
    }

    .accessory-card__body {
        padding: 1.05rem 1rem 1.15rem;
    }

    .accessory-card__body h3 {
        font-size: 1.5rem;
    }

    .accessory-card__body p {
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .home-partners__heading {
        margin-bottom: 1.45rem;
    }

    .home-partners__heading h2 {
        font-size: clamp(1.85rem, 7vw, 2.4rem);
    }

    .home-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .partner-logo {
        min-height: 5.8rem;
        padding: 0.95rem 0.8rem;
        border-radius: 16px;
    }

    .partner-logo img {
        max-height: 3.2rem;
    }

    .button,
    .inquiry-form button {
        width: 100%;
        justify-content: center;
    }
}


/* Inventory — category index */
.inventory-cat-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.inventory-cat-card__thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: calc(var(--radius) - 4px);
    background: rgba(47, 57, 69, 0.06);
}

.inventory-cat-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.inventory-cat-card__thumb:hover img {
    transform: scale(1.03);
}

/* Inventory — category hero */
.inventory-hero {
    position: relative;
    width: 100vw;
    min-height: 15rem;
    margin-top: -2.5rem;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background:
        radial-gradient(circle at 18% 22%, rgba(127, 196, 255, 0.14), transparent 24%),
        linear-gradient(135deg, #10161d 0%, #1d2730 44%, #2d3741 100%);
    overflow: hidden;
}

.inventory-hero::after {
    content: "";
    position: absolute;
    inset: auto auto -6rem 75%;
    width: 16rem;
    height: 16rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(143, 211, 242, 0.12), transparent 72%);
    pointer-events: none;
}

.inventory-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.4rem 0 2.5rem;
    display: grid;
    gap: 0.55rem;
}

.inventory-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(236, 244, 252, 0.7);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.inventory-hero__crumbs a {
    color: #8fd3f2;
    text-decoration: none;
}

.inventory-hero__crumbs a:hover {
    color: #b7e4f7;
}

.inventory-hero__inner h1 {
    margin: 0;
    color: white;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    line-height: 1.05;
}

.inventory-hero__inner p {
    margin: 0;
    color: rgba(236, 244, 252, 0.78);
    font-size: 0.98rem;
    font-weight: 500;
}

/* Inventory — filter toolbar */
.inventory-toolbar {
    padding-top: 1.5rem;
}

.inventory-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(47, 57, 69, 0.08);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.inventory-filters__fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
}

.inventory-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.inventory-field__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.inventory-field select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(47, 57, 69, 0.18);
    border-radius: 8px;
    background: #fff;
    font-size: 0.92rem;
    color: var(--ink-strong);
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                      linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 1.8rem;
}

.inventory-field select:focus {
    outline: none;
    border-color: var(--accent-deep);
    box-shadow: 0 0 0 3px rgba(127, 196, 255, 0.18);
}

.inventory-filters__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.inventory-filters__actions .button {
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
}

/* Inventory — results grid */
.inventory-results {
    padding-top: 1rem;
}

.inventory-results__count {
    margin: 0 0 0.85rem;
    font-size: 0.85rem;
}

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

@media (max-width: 1100px) {
    .inventory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
    .inventory-grid { grid-template-columns: 1fr; }
}

/* Inventory — item card (compact) */
.inventory-item-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(47, 57, 69, 0.08);
    border-radius: calc(var(--radius) - 4px);
    background: var(--surface);
    box-shadow: 0 2px 6px rgba(16, 22, 29, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.inventory-item-card:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 57, 69, 0.16);
    box-shadow: 0 8px 18px rgba(16, 22, 29, 0.08);
}

.inventory-item-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: rgba(47, 57, 69, 0.06);
    overflow: hidden;
}

.inventory-item-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.inventory-item-card:hover .inventory-item-card__thumb img {
    transform: scale(1.04);
}

.inventory-item-card__thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.inventory-item-card__status {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.28rem 0.6rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(16, 22, 29, 0.18);
}

.inventory-item-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.95rem 1rem 1.1rem;
}

.inventory-item-card__body h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 700;
}

.inventory-item-card__body h3 a {
    color: var(--accent-deep);
    text-decoration: none;
}

.inventory-item-card__body h3 a:hover {
    color: var(--accent-deep);
}

.inventory-item-card__spec {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.inventory-item-card__spec span + span::before {
    content: "·";
    margin-right: 0.5rem;
    color: rgba(47, 57, 69, 0.4);
}

.inventory-item-card__desc {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inventory-empty {
    padding: 2rem;
    text-align: center;
}

/* Status badge colours (solid, used on card overlay) */
.inventory-item-card__status.tag--status-available { background: #177245; color: #fff; }
.inventory-item-card__status.tag--status-sold { background: #8a2525; color: #fff; }
.inventory-item-card__status.tag--status-rented { background: #7a5200; color: #fff; }
.inventory-item-card__status.tag--status-coming-soon { background: #4a5665; color: #fff; }

/* Status tags for public listings (soft variant, used on detail page) */
.tag--status-available { background: rgba(34, 139, 84, 0.16); color: #177245; }
.tag--status-sold { background: rgba(180, 60, 60, 0.16); color: #8a2525; }
.tag--status-rented { background: rgba(180, 120, 30, 0.16); color: #7a5200; }
.tag--status-coming-soon { background: rgba(98, 112, 128, 0.16); color: var(--muted); }

/* Pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(47, 57, 69, 0.08);
}

.pagination__status {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    text-transform: uppercase;
}

.pagination__controls {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.45rem;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.pagination__link:hover {
    background: rgba(47, 57, 69, 0.06);
    color: var(--ink-strong);
}

.pagination__link.is-current {
    background: var(--ink-strong);
    border-color: var(--ink-strong);
    color: #fff;
    cursor: default;
}

.pagination__link.is-current:hover {
    background: var(--ink-strong);
    color: #fff;
}

.pagination__link--nav {
    min-width: 1.75rem;
    padding: 0;
    color: var(--muted);
    border-color: rgba(47, 57, 69, 0.12);
}

.pagination__link--nav:hover {
    border-color: var(--accent-deep);
    color: var(--accent-deep);
    background: transparent;
}

.pagination__link--nav svg {
    display: block;
}

.pagination__link.is-disabled {
    color: rgba(47, 57, 69, 0.25);
    border-color: rgba(47, 57, 69, 0.08);
    cursor: not-allowed;
    pointer-events: none;
}

.pagination__gap {
    padding: 0 0.15rem;
    color: var(--muted);
    font-size: 0.78rem;
    user-select: none;
}

@media (max-width: 520px) {
    .pagination {
        justify-content: center;
    }

    .pagination__status {
        flex-basis: 100%;
        text-align: center;
    }

    .pagination__controls {
        margin: 0 auto;
    }
}


/* Inventory — detail page */
.inventory-hero--detail {
    min-height: 0;
}

.inventory-hero--detail .inventory-hero__inner {
    padding: 2rem 0 2.1rem;
}

.inventory-hero--detail .inventory-hero__inner h1 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.15;
    max-width: 55rem;
}

.inventory-hero--detail .inventory-hero__inner p {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(236, 244, 252, 0.72);
}

.inventory-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .inventory-detail {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.inventory-detail__gallery {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.inventory-gallery__main {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: #0f1419;
}

.inventory-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inventory-gallery__status {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    box-shadow: 0 2px 6px rgba(16, 22, 29, 0.25);
}

.inventory-gallery__status.tag--status-available { background: #177245; color: #fff; }
.inventory-gallery__status.tag--status-sold { background: #8a2525; color: #fff; }
.inventory-gallery__status.tag--status-rented { background: #7a5200; color: #fff; }
.inventory-gallery__status.tag--status-coming-soon { background: #4a5665; color: #fff; }

.inventory-gallery__counter {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    padding: 0.25rem 0.55rem;
    border-radius: 3px;
    background: rgba(16, 22, 29, 0.7);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.inventory-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.inventory-gallery__thumb {
    padding: 0;
    border: 1px solid rgba(47, 57, 69, 0.12);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.inventory-gallery__thumb:hover,
.inventory-gallery__thumb:focus {
    border-color: var(--accent-deep);
    outline: none;
}

.inventory-gallery__thumb.is-active {
    border-color: var(--accent-deep);
    box-shadow: 0 0 0 2px rgba(127, 196, 255, 0.25);
}

.inventory-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inventory-gallery__empty {
    padding: 2rem;
    text-align: center;
    background: rgba(47, 57, 69, 0.04);
    border-radius: calc(var(--radius) - 4px);
}

/* Facts aside */
.inventory-detail__facts {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.inventory-facts {
    margin: 0;
    display: grid;
    gap: 0;
}

.inventory-facts__row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(47, 57, 69, 0.1);
}

.inventory-facts__row:first-child { padding-top: 0; }
.inventory-facts__row:last-child { border-bottom: none; }

.inventory-facts dt {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-strong);
    letter-spacing: 0;
    text-transform: none;
}

.inventory-facts dd {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
}

.inventory-detail__summary {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.inventory-detail__prose {
    line-height: 1.65;
    color: var(--ink);
    font-size: 0.95rem;
    word-break: break-word;
}

.inventory-detail__prose a,
.inventory-detail__summary a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.15s ease;
}

.inventory-detail__prose a:hover,
.inventory-detail__summary a:hover {
    color: var(--accent-strong);
}

.inventory-detail__body .panel h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    margin: 0 0 0.75rem;
}

.inventory-detail__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: #0f1419;
}

.inventory-detail__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA card */
.inventory-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
}

.inventory-cta__copy h2 {
    margin: 0.25rem 0 0.4rem;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.25;
    color: var(--ink-strong);
}

.inventory-cta__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 50ch;
}

.inventory-cta__copy .eyebrow {
    font-size: 0.72rem;
}

.inventory-cta__actions .button {
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
}

@media (max-width: 720px) {
    .inventory-cta {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Newsletters (public)
   ========================================================================== */

.newsletter-hero {
    background: linear-gradient(135deg, var(--ink-strong) 0%, #0f1b2d 100%);
    color: #fff;
    border-radius: 14px;
    padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 3rem;
    overflow: hidden;
}

.newsletter-hero__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-hero__kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent, #f5a623);
    margin-bottom: 1rem;
}

.newsletter-hero__title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #fff;
}

.newsletter-hero__lede {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1.75rem;
}

.newsletter-archive {
    margin-bottom: 3rem;
}

.newsletter-archive__header {
    margin-bottom: 1.75rem;
}

.newsletter-archive__header h2 {
    margin: 0.25rem 0 0;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    color: var(--ink-strong);
}

.newsletter-archive__empty {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--muted);
    background: #f7f9fc;
    border: 1px dashed #d7dde7;
    border-radius: 12px;
}

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

.newsletter-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.newsletter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 27, 45, 0.1);
    border-color: #d7dde7;
}

.newsletter-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef1f6;
}

.newsletter-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.newsletter-card:hover .newsletter-card__media img {
    transform: scale(1.03);
}

.newsletter-card__body {
    padding: 1.1rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.newsletter-card__date {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.newsletter-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--ink-strong);
}

.newsletter-card__title a {
    color: inherit;
    text-decoration: none;
}

.newsletter-card__title a:hover {
    color: var(--accent-deep, #d48806);
}

.newsletter-card__excerpt {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsletter-card__link {
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-deep, #d48806);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.newsletter-card__link:hover {
    text-decoration: underline;
}

/* Article (show) page */
.newsletter-article {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.newsletter-article__back {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.newsletter-article__back:hover { color: var(--accent-deep, #d48806); }

.newsletter-article__date {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.newsletter-article__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--ink-strong);
}

.newsletter-article__lede {
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 2rem;
}

.newsletter-article__hero {
    margin: 0 0 2rem;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eef1f6;
}

.newsletter-article__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsletter-article__prose {
    font-size: 1rem;
    line-height: 1.7;
    color: #2a3342;
}

.newsletter-article__prose h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--ink-strong); }
.newsletter-article__prose h3 { font-size: 1.15rem; margin: 1.6rem 0 0.6rem; color: var(--ink-strong); }
.newsletter-article__prose p { margin: 0 0 1rem; }
.newsletter-article__prose a { color: var(--accent-deep, #d48806); text-decoration: underline; }
.newsletter-article__prose ul, .newsletter-article__prose ol { margin: 0 0 1rem 1.25rem; }
.newsletter-article__prose img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }

.newsletter-article__footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e9f0;
}

.newsletter-article__cta {
    background: #f7f9fc;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
}

.newsletter-article__cta h2 { margin: 0 0 0.5rem; font-size: 1.25rem; color: var(--ink-strong); }
.newsletter-article__cta p { margin: 0 0 1.25rem; color: var(--muted); }

.newsletter-related { margin-top: 3rem; }


/* Theme refresh */
body {
    background: #ffffff;
    color: var(--ink);
}

.site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(3, 22, 41, 0.08);
    box-shadow: 0 10px 26px rgba(3, 22, 41, 0.05);
}

.site-header__inner {
    padding: 0.82rem 0;
}

.logo {
    flex-shrink: 0;
}

img.logo__mark {
    height: 3.05rem;
    max-width: 12rem;
}

.site-footer img.logo__mark {
    height: 2.8rem;
    max-width: 11rem;
}

.nav a,
.nav-dropdown__trigger {
    border-radius: 8px;
    color: #4f5865;
    font-size: 0.96rem;
}

.nav a.is-active,
.nav-dropdown__trigger.is-active {
    color: var(--ink-strong);
    background: rgba(247, 139, 8, 0.11);
    box-shadow: inset 0 0 0 1px rgba(247, 139, 8, 0.18);
}

.nav a:hover,
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
    color: var(--ink-strong);
    background: rgba(247, 139, 8, 0.09);
}

.nav-dropdown__menu {
    border-color: rgba(3, 22, 41, 0.1);
    border-radius: 10px;
    box-shadow: 0 22px 48px rgba(3, 22, 41, 0.14);
}

.nav-dropdown__menu a:hover,
.nav-dropdown--nested:hover > .nav-dropdown__trigger,
.nav-dropdown--nested:focus-within > .nav-dropdown__trigger {
    color: var(--ink-strong);
    background: rgba(247, 139, 8, 0.1);
}

.menu-toggle:focus-visible,
.nav-close:focus-visible,
.nav a:focus-visible,
.nav-dropdown__trigger:focus-visible,
.nav-backdrop:focus-visible,
.button:focus-visible {
    outline: 3px solid rgba(247, 139, 8, 0.35);
    outline-offset: 2px;
}

.button,
button:not(.nav-dropdown__trigger):not(.menu-toggle):not(.nav-close):not(.nav-backdrop):not(.inventory-gallery__thumb):not(.admin-icon-button):not([class*="ql-"]) {
    border-radius: 8px;
    background: var(--dark-panel);
    letter-spacing: 0;
    box-shadow: none;
}

.button:hover,
button:not(.nav-dropdown__trigger):not(.menu-toggle):not(.nav-close):not(.nav-backdrop):not(.inventory-gallery__thumb):not(.admin-icon-button):not([class*="ql-"]):hover {
    background: var(--dark-panel-soft);
    box-shadow: 0 12px 24px rgba(3, 22, 41, 0.16);
}

.button--accent {
    background: var(--accent);
    color: #101820;
}

.button--accent:hover {
    background: #e07d05;
    color: #101820;
}

.button--ghost {
    background: #ffffff;
    color: var(--ink-strong);
    border: 1px solid rgba(3, 22, 41, 0.14);
}

.button--ghost:hover {
    background: #fff7ed;
    color: var(--ink-strong);
    border-color: rgba(247, 139, 8, 0.42);
}

.button--on-dark {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.48);
}

.button--on-dark:hover {
    background: #ffffff;
    color: var(--ink-strong);
    border-color: #ffffff;
}

.page {
    padding: 2.35rem 0 4rem;
}

.card,
.notice,
.panel,
.inquiry-form,
.stat,
.inventory-filters,
.inventory-item-card {
    border-color: rgba(3, 22, 41, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(3, 22, 41, 0.06);
}

.eyebrow,
.home-kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tag {
    background: rgba(247, 139, 8, 0.12);
    color: var(--accent-deep);
}

input,
textarea,
select {
    background: #ffffff;
    border-color: rgba(3, 22, 41, 0.14);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(247, 139, 8, 0.14);
}

.inventory-hero {
    background: linear-gradient(135deg, #031629 0%, #102a42 100%);
}

.inventory-hero::after {
    display: none;
}

.inventory-hero__crumbs a,
.inventory-item-card__body h3 a,
.newsletter-card__title a,
.newsletter-article__back:hover,
.newsletter-article__prose a {
    color: var(--accent-deep);
}

.inventory-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 139, 8, 0.15);
}

/* Home refresh */
.home-hero {
    position: relative;
    display: grid;
    width: 100vw;
    min-height: 34rem;
    margin-top: -2.35rem;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 22, 41, 0.88), rgba(3, 22, 41, 0.58) 56%, rgba(3, 22, 41, 0.26));
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 6rem 0 5.2rem;
}

.home-hero__copy {
    display: grid;
    gap: 1rem;
    max-width: 47rem;
    color: #ffffff;
}

.home-hero__copy h1,
.home-hero__copy p {
    margin: 0;
}

.home-hero__copy h1 {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.home-hero__copy p {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.home-contact-band {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -2.2rem auto 3rem;
    overflow: hidden;
    border: 1px solid rgba(3, 22, 41, 0.08);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(3, 22, 41, 0.12);
}

.home-contact-band a {
    display: grid;
    gap: 0.16rem;
    padding: 1rem 1.25rem;
    color: var(--ink-strong);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-contact-band a + a {
    border-left: 1px solid rgba(3, 22, 41, 0.08);
}

.home-contact-band a:hover {
    background: #fff7ed;
}

.home-contact-band span {
    color: var(--accent-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-contact-band strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.home-section-heading {
    display: grid;
    gap: 0.45rem;
    max-width: 44rem;
}

.home-section-heading h2 {
    margin: 0;
    color: var(--ink-strong);
    font-size: 2.05rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.home-intro {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

.home-intro__body {
    display: grid;
    gap: 1rem;
    color: #4d5663;
    font-size: 1rem;
    line-height: 1.76;
}

.home-intro__body p {
    margin: 0;
}

.home-text-link {
    width: fit-content;
    color: var(--ink-strong);
    font-weight: 800;
    border-bottom: 2px solid var(--accent);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-text-link:hover {
    color: var(--accent-deep);
    border-color: var(--accent-deep);
}

.home-services {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 2.5rem;
    align-items: start;
}

.home-service-list {
    display: grid;
    border-top: 1px solid rgba(3, 22, 41, 0.12);
}

.home-service-row {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(3, 22, 41, 0.12);
    color: var(--ink);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.home-service-row:hover {
    color: var(--ink-strong);
    padding-left: 0.35rem;
}

.home-service-row__index {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
}

.home-service-row__copy {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.home-service-row__copy strong {
    color: var(--ink-strong);
    font-size: 1.08rem;
    line-height: 1.25;
}

.home-service-row__copy span {
    color: #5d6470;
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-service-row__arrow {
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 1;
}

.home-support-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    width: 100vw;
    margin: 4rem calc(50% - 50vw) 0;
    padding: 3.2rem max(calc((100vw - 1180px) / 2), 1rem);
    background: #031629;
    color: #ffffff;
}

.home-support-panel h2,
.home-support-panel p {
    margin: 0;
}

.home-support-panel h2 {
    max-width: 36rem;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.2;
}

.home-support-panel__content {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.home-support-panel__content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

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

.home-accessory-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.home-accessory-item {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(3, 22, 41, 0.1);
    border-radius: 10px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(3, 22, 41, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-accessory-item:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 139, 8, 0.32);
    box-shadow: 0 20px 40px rgba(3, 22, 41, 0.1);
}

.home-accessory-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-accessory-item div {
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
}

.home-accessory-item h3,
.home-accessory-item p {
    margin: 0;
}

.home-accessory-item h3 {
    color: var(--ink-strong);
    font-size: 1.08rem;
}

.home-accessory-item p {
    color: #5d6470;
    font-size: 0.94rem;
    line-height: 1.58;
}

.home-partners .home-section-heading,
.home-accessories .home-section-heading {
    margin-bottom: 0.35rem;
}

.home-partners__grid {
    margin-top: 1.25rem;
}

.partner-logo {
    min-height: 6.5rem;
    border-radius: 10px;
    border-color: rgba(3, 22, 41, 0.1);
    box-shadow: 0 12px 28px rgba(3, 22, 41, 0.05);
}

.partner-logo:hover {
    border-color: rgba(247, 139, 8, 0.34);
    box-shadow: 0 18px 34px rgba(3, 22, 41, 0.09);
}

@media (max-width: 1080px) {
    img.logo__mark {
        height: 2.7rem;
        max-width: 10.5rem;
    }

    .nav__header img.logo__mark--nav {
        height: 2.45rem;
        max-width: 9.8rem;
    }

    body.nav-open .menu-toggle {
        background: var(--ink-strong);
        box-shadow: 0 14px 28px rgba(3, 22, 41, 0.2);
    }

    .nav-mobile-cta {
        background: var(--accent);
        color: #101820;
    }

    .nav-mobile-cta:hover {
        background: #e07d05;
        color: #101820;
    }
}

@media (max-width: 960px) {
    .home-hero {
        min-height: 31rem;
    }

    .home-hero::before {
        background: rgba(3, 22, 41, 0.78);
    }

    .home-hero__inner {
        padding: 5.4rem 0 4.6rem;
    }

    .home-hero__copy h1 {
        font-size: 2.25rem;
    }

    .home-contact-band,
    .home-intro,
    .home-services,
    .home-support-panel,
    .home-accessory-list {
        grid-template-columns: 1fr;
    }

    .home-contact-band a + a {
        border-left: 0;
        border-top: 1px solid rgba(3, 22, 41, 0.08);
    }

    .home-intro,
    .home-services,
    .home-support-panel {
        gap: 1.6rem;
    }

    .home-support-panel {
        padding-top: 2.6rem;
        padding-bottom: 2.6rem;
    }

    .home-partners__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    img.logo__mark {
        height: 2.45rem;
        max-width: 9.4rem;
    }

    .home-hero {
        min-height: 29rem;
        margin-top: -1.5rem;
    }

    .home-hero__copy h1 {
        font-size: 1.9rem;
    }

    .home-hero__copy p,
    .home-intro__body,
    .home-support-panel__content p {
        font-size: 0.96rem;
    }

    .home-hero__actions .button,
    .home-support-panel__actions .button {
        width: 100%;
    }

    .home-section-heading h2,
    .home-support-panel h2 {
        font-size: 1.55rem;
    }

    .home-contact-band {
        margin-bottom: 2.2rem;
    }

    .home-service-row {
        grid-template-columns: 2.2rem minmax(0, 1fr) auto;
        gap: 0.7rem;
    }

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

/* Newsletter index refresh */
.newsletter-hero {
    display: grid;
    width: 100vw;
    min-height: 18rem;
    margin: -2.35rem calc(50% - 50vw) 2.6rem;
    padding: 0;
    border-radius: 0;
    background: #031629;
    color: #ffffff;
}

.newsletter-hero__inner {
    display: grid;
    align-content: end;
    gap: 0.45rem;
    width: min(1180px, calc(100% - 2rem));
    max-width: none;
    margin: 0 auto;
    padding: 3rem 0 2.7rem;
    text-align: left;
}

.newsletter-hero__kicker {
    margin: 0;
    color: #f78b08;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.newsletter-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: 2.45rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.newsletter-hero__lede {
    max-width: 44rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.68;
}

.newsletter-archive {
    margin-bottom: 3.2rem;
}

.newsletter-archive__header {
    margin-bottom: 1.3rem;
}

.newsletter-archive__header h2 {
    font-size: 1.45rem;
}

.newsletter-grid {
    gap: 1rem;
}

.newsletter-card {
    border-color: rgba(3, 22, 41, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(3, 22, 41, 0.06);
}

.newsletter-card:hover {
    border-color: rgba(247, 139, 8, 0.3);
    box-shadow: 0 18px 34px rgba(3, 22, 41, 0.09);
}

.newsletter-card__title {
    font-size: 1rem;
}

.newsletter-card__title a:hover,
.newsletter-card__link {
    color: #9f5605;
}

@media (max-width: 640px) {
    .newsletter-hero {
        min-height: 15.5rem;
        margin-top: -1.5rem;
    }

    .newsletter-hero__inner {
        width: calc(100% - 1.5rem);
        padding: 2.4rem 0 2.2rem;
    }

    .newsletter-hero__title {
        font-size: 2.05rem;
    }
}

/* Rentals page */
.rentals-hero {
    display: grid;
    width: 100vw;
    min-height: 22rem;
    margin: -2.35rem calc(50% - 50vw) 2.6rem;
    background:
        linear-gradient(90deg, rgba(3, 22, 41, 0.92), rgba(3, 22, 41, 0.7)),
        url('/images/services-2.jpg') center / cover no-repeat;
    color: #ffffff;
}

.rentals-hero__inner {
    display: grid;
    align-content: end;
    gap: 0.55rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 2.8rem;
}

.rentals-hero__inner h1,
.rentals-hero__inner p {
    margin: 0;
}

.rentals-hero__inner h1 {
    max-width: 46rem;
    color: #ffffff;
    font-size: 2.45rem;
    line-height: 1.12;
}

.rentals-hero__inner p {
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.68;
}

.rentals-workflow {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.rentals-workflow__intro {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: 0.65rem;
    padding: 1.35rem 0;
}

.rentals-workflow__intro h2,
.rentals-workflow__intro p {
    margin: 0;
}

.rentals-workflow__intro h2 {
    color: var(--ink-strong);
    font-size: 1.8rem;
    line-height: 1.18;
}

.rentals-workflow__intro p {
    color: #5d6470;
    line-height: 1.72;
}

.rentals-form {
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(3, 22, 41, 0.08);
}

.rentals-form form {
    gap: 1rem;
}

.rentals-search {
    gap: 0.5rem;
}

.rentals-search input[type="search"] {
    min-height: 3.6rem;
    padding-left: 1.2rem;
    border: 2px solid rgba(247, 139, 8, 0.42);
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 12px 28px rgba(247, 139, 8, 0.08);
}

.rentals-search input[type="search"]:focus {
    border-color: #f78b08;
    box-shadow: 0 0 0 4px rgba(247, 139, 8, 0.14), 0 12px 28px rgba(247, 139, 8, 0.08);
}

.rentals-browser {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.rentals-browser__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.rentals-browser__header h2,
.rentals-browser__header p {
    margin: 0;
}

.rentals-browser__header h2 {
    max-width: 42rem;
    color: var(--ink-strong);
    font-size: 1.6rem;
    line-height: 1.2;
}

.rentals-browser__header p {
    color: #5d6470;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rentals-search--standalone {
    max-width: 48rem;
}

.rentals-equipment-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.75rem;
}

button.rentals-equipment-card {
    display: grid;
    gap: 0;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(3, 22, 41, 0.1);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    text-align: left;
    box-shadow: 0 10px 24px rgba(3, 22, 41, 0.06);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

button.rentals-equipment-card[hidden] {
    display: none;
}

button.rentals-equipment-card:hover,
button.rentals-equipment-card:focus-visible,
button.rentals-equipment-card.is-selected {
    transform: translateY(-3px);
    border-color: rgba(247, 139, 8, 0.48);
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 18px 34px rgba(3, 22, 41, 0.11);
}

.rentals-equipment-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef1f6;
}

.rentals-equipment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.26s ease;
}

button.rentals-equipment-card:hover .rentals-equipment-card__image img {
    transform: scale(1.04);
}

.rentals-equipment-card__image span {
    position: absolute;
    top: 0.42rem;
    left: 0.42rem;
    max-width: calc(100% - 0.84rem);
    padding: 0.22rem 0.42rem;
    border-radius: 999px;
    background: rgba(3, 22, 41, 0.86);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.rentals-equipment-card__body {
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
}

.rentals-equipment-card__body strong {
    color: var(--ink-strong);
    font-size: 0.8rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.rentals-equipment-card__body span {
    color: #5d6470;
    font-size: 0.7rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rentals-browser__empty {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(3, 22, 41, 0.18);
    border-radius: 10px;
    color: #5d6470;
    background: #f8f9fb;
}

.rentals-form__actions {
    display: flex;
    justify-content: flex-end;
}

.rentals-form__actions button {
    width: auto;
    min-width: 12rem;
    padding-inline: 1.5rem;
}

.rentals-modal {
    width: min(980px, calc(100vw - 2rem));
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 28px 80px rgba(3, 22, 41, 0.36);
}

.rentals-modal::backdrop {
    background: rgba(3, 22, 41, 0.62);
    backdrop-filter: blur(3px);
}

.rentals-modal__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    min-height: 31rem;
}

button.rentals-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid rgba(3, 22, 41, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink-strong);
    box-shadow: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

button.rentals-modal__close:hover {
    transform: rotate(90deg);
    background: #ffffff;
    color: var(--ink-strong);
    box-shadow: none;
}

.rentals-modal__media {
    position: relative;
    min-height: 100%;
    background: #eef1f6;
}

.rentals-modal__media img {
    width: 100%;
    height: 100%;
    min-height: 31rem;
    object-fit: cover;
    display: block;
}

.rentals-modal__media span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #f78b08;
    color: #101820;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rentals-modal__content {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    max-height: min(82vh, 42rem);
    overflow: auto;
    padding: 2.2rem;
}

.rentals-modal__content h2 {
    margin: 0;
    color: var(--ink-strong);
    font-size: 1.55rem;
    line-height: 1.2;
}

.rentals-modal__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0;
}

.rentals-modal__facts div {
    padding: 0.7rem 0.75rem;
    border: 1px solid rgba(3, 22, 41, 0.1);
    border-radius: 8px;
    background: #f8f9fb;
}

.rentals-modal__facts dt,
.rentals-modal__facts dd {
    margin: 0;
}

.rentals-modal__facts dt {
    color: #5d6470;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rentals-modal__facts dd {
    color: var(--ink-strong);
    font-size: 0.9rem;
    font-weight: 800;
}

.rentals-modal__summary,
.rentals-modal__details {
    margin: 0;
    color: #4d5663;
    line-height: 1.7;
}

.rentals-modal__details {
    white-space: pre-line;
}

.rentals-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding-top: 0.35rem;
}

@media (max-width: 960px) {
    .rentals-equipment-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .rentals-workflow {
        grid-template-columns: 1fr;
    }

    .rentals-workflow__intro {
        position: static;
        padding: 0;
    }

    .rentals-modal__shell {
        grid-template-columns: 1fr;
    }

    .rentals-modal__media,
    .rentals-modal__media img {
        min-height: 18rem;
        max-height: 22rem;
    }
}

@media (max-width: 640px) {
    .rentals-hero {
        min-height: 18.5rem;
        margin-top: -1.5rem;
    }

    .rentals-hero__inner {
        width: calc(100% - 1.5rem);
        padding: 2.4rem 0 2.2rem;
    }

    .rentals-hero__inner h1 {
        font-size: 2rem;
    }

    .rentals-workflow__intro h2 {
        font-size: 1.45rem;
    }

    .rentals-browser__header {
        align-items: start;
        flex-direction: column;
    }

    .rentals-browser__header h2 {
        font-size: 1.35rem;
    }

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

    .rentals-form__actions {
        justify-content: flex-start;
    }

    .rentals-form__actions button {
        width: auto;
        min-width: 0;
    }

    .rentals-modal__content {
        padding: 1.4rem;
    }

    .rentals-modal__facts {
        grid-template-columns: 1fr;
    }

    .rentals-modal__actions .button {
        width: 100%;
    }
}

/* Rentals page: match public equipment listing cards */
.rentals-equipment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.rentals-equipment-card.inventory-item-card {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 1px solid rgba(3, 22, 41, 0.1);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    text-align: left;
    box-shadow: 0 12px 30px rgba(3, 22, 41, 0.06);
    cursor: pointer;
}

.rentals-equipment-card.inventory-item-card[hidden] {
    display: none;
}

.rentals-equipment-card.inventory-item-card:hover,
.rentals-equipment-card.inventory-item-card:focus-visible,
.rentals-equipment-card.inventory-item-card.is-selected {
    transform: translateY(-2px);
    border-color: rgba(247, 139, 8, 0.42);
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(3, 22, 41, 0.11);
}

.rentals-equipment-card.inventory-item-card:focus-visible {
    outline: 3px solid rgba(247, 139, 8, 0.28);
    outline-offset: 3px;
}

.rentals-equipment-card.inventory-item-card .inventory-item-card__thumb,
.rentals-equipment-card.inventory-item-card .inventory-item-card__body {
    width: 100%;
}

.rentals-equipment-card.inventory-item-card .inventory-item-card__thumb img {
    transition: transform 0.3s ease;
}

.rentals-equipment-card.inventory-item-card:hover .inventory-item-card__thumb img,
.rentals-equipment-card.inventory-item-card.is-selected .inventory-item-card__thumb img {
    transform: scale(1.04);
}

.rentals-equipment-card__body h3 {
    margin: 0;
    color: var(--accent-deep);
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 700;
}

.rentals-equipment-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.95rem 1rem 1.1rem;
}

.rentals-equipment-card__body .inventory-item-card__spec {
    display: flex;
}

.rentals-equipment-card__body .inventory-item-card__spec span {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.rentals-equipment-card__body .inventory-item-card__desc {
    display: -webkit-box;
    color: var(--muted);
    font-size: 0.82rem;
    white-space: normal;
    text-overflow: clip;
}

button.rentals-modal__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    background: rgba(3, 22, 41, 0.74);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(3, 22, 41, 0.22);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

button.rentals-modal__nav:hover,
button.rentals-modal__nav:focus-visible {
    background: #f78b08;
    color: #031629;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 14px 32px rgba(3, 22, 41, 0.28);
}

button.rentals-modal__nav[hidden] {
    display: none;
}

.rentals-modal__nav--prev {
    left: 1rem;
}

.rentals-modal__nav--next {
    right: 1rem;
}

.rentals-modal__media .rentals-modal__counter {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    min-width: 3.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(3, 22, 41, 0.82);
    color: #ffffff;
    text-align: center;
}

.rentals-pagination [data-rentals-pagination-pages] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

button.pagination__link.rentals-pagination__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.45rem;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    transform: none;
}

button.pagination__link--nav.rentals-pagination__button {
    min-width: 1.75rem;
    padding: 0;
    color: var(--muted);
    border-color: rgba(47, 57, 69, 0.12);
}

button.pagination__link.rentals-pagination__button:hover,
button.pagination__link.rentals-pagination__button:focus-visible {
    background: rgba(47, 57, 69, 0.06);
    color: var(--ink-strong);
    box-shadow: none;
    transform: none;
}

button.pagination__link.rentals-pagination__button.is-current {
    background: var(--ink-strong);
    border-color: var(--ink-strong);
    color: #ffffff;
}

button.pagination__link.rentals-pagination__button.is-disabled {
    color: rgba(47, 57, 69, 0.25);
    border-color: rgba(47, 57, 69, 0.08);
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .rentals-equipment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .rentals-equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .rentals-equipment-grid {
        grid-template-columns: 1fr;
    }

    button.rentals-modal__nav {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1.65rem;
    }

    .rentals-modal__nav--prev {
        left: 0.7rem;
    }

    .rentals-modal__nav--next {
        right: 0.7rem;
    }
}
