:root {
    /* KT's Café — gold seal on black */
    --gold: #d4af37;
    --gold-light: #f0d878;
    --gold-dark: #a67c00;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --espresso: #0a0a0a;
    --espresso-soft: #141414;
    --espresso-card: #1c1c1c;
    --cream: #fff9f0;
    --cream-dark: #f3ebe0;
    --coffee: #2c2419;
    --text: #2c2419;
    --text-muted: #6b5e52;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(10, 10, 10, 0.14);
    --shadow-sm: 0 8px 30px rgba(10, 10, 10, 0.08);
    --shadow-gold: 0 8px 32px var(--gold-glow);
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --nav-height: 4.75rem;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
    width: min(1140px, calc(100% - 2rem));
    margin-inline: auto;
}

/* ── Header ── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand:hover {
    color: var(--white);
    opacity: 0.92;
}

.brand-logo-frame {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--cream);
    border: 1.5px solid rgba(212, 175, 55, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    flex-shrink: 0;
    box-shadow: 0 2px 14px rgba(212, 175, 55, 0.25);
    overflow: hidden;
}

.brand-logo-frame--footer {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.35rem;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-logo--lg {
    width: clamp(10rem, 28vw, 14rem);
    height: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 1.1;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1.2;
}

.brand-mark {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.14);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 220px;
    background: var(--espresso-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 50;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold-light);
}

.site-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.14);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 175, 55, 0.16), transparent),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212, 175, 55, 0.06), transparent),
        linear-gradient(165deg, var(--espresso) 0%, var(--espresso-soft) 50%, #1f1a14 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 2rem;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 32rem;
    margin: 0 0 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.65rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--espresso);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover { box-shadow: 0 14px 36px rgba(212, 175, 55, 0.45); color: var(--espresso); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-logo-wrap {
    position: relative;
    padding: 0.5rem;
}

.hero-logo-disk {
    width: clamp(11rem, 30vw, 15rem);
    height: clamp(11rem, 30vw, 15rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--cream);
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.hero-logo-disk img {
    width: 88%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-card {
    background: var(--espresso-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
    max-width: 380px;
    width: 100%;
}

.hero-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 1rem;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.hero-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    margin: 0 0 1.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-light);
    font-family: var(--font-display);
}

.stat-box span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Sections ── */
.section {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--espresso);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: transform 0.25s, box-shadow 0.25s;
}

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

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 0.65rem;
    color: var(--espresso);
}

.feature-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.cta-band {
    background: linear-gradient(135deg, var(--espresso) 0%, var(--espresso-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.22), transparent 60%);
}

.cta-band h2 {
    position: relative;
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 1rem;
}

.cta-band p {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 1.75rem;
}

.cta-band .btn { position: relative; }

/* ── Page header (inner pages) ── */
.page-hero {
    padding: calc(var(--nav-height) + 1.25rem) 0 1.5rem;
    background: linear-gradient(160deg, var(--espresso) 0%, var(--espresso-soft) 100%);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-size: 0.92rem;
    max-width: 36rem;
    margin-inline: auto;
}

.page-content {
    padding: 2.5rem 0 4rem;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 3rem);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    max-width: 820px;
    margin-inline: auto;
}

.content-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--espresso);
    margin: 2rem 0 0.75rem;
}

.content-card h2:first-child { margin-top: 0; }

.content-card p, .content-card li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-card ul, .content-card ol {
    padding-left: 1.25rem;
    margin: 0 0 1rem;
}

.content-card li { margin-bottom: 0.5rem; }

.content-card .updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    max-width: 960px;
    margin-inline: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.info-card p {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--cream-dark);
}

.contact-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.35;
}

.contact-channel:hover {
    color: var(--gold-dark);
}

.contact-channel-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: var(--gold-dark);
}

.contact-channels--footer {
    margin-top: 0.65rem;
    padding-top: 0;
    border-top: none;
}

.footer-contact .footer-address {
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    background: var(--white);
}

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

.form-error {
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.35rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.65rem;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-logo-panel {
    aspect-ratio: 1;
    border-radius: 50%;
    max-width: 380px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 65%),
        var(--cream-dark);
    border: 2px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow);
}

.about-logo-panel img {
    width: 85%;
    height: auto;
    object-fit: contain;
}

.about-image {
    display: none;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--espresso);
    margin: 0 0 1rem;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}

.value-item strong {
    display: block;
    color: var(--espresso);
    margin-bottom: 0.35rem;
}

.value-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ── Footer ── */
.site-footer {
    background: var(--espresso);
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 1rem 0 0;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Catalog (Products & Services) ── */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.catalog-grid--services {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.catalog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

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

.catalog-card__media {
    aspect-ratio: 5 / 4;
    background: linear-gradient(145deg, #fff8f0 0%, #f0e6d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--cream-dark);
}

.catalog-card__media img {
    width: 72%;
    max-height: 130px;
    object-fit: contain;
}

.catalog-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.catalog-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--espresso);
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.catalog-card__body p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}


.catalog-card--product .catalog-card__media {
    padding: 0;
    margin: 0;
    display: block;
    line-height: 0;
    aspect-ratio: auto;
    background: none;
    border-bottom: 1px solid var(--cream-dark);
}

.catalog-card--product .catalog-card__media img {
    width: 100%;
    max-height: none;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    vertical-align: bottom;
}

.catalog-card--product .catalog-card__body {
    padding-top: 1rem;
}
.catalog-card--service .catalog-card__media {
    background: linear-gradient(145deg, #1a1510 0%, #2a2218 100%);
}

.catalog-section {
    margin-bottom: 3.5rem;
}

.catalog-section:last-child {
    margin-bottom: 0;
}

.catalog-section__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-dark);
}

.catalog-section__header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--espresso);
    margin: 0 0 0.35rem;
}

.catalog-section__header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.catalog-card__body h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--espresso);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.footer-partner-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.25rem;
    max-width: 240px;
}

.footer-vendor-btn {
    display: inline-flex;
    padding: 0.7rem 1.35rem;
    font-size: 0.88rem;
}

/* ── Products page spacing ── */
.products-page {
    background: var(--cream);
}

.page-hero--products {
    padding: calc(var(--nav-height) + 2rem) 0 2.75rem;
}

.page-content--products {
    padding: 3.5rem 0 4.5rem;
    background: var(--cream);
}

.products-page .section-header--products {
    margin-bottom: 3rem;
    max-width: 720px;
    margin-inline: auto;
}

.products-page .catalog-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.products-page .catalog-section {
    margin-bottom: 0;
    padding: 2rem 2rem 2.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-sm);
}

.products-page .catalog-section__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
}

.products-page .catalog-grid--products {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.products-page .section--products-cta {
    padding-top: 0;
    padding-bottom: 5rem;
    background: var(--cream);
}

.products-page .section--products-cta .cta-band {
    margin-top: 0;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }

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

    .catalog-grid,
    .catalog-grid--services,
    .catalog-grid--products { grid-template-columns: 1fr 1fr; }

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

    .hero-visual { order: -1; }

    .hero-card { max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .site-nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--espresso);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
    }

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

    .site-nav a {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .nav-dropdown { width: 100%; }

    .nav-dropdown-toggle { width: 100%; justify-content: space-between; }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 0.75rem;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu { display: block; }

    .feature-grid,
    .values-grid,
    .catalog-grid,
    .catalog-grid--services,
    .footer-grid,
    .form-row { grid-template-columns: 1fr; }

    .hero { min-height: auto; padding-bottom: 3rem; }

    .section { padding: 3.5rem 0; }

    .page-content--products {
        padding: 2.25rem 0 3rem;
    }

    .products-page .section-header--products {
        margin-bottom: 2rem;
    }

    .products-page .catalog-list {
        gap: 1.5rem;
    }

    .products-page .catalog-section {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .products-page .catalog-grid--products {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .products-page .section--products-cta {
        padding-bottom: 3.5rem;
    }
}
