@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #c5a059;
    --primary-dark: #a68546;
    --secondary: #1e293b;
    --secondary-soft: #334155;
    --surface: #ffffff;
    --surface-muted: #f8fafc;
    --surface-accent: #f5efe2;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-gray: #64748b;
    --text-light: #cbd5e1;
    --border: #e2e8f0;
    --success: #16a34a;
    --danger: #dc2626;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 25px 70px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 40px 100px rgba(15, 23, 42, 0.18);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --container: 1200px;
    --header-height: 88px;
    --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.12), transparent 30%),
        linear-gradient(180deg, #fffdf7 0%, #f8fafc 22%, #ffffff 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

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

.section {
    padding: 88px 0;
}

.section-sm {
    padding: 56px 0;
}

.section-dark {
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent 40%),
        linear-gradient(180deg, #0f172a 0%, #111c30 100%);
    color: #fff;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

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

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

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

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 40px;
}

.section-copy {
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
}

.section-title {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.section-description {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 22px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #d9bb7a);
    color: var(--secondary);
    box-shadow: 0 14px 30px rgba(197, 160, 89, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(197, 160, 89, 0.28);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.btn-secondary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.4);
    color: var(--text-dark);
}

.card,
.panel,
.service-card,
.content-card,
.stat-card,
.contact-card,
.product-card,
.client-card,
.quote-card {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.card-pad,
.content-card,
.service-card,
.stat-card,
.contact-card,
.product-card,
.quote-card {
    padding: 28px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    transition: var(--transition);
}

.site-header.scrolled {
    border-color: rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.brand-mark {
    min-width: 0;
}

.brand-mark strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.brand-mark span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.nav-panel {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-panel-inner {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
    background: rgba(197, 160, 89, 0.12);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-panel-cta {
    display: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.hero {
    position: relative;
    padding: 84px 0 72px;
}

.home-banner {
    padding: 24px 0 28px;
}

.home-banner-shell {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: #0f172a;
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
    transform: scale(1.02);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(5, 8, 14, 0.9) 0%, rgba(5, 8, 14, 0.62) 50%, rgba(197, 160, 89, 0.26) 100%),
        radial-gradient(circle at 82% 20%, rgba(197, 160, 89, 0.28), transparent 30%);
}

.home-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.home-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding: 56px clamp(24px, 4vw, 56px) 68px;
}

.home-banner-copy {
    max-width: min(760px, 100%);
    color: #fff;
}

.home-overview {
    padding-top: 24px;
}

.home-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f5deb0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.home-banner-title {
    margin-top: 18px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.9),
        0 0 22px rgba(197, 160, 89, 0.42);
}

.home-banner-subtitle {
    margin-top: 14px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.85),
        0 0 14px rgba(197, 160, 89, 0.28);
}

.home-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.home-banner-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
}

.home-banner-dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--primary), #e0c180);
    box-shadow: 0 8px 22px rgba(197, 160, 89, 0.38);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 32px;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.18), transparent 36%),
        linear-gradient(140deg, #1e293b 0%, #0f172a 58%, #111827 100%);
    box-shadow: var(--shadow-lg);
}

.hero-copy::before,
.hero-copy::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-copy::before {
    width: 280px;
    height: 280px;
    top: -90px;
    right: -70px;
}

.hero-copy::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: -50px;
}

.hero-copy>* {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-top: 22px;
    font-size: clamp(2.7rem, 6vw, 5.1rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.hero-title span {
    color: #f5deb0;
}

.hero-description {
    margin-top: 20px;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

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

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.metric-tile {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-tile strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
}

.metric-tile span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.hero-media {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-md);
}

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

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.76) 100%);
}

.hero-media-copy {
    position: absolute;
    inset: auto 22px 22px 22px;
    z-index: 1;
    color: #fff;
}

.hero-media-copy strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.2;
}

.hero-media-copy span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-info,
.hero-contact {
    padding: 28px;
}

.hero-info {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
}

.hero-contact {
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.14), transparent 40%),
        #ffffff;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: var(--primary-dark);
}

.feature-list,
.check-list,
.stack-list,
.plain-list {
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.feature-list li,
.check-list li,
.plain-list li {
    display: flex;
    gap: 14px;
}

.feature-list i,
.check-list i,
.plain-list i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.14);
    color: var(--primary-dark);
}

.feature-list strong,
.plain-list strong {
    display: block;
    margin-bottom: 3px;
}

.feature-list p,
.plain-list p,
.muted {
    color: var(--text-muted);
}

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

.stat-card strong {
    display: block;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--secondary);
}

.stat-card span {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

.service-grid,
.product-grid,
.client-grid,
.info-grid,
.split-grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

.split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.service-card,
.product-card {
    height: 100%;
}

.service-card:hover,
.product-card:hover,
.contact-card:hover,
.client-card:hover,
.quote-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-icon,
.icon-badge {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(197, 160, 89, 0.14);
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.service-card h3,
.product-card h3,
.content-card h3,
.contact-card h3,
.quote-card h3 {
    margin-top: 20px;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
}

.service-card p,
.product-card p,
.content-card p,
.contact-card p {
    margin-top: 12px;
    color: var(--text-muted);
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.check-list i {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 999px;
    font-size: 0.8rem;
}

.surface-band {
    background: linear-gradient(180deg, rgba(245, 239, 226, 0.78), rgba(255, 255, 255, 0.9));
    border-block: 1px solid rgba(226, 232, 240, 0.9);
}

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

.timeline-item {
    position: relative;
    padding: 22px 22px 22px 74px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: var(--shadow-sm);
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    top: 22px;
    left: 22px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #fff;
    font-weight: 800;
}

.port-grid,
.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.port-chip,
.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background: rgba(197, 160, 89, 0.08);
    color: var(--secondary);
    font-weight: 700;
}

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

.client-card {
    min-height: 122px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.client-card img {
    max-height: 70px;
    object-fit: contain;
}

.client-card span {
    font-weight: 700;
    color: var(--secondary);
}

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

.quote-card {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent 40%),
        rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.quote-card p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), #e2c78f);
    color: var(--secondary);
    font-weight: 900;
}

.subhero {
    padding: 72px 0 40px;
}

.page-banner {
    padding: 36px 0 40px;
}

.page-banner-shell {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-end;
    background-image: var(--banner-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.page-banner-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(5, 8, 14, 0.9) 0%, rgba(5, 8, 14, 0.62) 48%, rgba(197, 160, 89, 0.2) 100%),
        radial-gradient(circle at 82% 20%, rgba(197, 160, 89, 0.24), transparent 28%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    padding: 48px 52px;
    max-width: 760px;
    color: #fff;
}

.page-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f5deb0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.page-banner-title {
    margin-top: 18px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.92),
        0 0 22px rgba(197, 160, 89, 0.42);
}

.page-banner-subtitle {
    margin-top: 12px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.85),
        0 0 14px rgba(197, 160, 89, 0.28);
}

.subhero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.subhero-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.18), transparent 36%),
        linear-gradient(140deg, #1e293b 0%, #0f172a 70%);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.subhero-card p {
    margin-top: 16px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.subhero-media,
.content-media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-md);
    background: var(--surface);
}

.subhero-media {
    min-height: 320px;
}

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

.subhero-media::after,
.content-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.18) 100%);
    pointer-events: none;
}

.media-caption {
    position: absolute;
    inset: auto 20px 20px 20px;
    z-index: 1;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.media-caption strong {
    display: block;
    line-height: 1.2;
}

.media-caption span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

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

.content-media-card {
    min-height: 100%;
}

.content-card {
    height: 100%;
}

.value-list,
.detail-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.value-item,
.detail-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid var(--border);
}

.detail-item strong,
.value-item strong {
    display: block;
    margin-bottom: 8px;
}

.form-shell {
    padding: 32px;
}

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

.field {
    display: grid;
    gap: 8px;
}

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

.field label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary);
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fcfdff;
    padding: 14px 16px;
    color: var(--text-dark);
    transition: var(--transition);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.13);
}

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

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid;
    font-weight: 600;
}

.alert-success {
    color: #166534;
    background: #dcfce7;
    border-color: #bbf7d0;
}

.alert-danger {
    color: #991b1b;
    background: #fee2e2;
    border-color: #fecaca;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
}

.contact-stack {
    display: grid;
    gap: 18px;
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    text-decoration: none;
}

.map-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 420px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.product-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(15, 23, 42, 0.08));
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.06);
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.empty-state {
    padding: 48px 28px;
    text-align: center;
}

.pagination-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.site-footer {
    padding: 72px 0 24px;
    margin-top: 64px;
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent 36%),
        #0f172a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 28px;
}

.footer-brand img {
    width: 72px;
    height: 72px;
    padding: 8px;
    border-radius: 20px;
    background: #fff;
}

.footer-brand p,
.footer-column p,
.footer-column a {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-column h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f5deb0;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(197, 160, 89, 0.2);
    color: #f5deb0;
    transform: translateY(-2px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1180px) {

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

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

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

@media (max-width: 992px) {
    :root {
        --header-height: 78px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .nav-panel {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        padding: 18px 1rem 1rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-panel.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-panel-inner {
        width: min(100%, 560px);
        margin: 0 auto;
        display: block;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 28px;
        padding: 18px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu a {
        justify-content: center;
        min-height: 50px;
    }

    .nav-panel-cta {
        display: block;
        margin-top: 12px;
    }

    .hero-grid,
    .subhero-grid,
    .split-grid,
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .section-head {
        flex-direction: column;
        align-items: start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 768px) {

    .section,
    .hero,
    .subhero,
    .home-banner,
    .page-banner {
        padding: 56px 0;
    }

    .home-banner {
        padding: 20px 0 24px;
    }

    .hero-copy,
    .subhero-card,
    .form-shell,
    .service-card,
    .product-card,
    .content-card,
    .contact-card,
    .quote-card {
        padding: 22px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .home-banner-shell,
    .home-banner-content {
        min-height: 62vh;
    }

    .home-banner-content {
        padding: 32px 22px 54px;
    }

    .home-overview {
        padding-top: 12px;
    }

    .page-banner-shell {
        min-height: 260px;
    }

    .page-banner-content {
        padding: 32px 24px;
    }

    .hero-metrics,
    .stats-grid,
    .form-grid,
    .service-grid,
    .product-grid,
    .testimonial-grid,
    .logo-wall,
    .client-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding: 74px 18px 18px;
    }

    .timeline-item::before {
        top: 18px;
        left: 18px;
    }

    .brand-mark span {
        display: none;
    }

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

    .map-frame,
    .map-frame iframe {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(var(--container), calc(100% - 1.1rem));
    }

    .hero-actions,
    .product-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .home-banner-shell,
    .home-banner-content {
        min-height: 56vh;
    }

    .home-banner-content {
        padding: 28px 18px 48px;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
    }

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

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