:root {
  --bg: #f8f2ea;
  --bg-soft: #f4ece2;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: #efe3d5;
  --line: rgba(90, 64, 43, 0.12);
  --white: #ffffff;
  --text: #35281f;
  --muted: #7a6858;
  --accent: #b98b5d;
  --accent-2: #8b603e;
  --accent-dark: #8b603e;
  --green: #25d366;
  --shadow: 0 24px 60px rgba(54, 39, 25, 0.12);
  --radius: 24px;
  --container: 1240px;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(185, 139, 93, 0.14), transparent 22%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.45), transparent 18%),
    linear-gradient(180deg, #fffaf5 0%, #f7efe6 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 2px;
  transition: color var(--transition);
}

/* underline effect */
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 260ms ease;
}

/* hover + active state */
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

/* animate underline */
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 40px rgba(139, 94, 52, 0.35);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.97);
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
}

.mobile-menu a.active {
  color: var(--text);
}

.hero-section {
  padding: 72px 0 88px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.mini-label {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-copy h1,
.section-head h2,
.cta-panel h2,
.site-footer h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.03rem;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card,
.glass-card,
.showroom-shell,
.spotlight-card,
.review-card,
.cta-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero-main-panel {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 620px;
}

.hero-main-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.floating-panel {
  position: absolute;
  right: -24px;
  bottom: 36px;
  width: 280px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.92);
}

.floating-panel h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.floating-panel p {
  margin: 0;
  color: var(--muted);
}

section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.split-head {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: end;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.showroom-shell {
  border-radius: 32px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.showroom-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tab-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-weight: 700;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
}

.showroom-panel {
  display: none;
}

.showroom-panel.active {
  display: block;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.showroom-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
}

.showroom-image img {
  height: 100%;
  object-fit: cover;
}

.showroom-info {
  padding: 12px 6px;
}

.showroom-info h3 {
  margin: 14px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.showroom-info p {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.feature-list li {
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}

.spotlight-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform var(--transition), border-color var(--transition);
}

.spotlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 139, 93, 0.32);
}


.spotlight-image {
  height: 300px;
  overflow: hidden;
}

.large-card .spotlight-image {
  height: 420px;
}

.spotlight-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.spotlight-card:hover .spotlight-image img {
  transform: scale(1.06);
}

.spotlight-content {
  padding: 22px;
}

.spotlight-content h3 {
  margin: 12px 0 10px;
  font-size: 1.32rem;
}

.spotlight-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.spotlight-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spotlight-bottom strong {
  color: var(--white);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.reviews-wrap {
  max-width: 980px;
}

.review-slider {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 18px;
  align-items: center;
}
.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(185, 139, 93, 0.25);
  background: linear-gradient(135deg, #fffaf3, #f1e3d3);
  color: var(--accent-dark);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(54, 39, 25, 0.12);
  transition: all 260ms ease;
}
.slider-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 24px 60px rgba(54, 39, 25, 0.2);
}

.review-track {
  position: relative;
  min-height: 260px;
}

.review-card {
  display: none;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.review-card.active {
  display: block;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 1.06rem;
  color: var(--text);
  margin: 0 0 20px;
}

.review-card strong {
  display: block;
  margin-bottom: 4px;
}

.review-card span {
  color: var(--muted);
}

.cta-panel {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fffaf3, #f1e1cf);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-panel h2 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cta-panel p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}
.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 18px;
  z-index: 90;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.back-to-top {
  bottom: 80px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.floating-whatsapp {
  bottom: 18px;
  background: linear-gradient(135deg, #25d366, #1e9f4d);
  color: #fff;
}



.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-head,
  .showroom-grid,
  .cta-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .split-head {
    gap: 16px;
  }

  .spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: span 2;
  }

  .floating-panel {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .hero-main-panel {
    min-height: 520px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head h2 {
    line-height: 1.05;
  }

  .cta-panel {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero-section,
  section {
    padding: 72px 0;
  }

  .nav-wrap,
  .footer-wrap {
    gap: 16px;
  }

  .hero-layout,
  .showroom-grid,
  .spotlight-grid,
  .cta-panel,
  .footer-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: auto;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-main-panel {
    min-height: 420px;
  }

  .showroom-image {
    min-height: 360px;
  }

  .showroom-tabs {
    gap: 10px;
  }

  .review-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-track {
    min-height: auto;
  }

  .slider-btn {
    width: 100%;
    height: 48px;
    border-radius: 16px;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card strong {
    font-size: 2rem;
  }

  .hero-main-panel {
    min-height: 320px;
    border-radius: 24px;
  }

  .showroom-shell,
  .review-card,
  .spotlight-content,
  .cta-panel {
    padding: 20px;
  }

  .showroom-image {
    min-height: 280px;
  }

  .showroom-info h3 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .spotlight-image,
  .large-card .spotlight-image {
    height: 240px;
  }

  .spotlight-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card p {
    font-size: 0.98rem;
  }

  .footer-links {
    gap: 12px;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 12px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 16px));
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    display: none;
  }

  .hero-section,
  section {
    padding: 56px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-text,
  .section-head p:last-child,
  .showroom-info p,
  .spotlight-content p,
  .review-card p,
  .cta-panel p:last-child {
    font-size: 0.92rem;
  }

  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .stat-card,
  .showroom-shell,
  .review-card,
  .spotlight-content,
  .cta-panel {
    padding: 16px;
  }

  .stat-card strong {
    font-size: 1.8rem;
  }

  .hero-main-panel {
    min-height: 260px;
  }

  .showroom-image {
    min-height: 220px;
  }

  .spotlight-image,
  .large-card .spotlight-image {
    height: 210px;
  }

  .panel-badge {
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 10px;
    font-size: 0.82rem;
  }
}