:root {
    --bg: #edf3f6;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #f8fbfc;
    --surface-soft: #dfe9ee;
    --text: #13212c;
    --muted: #5b6975;
    --border: rgba(19, 33, 44, 0.1);
    --primary: #0d5c73;
    --primary-dark: #093b49;
    --secondary: #dd7a2c;
    --accent: #f1b970;
    --shadow: 0 24px 64px rgba(18, 33, 44, 0.12);
    --radius: 26px;
    --radius-sm: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(13, 92, 115, 0.18), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(221, 122, 44, 0.18), transparent 20%),
        linear-gradient(180deg, #f8fbfc 0%, var(--bg) 100%);
    color: var(--text);
    font-family: "Trebuchet MS", "Gill Sans", sans-serif;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 252, 0.84);
    border-bottom: 1px solid rgba(13, 92, 115, 0.08);
}

.site-navbar {
    padding: 0.95rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.brand-text small {
    color: var(--muted);
}

.site-navbar .navbar-collapse {
    align-items: center;
}

.site-navbar-toggler {
    border: 1px solid rgba(13, 92, 115, 0.16);
    border-radius: 14px;
    padding: 0.45rem 0.65rem;
}

.site-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 92, 115, 0.14);
}

.site-nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 999px;
    color: var(--muted) !important;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.site-nav-link.active {
    background: rgba(13, 92, 115, 0.1);
    color: var(--primary) !important;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--secondary), #c95d12);
    color: #fff9f1;
    box-shadow: var(--shadow);
}

.button-secondary {
    border-color: rgba(13, 92, 115, 0.18);
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
}

.site-main {
    display: block;
}

.carousel-section,
.hero-section,
.page-hero,
.contact-banner-section,
.content-section,
.cta-section {
    position: relative;
}

.carousel-section {
    padding: 2rem 0 0;
}

.contact-banner-section {
    padding: 1.5rem 0 1rem;
}

.contact-banner-frame {
    overflow: hidden;
    aspect-ratio: 3 / 1;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.contact-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-carousel {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #dbe6eb;
}

.home-carousel-frame {
    aspect-ratio: 3 / 1;
}

.home-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-carousel-caption {
    right: auto;
    left: 4rem;
    bottom: 2.5rem;
    max-width: 28rem;
    padding: 1.1rem 1.25rem;
    border-radius: 20px;
    background: rgba(15, 23, 29, 0.48);
    backdrop-filter: blur(8px);
    text-align: left;
}

.home-carousel-caption .eyebrow,
.home-carousel-caption h2 {
    color: #fff;
}

.home-carousel-caption .eyebrow {
    margin-bottom: 0.6rem;
}

.home-carousel-caption h2 {
    margin-bottom: 0;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
}

.home-carousel .carousel-indicators {
    margin-bottom: 1rem;
}

.home-carousel .carousel-indicators [data-bs-target] {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.64);
}

.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-next {
    width: 8%;
}

.hero-section {
    padding: 5.75rem 0 3rem;
    overflow: clip;
}

.page-hero {
    padding: 4.75rem 0 2.5rem;
}

.hero-grid,
.two-column,
.panel-grid,
.form-grid,
.values-grid,
.spec-grid,
.lifestyle-panel {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    align-items: stretch;
}

.hero-copy,
.sidebar-card {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.9rem, 5vw, 5.4rem);
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.3rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.lead {
    font-size: 1.16rem;
    color: var(--text);
}

.hero-actions,
.section-action {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions {
    margin-top: 2rem;
}

.section-action {
    margin-top: 1.8rem;
}

.sidebar-card,
.service-card,
.detail-card,
.cta-box,
.cta-panel,
.intro-panel,
.form-shell {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sidebar-card,
.detail-card,
.cta-panel,
.intro-panel,
.form-shell {
    padding: 1.8rem;
}

.service-card {
    padding: 1.55rem;
}

.intro-panel {
    max-width: 940px;
}

.info-list,
.feature-list,
.footer-links {
    margin: 0;
    padding-left: 1.1rem;
}

.info-list li,
.feature-list li,
.footer-links li {
    margin-bottom: 0.72rem;
    color: var(--muted);
}

.footer-links li:last-child,
.info-list li:last-child,
.feature-list li:last-child {
    margin-bottom: 0;
}

.hero-backdrop {
    position: absolute;
    right: -8rem;
    top: 1rem;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 28% 32%, rgba(13, 92, 115, 0.42), rgba(221, 122, 44, 0.2) 52%, transparent 68%);
    filter: blur(14px);
    opacity: 0.82;
}

.content-section {
    padding: 2rem 0 3rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

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

.product-grid .product-card {
    min-height: 100%;
}

.product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(19, 33, 44, 0.08);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-code {
    margin-bottom: 0.85rem;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.muted-section {
    background:
        linear-gradient(180deg, rgba(223, 233, 238, 0.62), rgba(248, 251, 252, 0.78));
    border-top: 1px solid rgba(13, 92, 115, 0.08);
    border-bottom: 1px solid rgba(13, 92, 115, 0.08);
}

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

.lifestyle-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    padding: 1.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lifestyle-panel-reverse {
    grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.lifestyle-copy {
    min-width: 0;
}

.lifestyle-copy h2 {
    max-width: 14ch;
}

.lifestyle-copy p {
    margin-bottom: 0;
}

.lifestyle-frame {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: calc(var(--radius) - 6px);
    border: 1px solid rgba(19, 33, 44, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-section {
    padding: 1rem 0 4rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(9, 59, 73, 0.98), rgba(19, 33, 44, 0.98));
    color: #f7efe5;
}

.cta-box p,
.cta-box .eyebrow {
    color: inherit;
}

.cta-box .eyebrow {
    opacity: 0.78;
}

.stack-layout {
    display: grid;
    gap: 1.5rem;
}

.product-detail-card {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 241, 232, 0.96));
}

.product-detail-media,
.product-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(19, 33, 44, 0.08);
}

.product-detail-media {
    aspect-ratio: 4 / 5;
    padding: 1rem;
}

.product-card-media {
    aspect-ratio: 4 / 5;
    padding: 0.85rem;
    margin-bottom: 1rem;
}

.product-detail-media img,
.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-detail-body {
    min-width: 0;
}

.product-detail-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.spec-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.spec-grid > div {
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(38, 70, 83, 0.08);
}

.spec-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.value-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.value-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.4rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(221, 122, 44, 0.14), rgba(13, 92, 115, 0.12));
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(13, 92, 115, 0.08);
}

.value-card-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.contact-grid {
    align-items: start;
}

.form-shell {
    padding: 2rem;
}

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

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--secondary);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(38, 70, 83, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(13, 92, 115, 0.18);
    border-color: rgba(13, 92, 115, 0.34);
}

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

.site-footer {
    padding: 3.5rem 0 2rem;
    background:
        linear-gradient(180deg, #15222b 0%, #0f171d 100%);
    color: rgba(255, 246, 234, 0.84);
}

.site-footer p {
    color: inherit;
}

.site-footer a {
    color: #ffd6a0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(255, 245, 233, 0.12);
}

.footer-title {
    margin-bottom: 0.9rem;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-brand {
    max-width: 420px;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    font-size: 0.94rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .card-grid,
    .two-column,
    .panel-grid,
    .lifestyle-panel,
    .lifestyle-panel-reverse,
    .values-grid,
    .footer-inner,
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 900px) {
    .cta-box,
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow);
    }

    .hero-grid,
    .card-grid,
    .two-column,
    .panel-grid,
    .lifestyle-panel,
    .lifestyle-panel-reverse,
    .form-grid,
    .values-grid,
    .spec-grid,
    .footer-inner,
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .lifestyle-copy h2 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .carousel-section {
        padding-top: 1rem;
    }

    .contact-banner-frame {
        aspect-ratio: 4 / 3;
    }

    .home-carousel-frame {
        aspect-ratio: 4 / 3;
    }

    .home-carousel-caption {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
        padding: 0.85rem 1rem;
    }

    .hero-section {
        padding-top: 4rem;
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .brand-logo {
        height: 48px;
    }

    .header-cta {
        width: 100%;
    }

    .sidebar-card,
    .service-card,
    .detail-card,
    .cta-panel,
    .intro-panel,
    .form-shell,
    .lifestyle-panel,
    .cta-box {
        padding: 1.35rem;
    }

    h1 {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }
}
