:root {
    --ink: #092033;
    --ink-soft: #24445a;
    --green: #0b7d3b;
    --green-dark: #075f2c;
    --gold: #f2ad24;
    --gold-dark: #c87f09;
    --paper: #f6f8f2;
    --white: #ffffff;
    --line: #dce5dc;
    --muted: #667786;
    --shadow: 0 18px 45px rgba(9, 32, 51, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 1100;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--gold);
    border-radius: var(--radius);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-navbar {
    background: rgba(9, 32, 51, 0.96);
    box-shadow: 0 12px 35px rgba(4, 17, 29, 0.18);
    backdrop-filter: blur(12px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(242, 173, 36, 0.45);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--white);
}

.brand-mark:hover,
.brand-mark:focus {
    color: var(--white);
}

.brand-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-weight: 800;
}

.brand-mark strong,
.brand-mark small {
    display: block;
    line-height: 1.1;
}

.brand-mark strong {
    font-size: 1rem;
}

.brand-mark small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    font-size: 0.94rem;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-nav-button {
    position: relative;
}

.cart-nav-button span {
    display: grid;
    min-width: 20px;
    height: 20px;
    place-items: center;
    padding: 0 5px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    font-weight: 800;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.btn-accent {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.btn-accent:hover,
.btn-accent:focus {
    color: var(--white);
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline-primary {
    color: var(--green-dark);
    border-color: var(--green);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-section {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 130px 0 70px;
    color: var(--white);
    background-image: url("../images/sections/academy-hero.png");
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 32, 51, 0.88) 0%, rgba(9, 32, 51, 0.68) 45%, rgba(9, 32, 51, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 760px;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: 4rem;
    line-height: 1.02;
    font-weight: 900;
}

.hero-copy p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.18rem;
}

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

.stats-strip {
    background: var(--ink);
    color: var(--white);
}

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

.stat-item {
    padding: 22px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item strong {
    display: block;
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1.1;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.section-padding {
    padding: 88px 0;
}

.surface-section {
    background: var(--paper);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.with-action {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading h2,
.split-content h2,
.map-copy h2,
.training-panel h2,
.store-roadmap h2,
.side-panel h2 {
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.15;
    font-weight: 900;
}

.section-heading p {
    max-width: 660px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-tile,
.program-card,
.product-card,
.quote-card,
.info-panel,
.category-tile,
.blog-card,
.contact-card,
.form-shell,
.side-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(9, 32, 51, 0.06);
}

.feature-tile,
.program-card,
.info-panel,
.category-tile,
.blog-card {
    height: 100%;
    padding: 26px;
}

.feature-tile > svg,
.info-panel > svg,
.category-tile > svg {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    color: var(--green);
}

.feature-tile h3,
.program-card h3,
.program-card h2,
.info-panel h2,
.category-tile h3,
.blog-card h2 {
    margin: 0 0 10px;
    font-size: 1.22rem;
    font-weight: 900;
}

.feature-tile p,
.program-card p,
.info-panel p,
.category-tile p,
.blog-card p,
.quote-card p {
    margin: 0;
    color: var(--muted);
}

.program-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius);
}

.program-icon svg {
    width: 28px;
    height: 28px;
}

.program-card.tall {
    min-height: 280px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--green-dark);
    font-weight: 900;
}

.text-link svg {
    width: 17px;
    height: 17px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 560px;
    background: var(--ink);
    color: var(--white);
}

.split-image {
    background-position: center;
    background-size: cover;
}

.turf-image {
    background-image: url("../images/sections/turf-ground.png");
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.split-content p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
}

.check-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 26px;
}

.check-list.stacked {
    display: grid;
}

.check-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-weight: 800;
}

.check-list svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.product-card {
    overflow: hidden;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--paper);
}

.product-card-body {
    padding: 22px;
}

.product-card-body span,
.blog-card span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
}

.product-card h3,
.product-card h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 900;
}

.product-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.shop-section {
    background: #fbfcfa;
}

.shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 18px;
    align-items: end;
    margin-bottom: 30px;
}

.shop-filter-form {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr) auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(9, 32, 51, 0.06);
}

.shop-summary {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
}

.shop-summary strong,
.shop-summary span {
    display: block;
}

.shop-summary strong {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.shop-summary span {
    font-weight: 800;
}

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

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

.shop-product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(9, 32, 51, 0.08);
}

.shop-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--paper);
}

.shop-product-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.04);
}

.product-badge,
.discount-badge {
    position: absolute;
    z-index: 1;
    top: 12px;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.product-badge {
    left: 12px;
    color: var(--ink);
    background: var(--gold);
}

.discount-badge {
    right: 12px;
    color: var(--white);
    background: var(--green);
}

.shop-product-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.product-meta-row,
.price-row,
.stock-line,
.product-rating-row,
.summary-line {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-meta-row {
    justify-content: space-between;
    color: var(--green-dark);
    font-size: 0.86rem;
    font-weight: 900;
}

.product-meta-row svg,
.stock-line svg,
.product-rating-row svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.shop-product-body h2 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 900;
}

.shop-product-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.price-row strong {
    font-size: 1.32rem;
    color: var(--ink);
}

.price-row del {
    color: var(--muted);
    font-weight: 700;
}

.stock-line {
    font-weight: 900;
}

.in-stock {
    color: var(--green-dark);
}

.out-stock {
    color: #b42318;
}

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

.empty-shop-state {
    display: grid;
    place-items: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 44px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(9, 32, 51, 0.08);
}

.empty-shop-state > svg {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    color: var(--green);
}

.empty-shop-state h2 {
    margin: 0 0 8px;
    font-weight: 900;
}

.empty-shop-state p {
    color: var(--muted);
}

.compact-hero {
    min-height: 330px;
}

.product-detail-section {
    padding: 132px 0 78px;
    background: #fbfcfa;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 800;
}

.product-breadcrumb a {
    color: var(--green-dark);
}

.product-breadcrumb svg {
    width: 16px;
    height: 16px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 34px;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-main-image {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
}

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

.product-thumbs button {
    overflow: hidden;
    padding: 0;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius);
}

.product-thumbs button.active,
.product-thumbs button:focus {
    border-color: var(--green);
}

.product-thumbs img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-info-panel,
.order-summary-card,
.cart-table-card,
.order-success-card,
.admin-card-like {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(9, 32, 51, 0.08);
}

.product-info-panel {
    padding: 30px;
}

.product-category {
    color: var(--green);
    font-weight: 900;
}

.product-info-panel h1 {
    margin: 10px 0 12px;
    font-size: 2.5rem;
    line-height: 1.08;
    font-weight: 900;
}

.product-rating-row {
    color: var(--muted);
    font-weight: 800;
}

.product-rating-row span:first-child {
    color: var(--gold-dark);
}

.product-lede {
    margin: 20px 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.product-price-panel {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px;
    background: var(--paper);
    border-radius: var(--radius);
}

.product-price-panel strong {
    font-size: 2rem;
}

.product-price-panel del {
    color: var(--muted);
    font-weight: 800;
}

.product-price-panel span {
    color: var(--green-dark);
    font-weight: 900;
}

.product-buy-box {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.product-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-service-strip {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.product-service-strip span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-soft);
    font-weight: 800;
}

.product-service-strip svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.product-description-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 22px;
}

.admin-card-like {
    padding: 28px;
}

.admin-card-like h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    font-weight: 900;
}

.admin-card-like p {
    margin: 0;
    color: var(--muted);
}

.feature-bullets {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.feature-bullets svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.cart-layout,
.checkout-layout,
.success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
    gap: 24px;
    align-items: start;
}

.cart-table-card {
    padding: 22px;
}

.cart-items {
    display: grid;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) 110px 120px;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
}

.cart-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cart-item-main h2 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 900;
}

.cart-item-main span,
.cart-item-main strong {
    display: block;
}

.cart-item-main span {
    color: var(--muted);
}

.cart-item-total {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.cart-remove-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    color: #b42318;
    background: none;
    border: 0;
    font-weight: 900;
}

.cart-remove-button svg {
    width: 16px;
    height: 16px;
}

.cart-update-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.order-summary-card {
    position: sticky;
    top: 100px;
    padding: 24px;
}

.order-summary-card h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
    font-weight: 900;
}

.summary-line {
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.summary-line.total {
    border-bottom: 0;
    font-size: 1.2rem;
}

.order-summary-card p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.checkout-form {
    box-shadow: 0 12px 30px rgba(9, 32, 51, 0.08);
}

.checkout-items {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.checkout-items div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.checkout-items small {
    grid-column: 1 / -1;
    color: var(--muted);
}

.order-success-card {
    padding: 34px;
}

.success-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.success-icon svg {
    width: 34px;
    height: 34px;
}

.order-success-card h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 900;
}

.order-success-card p {
    color: var(--muted);
}

.order-next-steps {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.order-next-steps span {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
}

.order-next-steps svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.testimonial-section {
    background: linear-gradient(135deg, var(--ink), #123f31);
    color: var(--white);
}

.testimonial-section .section-kicker {
    color: var(--gold);
}

.quote-card {
    height: 100%;
    padding: 28px;
    color: var(--ink);
}

.quote-card p {
    font-size: 1.02rem;
}

.quote-card cite {
    display: block;
    margin-top: 18px;
    color: var(--green-dark);
    font-weight: 900;
    font-style: normal;
}

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

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

.gallery-item {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px;
    color: var(--white);
    background: rgba(9, 32, 51, 0.78);
    border-radius: var(--radius);
}

.gallery-item span,
.gallery-item strong {
    display: block;
}

.gallery-item span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
}

.map-band {
    padding: 70px 0;
    color: var(--white);
    background: var(--green-dark);
}

.map-band .container {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 30px;
    align-items: center;
}

.map-band.standalone .container {
    display: block;
}

.map-frame {
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: var(--white);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.page-hero {
    position: relative;
    display: flex;
    align-items: end;
    min-height: 430px;
    padding: 145px 0 70px;
    color: var(--white);
    background-color: var(--ink);
    background-position: center;
    background-size: cover;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 32, 51, 0.88), rgba(9, 32, 51, 0.34));
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 860px;
    margin: 0 0 14px;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 900;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.about-hero {
    background-image: url("../images/sections/about-coaching.png");
}

.coaching-hero {
    background-image: url("../images/sections/fielding-drills.png");
}

.admission-hero {
    background-image: url("../images/sections/academy-hero.png");
}

.turf-hero {
    background-image: url("../images/sections/turf-ground.png");
}

.shop-hero {
    background-image: url("../images/sections/equipment-kit.png");
}

.gallery-hero {
    background-image: url("../images/sections/academy-events.png");
}

.blog-hero {
    background-image: url("../images/products/balls-main.png");
}

.contact-hero {
    background-image: url("../images/sections/turf-ground.png");
}

.image-panel {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
}

.info-panel h2 {
    font-size: 1.35rem;
}

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

.facility-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 800;
}

.facility-list svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.training-panel {
    height: 100%;
    padding: 36px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.training-panel .section-kicker {
    color: var(--gold);
}

.training-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.timeline-list {
    display: grid;
    gap: 16px;
}

.timeline-list div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.timeline-list span {
    grid-row: span 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-weight: 900;
}

.timeline-list h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 900;
}

.timeline-list p {
    margin: 0;
    color: var(--muted);
}

.side-panel {
    position: sticky;
    top: 100px;
    padding: 30px;
}

.step-list,
.slot-list,
.contact-stack {
    display: grid;
    gap: 14px;
}

.step-list div {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
}

.step-list span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 900;
}

.step-list p {
    margin: 0;
    color: var(--muted);
}

.contact-mini {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
    padding: 18px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--green-dark);
}

.contact-mini svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.contact-mini a {
    display: block;
    color: var(--white);
    font-weight: 900;
}

.form-shell {
    padding: 30px;
}

.form-heading {
    margin-bottom: 24px;
}

.form-heading h2 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    font-weight: 900;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
}

.form-control,
.form-select {
    min-height: 48px;
    border-color: #cfd9d2;
    border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(11, 125, 59, 0.16);
}

textarea.form-control {
    min-height: 120px;
}

.form-label {
    color: var(--ink);
    font-weight: 800;
}

.form-alert ul {
    padding-left: 20px;
}

.slot-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.slot-list div:last-child {
    border-bottom: 0;
}

.slot-list strong {
    font-size: 0.98rem;
}

.slot-list span {
    color: var(--muted);
    text-align: right;
}

.rules-box {
    margin-top: 26px;
    padding: 20px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.rules-box h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 900;
}

.rules-box ul {
    margin: 0;
    padding-left: 20px;
}

.rules-box li {
    color: rgba(255, 255, 255, 0.82);
}

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

.category-tile {
    padding: 20px;
}

.category-tile h3 {
    font-size: 1.02rem;
}

.store-roadmap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.store-roadmap .section-kicker {
    color: var(--gold);
}

.gallery-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.filter-chip {
    padding: 9px 16px;
    color: var(--green-dark);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.gallery-item.is-hidden {
    display: none;
}

.blog-card {
    min-height: 250px;
}

.blog-card time {
    display: inline-flex;
    margin-top: 20px;
    color: var(--ink-soft);
    font-weight: 900;
}

.topic-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.topic-list span {
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
}

.contact-card svg {
    width: 28px;
    height: 28px;
    color: var(--green);
    flex: 0 0 auto;
}

.contact-card h2 {
    margin: 0 0 4px;
    font-size: 1.08rem;
    font-weight: 900;
}

.contact-card p {
    margin: 0;
    color: var(--muted);
}

.contact-card a {
    color: var(--green-dark);
    font-weight: 900;
}

.footer-cta {
    padding: 58px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-dark), var(--ink));
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-cta .section-kicker {
    color: var(--gold);
}

.footer-cta h2 {
    max-width: 780px;
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.15;
    font-weight: 900;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    padding: 54px 0 26px;
    color: rgba(255, 255, 255, 0.82);
    background: #061722;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-text {
    max-width: 360px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
}

.footer-links,
.contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.contact-list a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus,
.contact-list a:hover,
.contact-list a:focus {
    color: var(--gold);
}

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

.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex: 0 0 auto;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

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

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

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

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

@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        padding: 18px 0;
    }

    .nav-actions {
        margin-top: 12px;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .stats-grid,
    .split-section,
    .map-band .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section {
        min-height: auto;
    }

    .split-image {
        min-height: 360px;
    }

    .split-content {
        padding: 48px 30px;
    }

    .section-heading.with-action,
    .footer-cta-inner,
    .store-roadmap,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .side-panel {
        position: static;
    }

    .shop-toolbar,
    .product-detail-grid,
    .product-description-grid,
    .cart-layout,
    .checkout-layout,
    .success-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: static;
    }

    .cart-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .cart-item-qty,
    .cart-item-total {
        grid-column: 2;
        justify-items: start;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 720px;
        padding: 120px 0 48px;
    }

    .hero-overlay {
        background: rgba(9, 32, 51, 0.78);
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-actions,
    .footer-cta-actions {
        width: 100%;
    }

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

    .stats-grid,
    .split-section,
    .map-band .container,
    .facility-list,
    .category-grid,
    .gallery-grid,
    .gallery-grid.compact,
    .shop-filter-form,
    .shop-product-grid,
    .shop-product-grid.compact,
    .product-detail-actions,
    .product-actions {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 62px 0;
    }

    .section-heading h2,
    .split-content h2,
    .map-copy h2,
    .training-panel h2,
    .store-roadmap h2,
    .side-panel h2,
    .footer-cta h2 {
        font-size: 2rem;
    }

    .page-hero {
        min-height: 390px;
        padding: 125px 0 52px;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .form-shell,
    .side-panel,
    .training-panel,
    .store-roadmap {
        padding: 22px;
    }

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

    .timeline-list span {
        grid-row: auto;
        margin-bottom: 10px;
    }

    .slot-list div {
        display: grid;
    }

    .slot-list span {
        text-align: left;
    }

    .map-frame iframe {
        height: 300px;
    }

    .product-detail-section {
        padding: 118px 0 56px;
    }

    .product-info-panel h1 {
        font-size: 2rem;
    }

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

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-qty,
    .cart-item-total {
        grid-column: auto;
    }

    .cart-item-total {
        justify-items: start;
    }

    .cart-update-row .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-mark strong {
        font-size: 0.92rem;
    }

    .brand-mark small {
        font-size: 0.72rem;
    }

    .hero-copy h1 {
        font-size: 2.15rem;
    }

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