/* Atelier Marmuru — showroom / product system (am-*) */
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --c1: #5c2e2e;
  --c2: #c9a227;
  --c3: #f5f0e6;
  --c4: #1a1212;
  --burgundy: var(--c1);
  --brass: var(--c2);
  --parchment: var(--c3);
  --ink: var(--c4);
  --ink-soft: #2c2222;
  --muted: #6b5c5c;
  --line: rgba(92, 46, 46, 0.14);
  --glass: rgba(245, 240, 230, 0.12);
  --shadow: 0 18px 40px rgba(26, 18, 18, 0.12);
  --r: 2px;
  --font-d: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-b: "Outfit", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-b);
  font-weight: 400;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c1); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c2); }
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 600; line-height: 1.2; color: var(--ink); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }

.am-w {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— util bar —— */
.am-bar {
  background: var(--ink);
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.am-bar .am-w {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 0.35rem 0;
}
.am-bar a { color: var(--c2); text-decoration: none; font-weight: 500; }
.am-bar a:hover { color: #e0c45a; }
.am-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.am-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6dba7a;
  box-shadow: 0 0 0 0 rgba(109, 186, 122, 0.6);
  animation: am-pulse 2s infinite;
}
@keyframes am-pulse {
  0% { box-shadow: 0 0 0 0 rgba(109, 186, 122, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(109, 186, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 186, 122, 0); }
}

/* —— header —— */
.am-hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.am-hdr .am-w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.am-logo {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.am-logo span { color: var(--c1); font-style: italic; font-weight: 500; }
.am-logo:hover { color: var(--ink); }

.am-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
}
.am-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.am-nav a:hover,
.am-nav a.am-active { color: var(--c1); }
.am-nav .am-btn { margin-left: 0.35rem; }

.am-mbtn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--r);
  cursor: pointer;
}

/* —— buttons —— */
.am-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.55rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.am-btn:hover { transform: translateY(-1px); }
.am-btn-p {
  background: var(--c1);
  color: #fff;
  box-shadow: 0 8px 20px rgba(92, 46, 46, 0.25);
}
.am-btn-p:hover { background: #4a2424; color: #fff; }
.am-btn-g {
  background: transparent;
  border-color: var(--c1);
  color: var(--c1);
}
.am-btn-g:hover { background: var(--c1); color: #fff; }
.am-btn-brass {
  background: linear-gradient(135deg, var(--c2) 0%, #b8911f 100%);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(201, 162, 39, 0.28);
}
.am-btn-brass:hover { color: var(--ink); filter: brightness(1.05); }
.am-btn-ghost {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.45);
  color: var(--parchment);
}
.am-btn-ghost:hover { background: rgba(245, 240, 230, 0.1); color: #fff; }
.am-btn-b { width: 100%; }
.am-btn-reject {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* —— hero full-bleed dark —— */
.am-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--parchment);
  overflow: hidden;
  background: var(--ink);
}
.am-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.85) brightness(0.55);
}
.am-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(92, 46, 46, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(26, 18, 18, 0.55) 0%, rgba(26, 18, 18, 0.78) 100%);
}
.am-hero .am-w {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 4rem;
  max-width: 820px;
}
.am-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--c2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r);
}
.am-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.55rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.am-hero .am-lead {
  color: rgba(245, 240, 230, 0.88);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 34em;
  margin: 0 auto 1.6rem;
}
.am-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.am-hero-meta {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.7);
}
.am-hero-meta strong { color: var(--c2); font-weight: 600; }

/* palette strip */
.am-palette {
  display: flex;
  gap: 0;
  width: 120px;
  height: 6px;
  margin: 1.35rem auto 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.am-palette span { flex: 1; }
.am-palette span:nth-child(1) { background: var(--c1); }
.am-palette span:nth-child(2) { background: var(--c2); }
.am-palette span:nth-child(3) { background: var(--c3); }
.am-palette span:nth-child(4) { background: var(--c4); }
.am-palette-dark { box-shadow: 0 0 0 1px rgba(26,18,18,0.12); margin-left: 0; margin-right: 0; }

/* glass stats */
.am-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: min(100% - 2rem, var(--max));
  margin: -2.25rem auto 0;
  position: relative;
  z-index: 5;
}
.am-stat {
  background: rgba(245, 240, 230, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(92, 46, 46, 0.1);
  border-radius: var(--r);
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.am-stat strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.55rem;
  color: var(--c1);
  font-weight: 600;
  line-height: 1.15;
}
.am-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* sections */
.am-sec { padding: 4.25rem 0; }
.am-sec-alt { background: #fff; }
.am-sec-ink {
  background: linear-gradient(165deg, var(--ink) 0%, #2a1c1c 55%, var(--c1) 100%);
  color: var(--parchment);
}
.am-sec-ink h2,
.am-sec-ink h3 { color: #fff; }
.am-sec-ink p,
.am-sec-ink li { color: rgba(245, 240, 230, 0.86); }
.am-sec-burg {
  background: linear-gradient(135deg, var(--c1) 0%, #3d1e1e 100%);
  color: var(--parchment);
}
.am-sec-burg h2 { color: #fff; }
.am-sec-burg p { color: rgba(245, 240, 230, 0.88); }

.am-sec-h {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.am-sec-h.am-center {
  text-align: center;
  margin-inline: auto;
}
.am-sec-h h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin: 0 0 0.65rem;
}
.am-sec-h p {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}
.am-sec-ink .am-sec-h p,
.am-sec-burg .am-sec-h p { color: rgba(245, 240, 230, 0.75); }

.am-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 0.55rem;
}

/* page top (inner pages) */
.am-page-top {
  background:
    linear-gradient(120deg, rgba(92, 46, 46, 0.94), rgba(26, 18, 18, 0.92)),
    var(--ink);
  color: var(--parchment);
  padding: 3.25rem 0 2.75rem;
  border-bottom: 3px solid var(--c2);
}
.am-page-top h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin: 0 0 0.55rem;
}
.am-page-top p {
  margin: 0;
  max-width: 38rem;
  color: rgba(245, 240, 230, 0.82);
  font-weight: 300;
}

/* gallery grid */
.am-g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.am-g4 figure {
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.am-g4 figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.am-g4 img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.am-g4 figure:hover img { transform: scale(1.04); }
.am-g4 figcaption {
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: #fff;
}

/* product cards */
.am-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.am-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  box-shadow: 0 4px 16px rgba(26, 18, 18, 0.04);
}
.am-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(26, 18, 18, 0.14);
}
.am-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.am-card-b {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.am-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}
.am-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.am-price {
  font-family: var(--font-d);
  font-size: 1.45rem;
  color: var(--c1);
  font-weight: 600;
  margin: 0.4rem 0 1rem;
}
.am-price small {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
}
.am-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--c2);
  padding: 0.22rem 0.5rem;
  border-radius: var(--r);
  margin-bottom: 0.55rem;
  width: fit-content;
}

/* process steps */
.am-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: amstep;
}
.am-steps article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem 1.15rem 1.25rem;
  counter-increment: amstep;
}
.am-steps article::before {
  content: counter(amstep, decimal-leading-zero);
  font-family: var(--font-d);
  font-size: 1.6rem;
  color: var(--c2);
  display: block;
  margin-bottom: 0.55rem;
  line-height: 1;
}
.am-steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.am-steps p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}
.am-sec-ink .am-steps article {
  background: rgba(245, 240, 230, 0.06);
  border-color: rgba(245, 240, 230, 0.12);
}
.am-sec-ink .am-steps p { color: rgba(245, 240, 230, 0.72); }

/* trust row */
.am-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.am-trust article {
  border: 1px solid var(--line);
  border-top: 3px solid var(--c1);
  background: #fff;
  border-radius: var(--r);
  padding: 1.25rem 1.1rem;
  text-align: center;
}
.am-trust article:nth-child(2) { border-top-color: var(--c2); }
.am-trust article:nth-child(3) { border-top-color: var(--c1); }
.am-trust article:nth-child(4) { border-top-color: var(--c2); }
.am-trust strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--c1);
  margin-bottom: 0.3rem;
}
.am-trust p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* benefits */
.am-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.am-benefits article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem 1.25rem;
  border-left: 3px solid var(--c1);
}
.am-benefits article:nth-child(2) { border-left-color: var(--c2); }
.am-benefits article:nth-child(3) { border-left-color: var(--c1); }
.am-benefits h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}
.am-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* split about */
.am-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.am-split img {
  width: 100%;
  border-radius: var(--r);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* FAQ */
.am-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.am-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.15rem 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.am-faq details[open] {
  border-color: rgba(92, 46, 46, 0.35);
  box-shadow: 0 10px 28px rgba(26, 18, 18, 0.06);
}
.am-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
  list-style: none;
  color: var(--ink);
}
.am-faq summary::-webkit-details-marker { display: none; }
.am-faq summary::after {
  content: "+";
  float: right;
  color: var(--c1);
  font-weight: 500;
  font-size: 1.15rem;
}
.am-faq details[open] summary::after { content: "–"; }
.am-faq details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* CTA band */
.am-cta {
  text-align: center;
  padding: 3.5rem 0;
}
.am-cta h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0 0 0.55rem;
  color: #fff;
}
.am-cta p {
  margin: 0 auto 1.4rem;
  max-width: 34rem;
  color: rgba(245, 240, 230, 0.85);
}
.am-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* areas chips */
.am-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.am-areas li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--c1);
  border-radius: var(--r);
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.am-areas li:nth-child(3n+2) { border-left-color: var(--c2); }

/* pricing table */
.am-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 18, 18, 0.05);
}
.am-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.95rem;
}
.am-table th,
.am-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.am-table th {
  background: var(--c1);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.am-table tr:last-child td { border-bottom: 0; }
.am-table tr:nth-child(even) td { background: rgba(245, 240, 230, 0.45); }
.am-table .am-pt {
  font-weight: 700;
  color: var(--c1);
  white-space: nowrap;
}

/* contact map | form */
.am-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
  padding-bottom: 3.5rem;
}
.am-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 10px 30px rgba(26, 18, 18, 0.05);
}
.am-f { margin-bottom: 0.95rem; }
.am-f label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}
.am-f input,
.am-f select,
.am-f textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--parchment);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.am-f input:focus,
.am-f select:focus,
.am-f textarea:focus {
  outline: none;
  border-color: var(--c1);
  box-shadow: 0 0 0 3px rgba(92, 46, 46, 0.12);
  background: #fff;
}
.am-chk {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.am-chk input { margin-top: 0.25rem; flex-shrink: 0; }

.am-map-box {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: #e8e0d4;
}
.am-map-box iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.am-nap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
}
.am-nap-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.am-nap-card p { margin: 0 0 0.55rem; color: var(--muted); font-size: 0.95rem; }
.am-nap-card a { font-weight: 600; text-decoration: none; }

/* legal */
.am-legal {
  max-width: 760px;
  padding-bottom: 2rem;
}
.am-legal h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.65rem;
  color: var(--c1);
}
.am-legal p,
.am-legal li { color: var(--ink-soft); font-size: 0.97rem; }
.am-legal code {
  font-size: 0.88em;
  background: rgba(92, 46, 46, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: var(--r);
}

/* thanks */
.am-thanks {
  text-align: center;
  padding: 5rem 0 4rem;
  max-width: 560px;
  margin: 0 auto;
}
.am-thanks h1 {
  font-size: 2.4rem;
  color: var(--c1);
  margin: 0 0 0.75rem;
}
.am-thanks p { color: var(--muted); }

/* footer */
.am-foot {
  background: var(--ink);
  color: rgba(245, 240, 230, 0.72);
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
}
.am-fg {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.am-fb {
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 0.5rem;
}
.am-foot h4 {
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  font-weight: 600;
}
.am-foot ul { list-style: none; padding: 0; margin: 0; }
.am-foot li { margin-bottom: 0.4rem; }
.am-foot a { color: var(--c2); text-decoration: none; }
.am-foot a:hover { color: #e0c45a; }
.am-foot-palette {
  display: flex;
  gap: 0;
  width: 88px;
  height: 5px;
  margin-top: 1rem;
  border-radius: var(--r);
  overflow: hidden;
}
.am-foot-palette i { flex: 1; }
.am-foot-palette i:nth-child(1) { background: var(--c1); }
.am-foot-palette i:nth-child(2) { background: var(--c2); }
.am-foot-palette i:nth-child(3) { background: var(--c3); }
.am-foot-palette i:nth-child(4) { background: #4a3a3a; }
.am-fbot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  font-size: 0.85rem;
}

/* widgets: scroll progress */
.am-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  pointer-events: none;
}

/* FAB */
.am-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}
.am-fab-msg {
  background: var(--ink);
  color: var(--parchment);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.am-fab-call {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c1), #3d1e1e);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(92, 46, 46, 0.4);
  transition: transform 0.2s ease;
  text-decoration: none;
}
.am-fab-call:hover { transform: scale(1.06); color: #fff; }
.am-fab-call svg { width: 24px; height: 24px; fill: currentColor; }

/* sticky mobile CTA */
.am-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: rgba(26, 18, 18, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.65rem 1rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
}
.am-sticky .am-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  max-width: var(--max);
  margin: 0 auto;
}
.am-sticky .am-btn { min-height: 44px; width: 100%; }

body.am-no-sticky .am-fab,
body.am-no-sticky .am-sticky { display: none !important; }

/* cookie bar */
.am-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(26, 18, 18, 0.97);
  color: var(--parchment);
  border-top: 2px solid var(--c2);
  padding: 1rem 1.1rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
}
.am-cookie.am-on { transform: translateY(0); }
.am-cb-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.am-cookie p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.88);
  line-height: 1.5;
}
.am-cookie a { color: var(--c2); }
.am-cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.am-cookie .am-btn { min-height: 42px; font-size: 0.88rem; }
body.am-cookie-open { padding-bottom: 0; }

/* motion reveal */
.am-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.am-reveal.am-in {
  opacity: 1;
  transform: none;
}
.am-reveal-d1 { transition-delay: 0.08s; }
.am-reveal-d2 { transition-delay: 0.16s; }
.am-reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .am-reveal { opacity: 1; transform: none; transition: none; }
  .am-card:hover,
  .am-g4 figure:hover { transform: none; }
  .am-live i { animation: none; }
  .am-btn:hover { transform: none; }
}

/* proza list block */
.am-prose { max-width: 46rem; }
.am-prose p { color: var(--ink-soft); }
.am-note {
  background: rgba(201, 162, 39, 0.12);
  border-left: 3px solid var(--c2);
  padding: 0.9rem 1.1rem;
  border-radius: var(--r);
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 1.25rem 0;
}

/* two-col content */
.am-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* icon tiles */
.am-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.am-tile {
  background: rgba(245, 240, 230, 0.08);
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: var(--r);
  padding: 1.15rem;
  text-align: center;
}
.am-tile strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.15rem;
  color: var(--c2);
  margin-bottom: 0.3rem;
}
.am-tile span {
  font-size: 0.88rem;
  color: rgba(245, 240, 230, 0.75);
}

/* hours badge */
.am-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--c2);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--r);
  margin-bottom: 1rem;
}

/* responsive */
@media (max-width: 960px) {
  .am-stats { grid-template-columns: repeat(2, 1fr); margin-top: -1.5rem; }
  .am-g4 { grid-template-columns: repeat(2, 1fr); }
  .am-products { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .am-steps { grid-template-columns: repeat(2, 1fr); }
  .am-trust { grid-template-columns: repeat(2, 1fr); }
  .am-benefits { grid-template-columns: 1fr; }
  .am-split { grid-template-columns: 1fr; }
  .am-contact { grid-template-columns: 1fr; }
  .am-fg { grid-template-columns: 1fr 1fr; }
  .am-two { grid-template-columns: 1fr; }
  .am-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .am-mbtn { display: inline-flex; }
  .am-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
    box-shadow: 0 16px 32px rgba(26, 18, 18, 0.1);
  }
  .am-nav.am-on { display: flex; }
  .am-nav a {
    padding: 0.7rem 0.35rem;
    border-bottom: 1px solid var(--line);
  }
  .am-nav .am-btn {
    margin: 0.65rem 0 0;
    width: 100%;
  }
  .am-hdr { position: sticky; }
  .am-hdr .am-w { position: relative; }
  .am-hero { min-height: 72vh; }
  .am-sticky { display: block; }
  .am-fab { bottom: 5.25rem; right: 0.85rem; }
  body:not(.am-no-sticky) { padding-bottom: 4.5rem; }
  body.am-cookie-open:not(.am-no-sticky) { padding-bottom: 9rem; }
}

@media (max-width: 520px) {
  .am-stats { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .am-stat { padding: 0.85rem 0.65rem; }
  .am-stat strong { font-size: 1.25rem; }
  .am-steps { grid-template-columns: 1fr; }
  .am-trust { grid-template-columns: 1fr; }
  .am-fg { grid-template-columns: 1fr; }
  .am-g4 { grid-template-columns: 1fr; }
  .am-bar .am-w { justify-content: center; text-align: center; }
}
