:root {
  --bg: #f8f4ed;
  --surface: #fffaf2;
  --ink: #2d1d12;
  --muted: #705f51;
  --line: #e3d5c5;
  --brand: #b2762e;
  --brand-dark: #8f5a1f;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: "Playfair Display", Georgia, serif;
}

a {
  color: var(--brand-dark);
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-dark);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
}

.site-nav {
  background: rgba(248, 244, 237, 0.94);
  border-bottom: 1px solid rgba(45, 29, 18, 0.08);
  backdrop-filter: blur(10px);
}

.site-nav .container {
  position: relative;
}

.navbar-brand {
  margin-right: 0;
}

.furniture-logo {
  position: relative;
  width: 48px;
  height: 38px;
  display: inline-block;
  flex: 0 0 auto;
  animation: logoFloat 3.4s ease-in-out infinite;
}

.furniture-logo span {
  position: absolute;
  display: block;
}

.sofa-back {
  left: 8px;
  top: 5px;
  width: 32px;
  height: 20px;
  border-radius: 11px 11px 6px 6px;
  background: linear-gradient(135deg, #c98a38, var(--brand-dark));
  box-shadow: inset 0 -4px 0 rgba(45, 29, 18, 0.14);
}

.sofa-seat {
  left: 6px;
  top: 19px;
  width: 36px;
  height: 11px;
  border-radius: 8px;
  background: #2d1d12;
  animation: seatGlow 3.4s ease-in-out infinite;
}

.sofa-arm {
  top: 15px;
  width: 9px;
  height: 15px;
  border-radius: 7px 7px 5px 5px;
  background: var(--brand);
}

.sofa-arm-left {
  left: 2px;
}

.sofa-arm-right {
  right: 2px;
}

.sofa-leg {
  top: 29px;
  width: 5px;
  height: 6px;
  border-radius: 0 0 3px 3px;
  background: #2d1d12;
}

.sofa-leg-left {
  left: 12px;
}

.sofa-leg-right {
  right: 12px;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes seatGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(178, 118, 46, 0);
  }
  50% {
    box-shadow: 0 7px 16px rgba(178, 118, 46, 0.26);
  }
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.top-contact-links {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.top-email {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.top-email:hover {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(45, 29, 18, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.social-icon::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 60px;
  left: -34px;
  top: -12px;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, 0.28);
  transition: left 0.35s ease;
}

.social-icon span {
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  color: #fff;
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.social-icon:hover::after {
  left: 42px;
}

.social-whatsapp {
  background: linear-gradient(135deg, #2fe477, #12a84b);
  border-radius: 11px 11px 11px 4px;
  font-size: 0.62rem;
}

.social-facebook {
  background: linear-gradient(135deg, #3c93ff, #0f5fd0);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  text-transform: none;
}

.social-instagram {
  background:
    radial-gradient(circle at 75% 25%, #fff7 0 7%, transparent 8%),
    linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #962fbf);
  font-size: 0.66rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(30, 18, 10, 0.78), rgba(30, 18, 10, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 6rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  max-width: 850px;
}

.hero .lead {
  max-width: 620px;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 6rem 0;
}

.section-muted {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.service-box,
.feature-box,
.price-box,
.contact-form {
  height: 100%;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(45, 29, 18, 0.06);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: rgba(178, 118, 46, 0.14);
  color: var(--brand-dark);
  font-weight: 700;
}

.service-box h3,
.feature-box h3,
.price-box h3,
.project h3 {
  font-size: 1.45rem;
}

.service-box p,
.feature-box p,
.price-box p,
.project p,
#about p,
#contact p {
  color: var(--muted);
}

.project {
  padding: 2rem 0;
}

.project + .project {
  border-top: 1px solid var(--line);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.before-after figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.before-after figure:hover img {
  transform: scale(1.04);
}

.before-after figcaption {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.price-box {
  position: relative;
  background: var(--surface);
}

.price-box.featured {
  border-color: var(--brand);
  transform: translateY(-8px);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink) !important;
}

.tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-list {
  padding-left: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  background: var(--bg);
}

.contact-form label {
  font-weight: 700;
}

.form-control {
  border-color: var(--line);
  background: #fffdf8;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--brand-dark);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 20;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fe477, #0aa143);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 3px;
  width: 14px;
  height: 14px;
  background: #0aa143;
  transform: rotate(45deg);
  z-index: -1;
}

@media (max-width: 991px) {
  .top-contact-links {
    position: static;
    transform: none;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 4.5rem 0;
  }

  .before-after {
    gap: 0.65rem;
  }

  .price-box.featured {
    transform: none;
  }
}
