:root {
  --wine: #9b0017;
  --wine-dark: #6f0011;
  --ink: #241819;
  --muted: #6d5f5f;
  --soft: #fbf4f1;
  --blush: #f3dfdd;
  --line: #ead8d5;
  --white: #fff;
  --gold: #c9a66b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #463737;
  font-size: 15px;
}

.main-nav a:hover {
  color: var(--wine);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--wine-dark);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--wine);
}

.btn.secondary:hover {
  background: #fff6f7;
  color: var(--wine-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 28px;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 79px);
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 18, 19, 0.82), rgba(35, 18, 19, 0.44) 54%, rgba(35, 18, 19, 0.16)),
    url("../images/page/hero-showroom.png") center / cover no-repeat;
}

.hero-inner {
  width: min(1140px, 90vw);
  margin: 0 auto;
  padding: 74px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffe7ea;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #ffe7ea;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
}

.hero p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #fff1f1;
  font-size: 20px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.proof-bar {
  background: var(--wine);
  color: #fff;
}

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

.proof-item {
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.proof-item span {
  color: #f4d4d7;
  font-size: 14px;
}

.section {
  padding: 74px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  margin-bottom: 34px;
  align-items: end;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 14px;
}

.media-grid img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.media-grid img:first-child {
  min-height: 470px;
}

.media-grid div {
  display: grid;
  gap: 14px;
}

.text-block p {
  color: var(--muted);
  font-size: 18px;
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.quick-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quick-list strong {
  display: block;
  margin-bottom: 4px;
}

.quick-list span {
  color: var(--muted);
  font-size: 14px;
}

.style-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.style-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.style-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.style-card div {
  padding: 20px;
}

.style-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.style-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  counter-reset: process;
}

.process div {
  position: relative;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process div::before {
  counter-increment: process;
  content: counter(process);
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
}

.process strong {
  display: block;
  margin-bottom: 6px;
}

.process span {
  color: var(--muted);
  font-size: 14px;
}

.quote-panel {
  padding: 42px;
  border-radius: 8px;
  background: var(--wine);
  color: #fff;
}

.quote-panel p {
  color: #f4d4d7;
  font-size: 18px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 26px;
}

.quote-grid span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq details {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 82px 0;
  background: #231516;
  color: #fff;
}

.final-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
}

.final-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: #e7cfd1;
  font-size: 18px;
}

.site-footer {
  padding: 46px 5vw 90px;
  background: #1d1213;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-logo {
  width: 126px;
  margin-bottom: 12px;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
}

.site-footer h4 {
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: #e4cacd;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta a {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 5vw;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 0 92px;
  }

  .proof-grid,
  .section-head,
  .split,
  .style-row,
  .process,
  .faq,
  .final-cta .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .process div {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 118px;
  }

  .quick-list,
  .media-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .media-grid img:first-child {
    min-height: 320px;
  }

  .section {
    padding: 54px 0;
  }

  .quote-panel {
    padding: 28px;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: row;
  }

  .sticky-cta a {
    flex: 1;
    padding: 10px 8px;
  }
}


/* ==========================================================================
   Master B2B Navigation Styles (Copied from main style.css for complete styling)
   ========================================================================== */
:root {
  --muted: #716763;
  --accent-dark: #944f58;
  --line: #e7ddd7;
  --shadow: 0 16px 40px rgba(82,55,41,.08);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,247,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,221,215,.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: #2f2825;
}
.brand img {
  width: 150px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.nav-link {
  color: var(--muted);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--accent-dark);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
}
.btn-sm {
  padding: 11px 16px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: #b86c75;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-sm:hover {
  background: var(--accent-dark);
}
.nav-item {
  position: relative;
}
.nav-trigger {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.nav-trigger:hover, .nav-link:hover {
  color: var(--accent-dark);
}
.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 18px);
  width: min(980px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(40,24,19,.16);
  padding: 22px;
  display: none;
  z-index: 80;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.nav-item:hover .mega-menu {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mega-col h4 {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 15px;
}
.mega-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 9px 0;
  text-decoration: none;
}
@media (max-width: 980px) {
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    margin-top: 12px;
  }
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
}
