/* ==========================================================================
   AlMAZ United — public site
   Brand: navy #0E1F3D · gold #C9A961 · cream #FAF7F2 (taken from the logo)
   ========================================================================== */

:root {
  --navy: #0E1F3D;
  --navy-deep: #060F22;
  --navy-lift: #1A2B47;
  --gold: #C9A961;
  --gold-bright: #E5C158;
  --gold-ink: #A08545;
  --cream: #FAF7F2;
  --cream-edge: #F1EDE3;
  --line: #E2E8F0;
  --ink: #334155;
  --ink-soft: #64748B;
  --page: #F8FAFC;
  --shell: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--gold-ink); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }
p { margin: 0; line-height: 1.65; }

h1, h2, h3, h4 {
  font-family: Outfit, system-ui, sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}

.shell { max-width: var(--shell); margin: 0 auto; }
.page-wrap { max-width: 100%; overflow-x: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------ header */
.header-stack { position: sticky; top: 0; z-index: 50; }

.topbar {
  background: var(--navy-deep); color: #E2E8F0; font-size: 13px;
  padding: 9px 20px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 4px 10px; text-align: center; letter-spacing: .01em;
}
.topbar a { color: var(--gold); font-weight: 600; }

.masthead {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(6, 15, 34, .25);
}
.masthead-inner {
  max-width: var(--shell); margin: 0 auto; padding: 14px 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px;
}

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
/* logo-mark.png is the diamond mark on a transparent ground, so it sits
   directly on the navy header — no white containing box. */
.brand-mark { width: 54px; height: 54px; flex-shrink: 0; display: grid; place-items: center; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-name { display: flex; flex-direction: column; }
.brand-name b {
  font-family: Outfit, sans-serif; font-size: 21px; font-weight: 600;
  color: #fff; line-height: 1.1; letter-spacing: .01em; white-space: nowrap;
}

.nav-main { display: flex; align-items: center; gap: 26px; margin-left: auto; font-size: 15px; font-weight: 500; }
.nav-main > a,
.nav-item > a { color: #CBD5E1; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-main > a:hover,
.nav-item > a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-main > a.is-active,
.nav-item > a.is-active { color: #fff; border-bottom-color: var(--gold); }

/* ---------------------------------------------------------- services menu */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-item > a svg { transition: transform .18s ease; }

.nav-drop {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  margin-top: 18px; width: 340px; padding: 8px;
  background: #fff; border: 1px solid var(--line);
  border-top: 3px solid var(--gold); border-radius: 12px;
  box-shadow: 0 24px 54px rgba(6, 15, 34, .28);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
/* Bridges the header gap so the pointer can travel into the panel. */
.nav-drop::before { content: ""; position: absolute; left: 0; right: 0; top: -21px; height: 21px; }

.has-menu:hover .nav-drop,
.has-menu:focus-within .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.has-menu:hover > a svg { transform: rotate(180deg); }

.nav-drop a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px; border-bottom: none;
  color: var(--ink); font-size: 14px; font-weight: 500;
}
.nav-drop a:hover { background: var(--cream); color: var(--navy); }
.nav-drop a.is-active { background: var(--cream); color: var(--navy); }

.nav-drop-icon {
  width: 34px; height: 34px; border-radius: 8px; background: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-drop-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-drop-text b { font-family: Outfit, sans-serif; font-size: 14px; color: var(--navy); font-weight: 600; }
.nav-drop-text small { font-size: 12px; color: var(--ink-soft); line-height: 1.35; }

.nav-drop-all {
  justify-content: space-between; background: var(--navy); color: var(--gold) !important;
  font-family: Outfit, sans-serif; font-weight: 600; margin-bottom: 6px;
}
.nav-drop-all:hover { background: var(--navy-lift) !important; color: var(--gold-bright) !important; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  width: 46px; height: 46px; border-radius: 8px; background: transparent;
  border: 1px solid rgba(201, 169, 97, .5); display: none; place-items: center;
  cursor: pointer; flex-shrink: 0;
}
.nav-toggle:hover { background: var(--navy-lift); }

.nav-mobile {
  background: var(--navy); border-top: 1px solid rgba(201, 169, 97, .25);
  padding: 14px 20px 22px; display: none; flex-direction: column; gap: 2px;
  font-size: 17px; font-weight: 500;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: #CBD5E1; padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.is-active { color: #fff; }
.nav-mobile a:hover { color: var(--gold); }
/* Service children, indented under the Services entry. */
.nav-mobile .nav-mobile-sub {
  padding-left: 20px; font-size: 15px; color: #94A3B8;
  border-left: 2px solid rgba(201, 169, 97, .35);
}
.nav-mobile .nav-mobile-sub:hover { color: var(--gold); }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: Inter, sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-bright); color: var(--navy); }
.btn-ghost { border-color: rgba(201, 169, 97, .55); color: #fff; }
.btn-ghost:hover { background: var(--navy-lift); border-color: var(--gold); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--gold); }
.btn-sm { font-size: 15px; padding: 12px 22px; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------- page banner */
/* Every page carries one: image, eyebrow, hook line, sub-line and CTAs. */
.banner {
  position: relative; background: var(--navy);
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  overflow: hidden;
}
.banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38;
}
.banner-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 15, 34, .94) 0%, rgba(14, 31, 61, .82) 46%, rgba(14, 31, 61, .48) 100%);
}
.banner-weave {
  position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(135deg, rgba(201, 169, 97, .06) 0 1px, transparent 1px 14px);
}
.banner-inner {
  position: relative; max-width: var(--shell); margin: 0 auto;
  padding: 78px 20px 84px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.banner-inner.is-centered { align-items: center; text-align: center; }
.banner .eyebrow { color: var(--gold); }
.banner h1 {
  font-size: clamp(32px, 4.6vw, 52px); font-weight: 700; color: #fff;
  text-wrap: balance; max-width: 18ch;
}
.banner-inner.is-centered h1 { max-width: 22ch; }
.banner p { max-width: 60ch; font-size: 17px; color: #CBD5E1; text-wrap: pretty; }
.banner-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }

/* home hero runs taller and centred */
.banner-home .banner-inner { padding: 96px 20px 104px; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; color: #94A3B8;
}
.crumbs a { color: #CBD5E1; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }

/* -------------------------------------------------------------- typography */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-ink);
}
.section { padding: 80px 20px; }
.section-white { background: #fff; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-tight { padding: 56px 20px; }

.section-head {
  text-align: center; max-width: 660px; margin: 0 auto 44px;
  display: flex; flex-direction: column; gap: 14px;
}
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; }
.section-head p { color: var(--ink-soft); font-size: 17px; text-wrap: pretty; }

/* ---------------------------------------------------------------- trust bar */
.trustbar { background: var(--cream); border-bottom: 1px solid var(--line); padding: 34px 20px; }
.trustbar .shell {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item strong { font-family: Outfit, sans-serif; font-size: 17px; color: var(--navy); }
.trust-item small {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft);
}
.trust-item > span { display: flex; flex-direction: column; gap: 2px; }

/* ------------------------------------------------------------ service tiles */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tile:hover { transform: translateY(-4px); border-color: var(--gold); background: var(--cream); }
.tile strong { font-family: Outfit, sans-serif; font-size: 16px; color: var(--navy); }
.tile-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy);
  display: grid; place-items: center;
}

/* --------------------------------------------------------------- split rows */
.split {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px; align-items: center;
}
.split-media { position: relative; }
.split-media img,
.split-placeholder {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(14, 31, 61, .12); display: block;
}
.split-placeholder {
  background: repeating-linear-gradient(135deg, var(--cream-edge) 0 10px, var(--cream) 10px 20px);
  display: grid; place-items: center; font-family: ui-monospace, monospace;
  font-size: 12px; color: var(--gold-ink); text-align: center; padding: 20px;
}
.split-badge {
  position: absolute; right: -10px; bottom: -10px; width: 64px; height: 64px;
  border-radius: 50%; background: var(--gold); border: 5px solid #fff;
  display: grid; place-items: center;
}
.section-cream .split-badge { border-color: var(--cream); }
.split-body { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.split-body h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 600; }
.split-body > p { font-size: 17px; text-wrap: pretty; }
.split-reverse .split-body { order: 1; }
.split-reverse .split-media { order: 2; }

.pill {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-ink); background: var(--cream); border: 1px solid var(--line);
  border-radius: 100px; padding: 7px 16px;
}
.section-cream .pill { background: #fff; }

.checklist { display: grid; gap: 12px; }
.checklist li, .checklist span.check {
  display: flex; align-items: center; gap: 11px; font-size: 15px; list-style: none;
}
.checklist { margin: 0; padding: 0; }
.check-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
}
.link-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 6px; }
.link-quiet { font-weight: 500; font-size: 15px; }
.link-quiet:hover { text-decoration: underline; }

/* ------------------------------------------------------------- value blocks */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.value { display: flex; flex-direction: column; gap: 14px; }
.value h3 { font-size: 20px; font-weight: 600; }
.value p { font-size: 15px; }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  display: grid; place-items: center;
}

/* ---------------------------------------------------------------- CTA strip */
.cta-strip {
  background: var(--navy); border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold); padding: 52px 20px;
}
.cta-strip .shell {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 28px;
}
.cta-strip h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; color: #fff; }
.cta-strip p { color: #CBD5E1; font-size: 15px; }
.cta-strip .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.cta-strip .phone { color: var(--gold); font-weight: 600; font-size: 17px; }

.cta-final { background: var(--navy-deep); border-top: 3px solid var(--gold); padding: 84px 20px; }
.cta-final .shell {
  max-width: 720px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-final h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 700; color: #fff; }
.cta-final p { color: #CBD5E1; font-size: 17px; }

/* -------------------------------------------------------------- card grids */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card-grid-tight { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 34px rgba(14, 31, 61, .12); }
.card-media { aspect-ratio: 16/9; background: var(--cream); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 19px; font-weight: 600; }
.card-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-ink);
}
.card-meta { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-soft); }
.card-tag {
  background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px;
}

.placeholder-art {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg, var(--cream-edge) 0 10px, var(--cream) 10px 20px);
  display: grid; place-items: center; font-family: ui-monospace, monospace;
  font-size: 11px; color: var(--gold-ink); text-align: center; padding: 16px;
}

/* ------------------------------------------------------------ product cards */
.product-card .card-media { aspect-ratio: 1; background: #fff; }
.product-card .card-media img { object-fit: contain; padding: 10px; }
.product-card .card-body { padding: 18px; gap: 8px; }
.product-card strong {
  font-family: Outfit, sans-serif; font-size: 16px; color: var(--navy); font-weight: 500;
}
.price { font-family: Outfit, sans-serif; font-size: 17px; font-weight: 600; color: var(--gold-ink); }
.badge-quote {
  align-self: flex-start; background: var(--gold); color: var(--navy); font-size: 12px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.stock {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #15803D;
}
.stock.made { color: var(--gold-ink); }
.stock.out { color: #B91C1C; }

/* --------------------------------------------------------------- shop layout */
.shop-layout {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start;
}
.shop-aside {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; position: sticky; top: 130px;
}
.shop-aside h3 { font-size: 15px; letter-spacing: .04em; margin-bottom: 14px; }
.filter-list { display: flex; flex-direction: column; gap: 2px; margin: 0 0 22px; padding: 0; list-style: none; }
.filter-list a {
  display: flex; justify-content: space-between; gap: 10px; align-items: center;
  padding: 9px 10px; border-radius: 7px; font-size: 14px; color: var(--ink);
}
.filter-list a:hover { background: var(--cream); color: var(--navy); }
.filter-list a.is-active { background: var(--navy); color: var(--gold); font-weight: 600; }
.filter-list .count { font-size: 12px; opacity: .7; }

.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}
.shop-count { font-size: 14px; color: var(--ink-soft); }
.search-form { display: flex; gap: 8px; }
.search-form input {
  font-family: Inter, sans-serif; font-size: 14px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 7px; min-width: 220px; color: var(--navy);
}
.search-form input:focus { outline: none; border-color: var(--navy); }

/* ------------------------------------------------------------ product detail */
.product-detail {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 52px; align-items: start;
}
.gallery-main {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; padding: 24px;
}
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gallery-thumbs button {
  width: 74px; height: 74px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; padding: 6px; cursor: pointer; display: grid; place-items: center;
}
.gallery-thumbs button.is-active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201, 169, 97, .3); }
.gallery-thumbs img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-info h1 { font-size: clamp(26px, 3vw, 36px); font-weight: 600; }
.price-lg { font-family: Outfit, sans-serif; font-size: 28px; font-weight: 700; color: var(--gold-ink); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 42%; color: var(--ink-soft); font-weight: 600; }
.spec-table td { color: var(--navy); font-weight: 500; }

.variant-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.variant-table th {
  text-align: left; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0 0 10px;
}
.variant-table td { padding: 11px 0; border-top: 1px solid var(--line); }
.variant-table td:last-child { text-align: right; font-family: Outfit, sans-serif; font-weight: 600; color: var(--gold-ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; background: var(--cream); border: 1px solid var(--line);
  border-radius: 100px; padding: 7px 14px; color: var(--navy);
}

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; display: flex; flex-direction: column; gap: 16px;
}
.panel h3 { font-size: 19px; }

.prose { display: flex; flex-direction: column; gap: 14px; }
.prose p { font-size: 16px; }
.prose h3 { font-size: 20px; margin-top: 8px; }
.prose ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; font-size: 16px; }

/* ------------------------------------------------------------ quote basket */
.quote-table { width: 100%; border-collapse: collapse; }
.quote-table th {
  text-align: left; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0 12px 12px 0;
}
.quote-table td { padding: 14px 12px 14px 0; border-top: 1px solid var(--line); vertical-align: middle; }
.quote-thumb {
  width: 62px; height: 62px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; display: grid; place-items: center; padding: 5px;
}
.quote-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.qty-input {
  width: 74px; padding: 9px 10px; border: 1px solid var(--line);
  border-radius: 7px; font-family: Inter, sans-serif; font-size: 15px;
}

/* ------------------------------------------------------------- testimonials */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 26px rgba(14, 31, 61, .06);
  display: flex; flex-direction: column; gap: 16px;
}
.quote-card blockquote { margin: 0; font-size: 17px; font-style: italic; line-height: 1.65; color: var(--ink); }
.quote-card .who { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.quote-card .who strong { font-family: Outfit, sans-serif; color: var(--navy); }
.quote-card .who span { font-size: 13px; color: var(--ink-soft); }
.quote-card .who em {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-ink); font-style: normal;
}
.stars { display: flex; gap: 4px; }

/* -------------------------------------------------------------------- forms */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: 0 18px 44px rgba(14, 31, 61, .08); display: grid; gap: 18px;
}
.form-card h3 { font-size: 22px; font-weight: 600; }
.field { display: grid; gap: 8px; font-size: 14px; font-weight: 600; color: #0F172A; }
.field input, .field select, .field textarea {
  font-family: Inter, sans-serif; font-size: 15px; font-weight: 400;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 6px;
  color: #0F172A; background: #fff; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); }
.form-note { font-size: 12px; color: var(--ink-soft); }

.contact-lines { display: grid; gap: 18px; margin-top: 4px; }
.contact-line { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 8px; background: var(--cream);
  border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0;
}
.contact-line small {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft);
}
.contact-line b, .contact-line a {
  font-family: Outfit, sans-serif; font-size: 17px; color: var(--navy); font-weight: 500;
}
.contact-line > span { display: flex; flex-direction: column; }

.alert {
  border-radius: 10px; padding: 15px 18px; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.alert-ok { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert-err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

/* ------------------------------------------------------------------- footer */
.site-footer {
  background: var(--navy-deep); border-top: 1px solid rgba(201, 169, 97, .22);
  padding: 64px 20px 0;
}
.footer-grid {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 44px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong {
  font-family: Outfit, sans-serif; font-size: 15px; color: #fff; letter-spacing: .04em;
}
.footer-col a { font-size: 14px; color: #94A3B8; }
.footer-col a:hover { color: var(--gold); }
.footer-about { display: flex; flex-direction: column; gap: 16px; }
.footer-about p { font-size: 14px; color: #94A3B8; max-width: 260px; }
.footer-about a { font-size: 14px; color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand .brand-mark { width: 50px; height: 50px; }
.footer-brand b { font-family: Outfit, sans-serif; font-size: 19px; font-weight: 600; color: #fff; }
.footer-note {
  max-width: var(--shell); margin: 52px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0;
  font-size: 13px; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
}
.footer-note a { color: var(--ink-soft); }
.footer-note a:hover { color: var(--gold); }

/* ------------------------------------------------------------- float actions */
.float-actions {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.float-actions a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(6, 15, 34, .3); transition: transform .18s ease;
}
.float-actions a:hover { transform: translateY(-2px); }
.float-wa { background: #25D366; }
.float-call { background: var(--gold); }

/* ------------------------------------------------------------------ 404 page */
.notfound {
  min-height: 52vh; display: grid; place-items: center; text-align: center;
  padding: 90px 20px;
}
.notfound-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 520px; }
.notfound h1 { font-size: clamp(34px, 6vw, 62px); font-weight: 700; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 999px) {
  .nav-main { display: none; }
  .nav-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside { position: static; }
  .split-reverse .split-body { order: 0; }
  .split-reverse .split-media { order: 0; }
}

@media (max-width: 640px) {
  .section { padding: 56px 20px; }
  .split { gap: 34px; }
  .banner-inner { padding: 58px 20px 62px; }
  .banner-home .banner-inner { padding: 66px 20px 72px; }
  .banner-actions .btn { flex: 1 1 100%; }
  .footer-note { justify-content: flex-start; }
}

@media print {
  .header-stack, .float-actions, .site-footer, .banner { display: none; }
}
