/* ============================================
   STOSA CUCINE HRVATSKA — Design System
   Italian luxury kitchen brand, CRO optimized
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Manrope:wght@200;300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bone: #FAF7F2;
  --cream: #F1ECE3;
  --sand: #E6DFD2;
  --stone: #B8AE9D;
  --olive: #6B6347;
  --espresso: #1F1A14;
  --terracotta: #B0664A;
  --terracotta-dark: #94553D;
  --gold: #A88656;
  --line: #D9D2C4;
  --line-dark: #2A241D;
  --success: #4F6B4A;
  --urgent: #C04A2E;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --maxw: 1440px;
  --gut: clamp(20px, 4vw, 64px);
  --radius: 0px;
  --shadow-soft: 0 30px 60px -20px rgba(31, 26, 20, 0.15);
  --shadow-deep: 0 40px 80px -20px rgba(31, 26, 20, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--terracotta); color: var(--bone); }

/* ---------- Announce bar (urgency) ---------- */
.announce {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 10px var(--gut);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 101;
}
.announce strong { color: var(--gold); font-weight: 500; }
.announce a { border-bottom: 1px solid var(--gold); padding-bottom: 1px; margin-left: 8px; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gut);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.16em;
  color: var(--espresso);
  flex-shrink: 0;
}
.nav-logo em { color: var(--terracotta); font-style: italic; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--olive);
}
.nav-phone:hover { color: var(--terracotta); }

.nav-cta {
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--bone);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--terracotta); border-color: var(--terracotta); }

.menu-btn { display: none; padding: 8px; margin-left: auto; }
.menu-btn span { display: block; width: 26px; height: 1px; background: var(--espresso); margin: 6px 0; transition: 0.3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .nav.open + .mobile-menu { display: flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bone);
  flex-direction: column;
  padding: 40px var(--gut);
  gap: 24px;
  z-index: 99;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-family: var(--font-display);
}
.mobile-menu a { padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid currentColor;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn.primary { background: var(--espresso); color: var(--bone); border-color: var(--espresso); }
.btn.primary:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }
.btn.terracotta { background: var(--terracotta); color: var(--bone); border-color: var(--terracotta); }
.btn.terracotta:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--espresso); }
.btn.ghost:hover { background: var(--espresso); color: var(--bone); }
.btn.light { background: var(--bone); color: var(--espresso); border-color: var(--bone); }
.btn.light:hover { background: var(--terracotta); color: var(--bone); border-color: var(--terracotta); }
.btn.lg { padding: 22px 40px; font-size: 13px; }
.btn .arrow { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s;
  color: var(--espresso);
}
.text-link:hover { gap: 16px; color: var(--terracotta); }

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow.no-line::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.018em;
  font-feature-settings: 'liga' 1, 'dlig' 1;
}
.display em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.display.light em { color: var(--gold); }
h1.display { font-size: clamp(44px, 7.5vw, 120px); }
h2.display { font-size: clamp(36px, 5vw, 80px); }
h3.display { font-size: clamp(26px, 3vw, 44px); }
h4.display { font-size: clamp(22px, 2.2vw, 32px); }

.lede {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: var(--olive);
  max-width: 50ch;
}
.section.dark .lede { color: var(--stone); }

.kicker {
  font-size: 13px;
  line-height: 1.7;
  max-width: 56ch;
  color: var(--olive);
}
.section.dark .kicker { color: var(--stone); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section.tight { padding: clamp(60px, 8vw, 100px) 0; }
.section.dark { background: var(--espresso); color: var(--cream); }
.section.dark .eyebrow { color: var(--gold); }
.section.cream { background: var(--cream); }
.section.sand { background: var(--sand); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .grid { gap: 32px; }
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head h2 { max-width: 14ch; }
.section-head .right { padding-bottom: 8px; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 120px var(--gut) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(176, 102, 74, 0.10), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(107, 99, 71, 0.08), transparent 50%),
    var(--bone);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 80px;
}
.hero h1 { margin: 32px 0 40px; }
.hero-right { display: flex; flex-direction: column; gap: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 42vw;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.95;
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}
.hero-meta {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .hero-img { display: none; }
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px var(--gut);
}
.trustbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: -0.01em;
  line-height: 1;
}
.trust-item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 8px;
}
@media (max-width: 700px) {
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ---------- Collection cards ---------- */
.collection-card {
  position: relative;
  display: block;
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
}
.collection-card .imgwrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.collection-card .imgwrap img,
.collection-card .imgwrap .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-card:hover .imgwrap img,
.collection-card:hover .imgwrap .ph { transform: scale(1.05); }
.collection-card .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bone);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.collection-card .badge.hot { background: var(--terracotta); color: var(--bone); }
.collection-card .body {
  padding: 28px 4px 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--espresso);
}
.collection-card .body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.collection-card .body .arrow {
  font-size: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-card:hover .body .arrow { transform: translateX(8px); }
.collection-card .meta {
  padding: 16px 4px 8px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--olive);
  letter-spacing: 0.04em;
}
.collection-card .meta span:last-child { color: var(--terracotta); font-weight: 500; }

/* Placeholder for images (no external assets) */
.ph {
  background:
    linear-gradient(135deg, rgba(176, 102, 74, 0.15), rgba(168, 134, 86, 0.12)),
    linear-gradient(45deg, var(--sand), var(--cream));
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 26, 20, 0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(176, 102, 74, 0.1), transparent 50%);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-style: italic;
  color: var(--olive);
  letter-spacing: 0.04em;
  opacity: 0.55;
}
.ph.dark { background: linear-gradient(135deg, #2A241D, #3A312A); }
.ph.dark::after { color: var(--gold); }

/* ---------- Value props ---------- */
.value-card {
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
}
.section.dark .value-card { border-top-color: var(--line-dark); }
.value-card .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 32px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--olive);
}
.section.dark .value-card p { color: var(--stone); }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 40px 24px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  color: var(--terracotta);
  font-style: italic;
  line-height: 1;
  margin-bottom: 32px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--olive);
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
}

/* ---------- Lead form (CRO) ---------- */
.lead-form {
  background: var(--bone);
  padding: 48px;
  border: 1px solid var(--line);
}
.section.dark .lead-form { background: rgba(250, 247, 242, 0.04); border-color: rgba(217, 210, 196, 0.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.section.dark .form-field input,
.section.dark .form-field select,
.section.dark .form-field textarea { border-bottom-color: rgba(217, 210, 196, 0.3); color: var(--cream); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--terracotta); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
}
.chip:hover, .chip.selected { background: var(--espresso); color: var(--bone); border-color: var(--espresso); }
.section.dark .chip { border-color: rgba(217, 210, 196, 0.3); color: var(--cream); }
.section.dark .chip:hover, .section.dark .chip.selected { background: var(--terracotta); border-color: var(--terracotta); }
.form-note {
  font-size: 11px;
  color: var(--olive);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 700px) {
  .lead-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Multi-step form ---------- */
.steps-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.steps-indicator span {
  flex: 1;
  height: 3px;
  background: var(--line);
  transition: background 0.4s;
}
.steps-indicator span.done { background: var(--terracotta); }
.step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.step-q {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* ---------- Testimonials ---------- */
.testimonial {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.testimonial .stars {
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  line-height: 1.35;
  font-weight: 400;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}
.testimonial cite strong { color: var(--espresso); font-weight: 500; }
@media (max-width: 700px) {
  .testimonial { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--terracotta); }
.faq-q .plus {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s;
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }
.faq-a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--olive);
  max-width: 70ch;
}

/* ---------- News cards ---------- */
.news-card {
  display: block;
}
.news-card .imgwrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 24px;
}
.news-card .imgwrap img,
.news-card .imgwrap .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .imgwrap img,
.news-card:hover .imgwrap .ph { transform: scale(1.04); }
.news-card .date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.news-card p { font-size: 14px; color: var(--olive); line-height: 1.6; }

/* ---------- Showroom card ---------- */
.showroom-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--bone);
  transition: all 0.3s;
}
.showroom-card:hover { border-color: var(--terracotta); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.showroom-card .city {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.showroom-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
}
.showroom-card .addr {
  font-size: 14px;
  line-height: 1.6;
  color: var(--olive);
  margin-bottom: 20px;
}
.showroom-card .contact {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.showroom-card .contact a { color: var(--espresso); }
.showroom-card .contact a:hover { color: var(--terracotta); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--espresso);
  padding: 12px;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}
.sticky-cta a {
  padding: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-cta .call { background: var(--terracotta); color: var(--bone); }
.sticky-cta .wa { background: var(--success); color: var(--bone); }
@media (max-width: 900px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: 64px; }
}

/* ---------- Banner / wide ---------- */
.banner-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(60px, 9vw, 120px) var(--gut);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(176, 102, 74, 0.2), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(168, 134, 86, 0.15), transparent 60%);
}
.banner-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
.banner-cta h2 { margin: 24px 0 32px; }
.banner-cta .lede { color: var(--stone); margin: 0 auto 40px; }
.banner-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: var(--stone);
  padding: 100px var(--gut) 40px;
  position: relative;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-dark);
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.14em;
  color: var(--bone);
  margin-bottom: 24px;
}
.footer-brand em { color: var(--terracotta); font-style: italic; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--cream);
  max-width: 32ch;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.footer-links a:hover { color: var(--terracotta); }
.footer-newsletter input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(217, 210, 196, 0.3);
  padding: 14px 0;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.footer-newsletter input::placeholder { color: var(--stone); }
.footer-newsletter button {
  margin-top: 20px;
  border: 1px solid var(--bone);
  background: transparent;
  color: var(--bone);
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.footer-newsletter button:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer-newsletter .small { font-size: 11px; color: var(--stone); margin-top: 16px; line-height: 1.5; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom a:hover { color: var(--terracotta); }
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Landing-page specific ---------- */
.lp-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--bone);
}
.lp-hero-content {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-hero-content h1 { margin: 24px 0 32px; }
.lp-hero-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-hero-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--espresso);
}
.lp-hero-list li::before {
  content: '✓';
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: var(--bone);
  font-size: 13px;
  flex-shrink: 0;
}
.lp-hero-form {
  background: var(--cream);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-hero-form .badge-offer {
  position: absolute;
  top: 32px; right: 32px;
  background: var(--terracotta);
  color: var(--bone);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; }
}

.urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(192, 74, 46, 0.08);
  border-left: 3px solid var(--urgent);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--espresso);
  margin: 24px 0;
}
.urgency strong { color: var(--urgent); font-weight: 600; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--urgent);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Logos bar (social proof) ---------- */
.logos-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px var(--gut);
  background: var(--bone);
}
.logos-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.logos-bar .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}
.logos-bar .logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.logos-bar .logos span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ---------- Misc utilities ---------- */
.center { text-align: center; }
.muted { color: var(--olive); }
.divider { height: 1px; background: var(--line); margin: 0; }
.section.dark .divider { background: var(--line-dark); }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: clamp(120px, 16vw, 200px) var(--gut) clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse at 80% 30%, rgba(176, 102, 74, 0.08), transparent 60%),
    var(--bone);
  border-bottom: 1px solid var(--line);
}
.page-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-header h1 { margin-top: 24px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
@media (max-width: 900px) {
  .page-header-inner { grid-template-columns: 1fr; gap: 24px; }
}
