:root {
  --bg: #f2efe9;
  --bg-soft: #e7e1d7;
  --surface: #ffffff;
  --text: #1f2428;
  --muted: #5d6469;
  --brand: #c56d2d;
  --brand-strong: #a4521d;
  --accent: #0f6a68;
  --line: #d7cfc2;
  --shadow: 0 20px 50px rgba(61, 43, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at top left, #fff8ef 0%, var(--bg) 45%, #ece8df 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-texture {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(115deg, rgba(197, 109, 45, 0.06), transparent 30%),
    linear-gradient(250deg, rgba(15, 106, 104, 0.06), transparent 35%);
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(242, 239, 233, 0.78);
  border-bottom: 1px solid rgba(215, 207, 194, 0.8);
  z-index: 20;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-toggle,
.menu-close,
.menu-overlay {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(85, 71, 56, 0.28);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.45rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.24rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 99px;
  background: #2b3136;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  height: 40px;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.menu-close {
  border: 1px solid rgba(80, 67, 54, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: #273038;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-strong);
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #fff;
  text-decoration: none;
  padding: 0.78rem 1.14rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(165, 82, 29, 0.35);
}

.btn-small {
  padding: 0.58rem 0.92rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  padding: 3.7rem 0;
}

.slogan-banner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin: 0 0 1.4rem 0;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(197, 109, 45, 0.12), rgba(15, 106, 104, 0.12));
  border-radius: 8px;
  border-left: 3px solid var(--brand);
  animation: slideInFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.slogan-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #c56d2d 0%, #a45a24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slogan-icon {
  font-size: 1.1rem;
  animation: float 3s ease-in-out infinite;
}

.slogan-icon:last-child {
  animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.kicker {
  margin: 0 0 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Urbanist", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 60ch;
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-row span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.84rem;
  color: #3b4247;
  background: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: drift 9s ease-in-out infinite;
}

.orb-1 {
  width: 220px;
  height: 220px;
  right: 20px;
  top: 10px;
  background: radial-gradient(circle at 30% 30%, #f1bf8e, #d28548);
}

.orb-2 {
  width: 180px;
  height: 180px;
  left: 0;
  bottom: 20px;
  animation-delay: -3s;
  background: radial-gradient(circle at 65% 65%, #5ec1bf, #1e7f7d);
}

.material-panel {
  position: absolute;
  right: 70px;
  top: 100px;
  width: min(300px, 90%);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.material-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.material-panel h3 {
  margin: 0.35rem 0 0.75rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chips span {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.2rem 0.52rem;
  font-size: 0.72rem;
  color: #394044;
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 72ch;
}

.section-head p {
  color: var(--muted);
}

.cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid {
  margin-top: 1.1rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature {
  border: 1px solid rgba(81, 68, 55, 0.16);
  border-radius: 16px;
  background: linear-gradient(170deg, #fff 0%, #f4eee3 100%);
  padding: 1rem;
}

.feature-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.55rem;
  color: #8a4518;
  background: #f8e7d7;
  font-weight: 700;
  font-size: 0.78rem;
}

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

.card {
  background: linear-gradient(165deg, #fff 0%, #f7f4ed 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(75, 63, 51, 0.08);
}

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

.section-catalog {
  background: linear-gradient(180deg, rgba(199, 180, 152, 0.25) 0%, rgba(255, 255, 255, 0.45) 100%);
  border-top: 1px solid rgba(197, 178, 149, 0.45);
  border-bottom: 1px solid rgba(197, 178, 149, 0.45);
}

.section-areas {
  background: linear-gradient(130deg, rgba(17, 106, 104, 0.06), rgba(197, 109, 45, 0.08));
  border-top: 1px solid rgba(17, 106, 104, 0.14);
  border-bottom: 1px solid rgba(197, 109, 45, 0.14);
}

.areas-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.area-card {
  border: 1px solid rgba(16, 82, 81, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(40, 49, 58, 0.11);
}

.area-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.area-copy {
  padding: 0.85rem 0.9rem 0.95rem;
}

.area-copy h3 {
  margin: 0;
  font-size: 1.06rem;
}

.area-copy p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.catalog-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.color-card {
  border: 1px solid rgba(38, 44, 47, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.color-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(49, 39, 26, 0.15);
}

.swatch {
  height: 95px;
}

.color-meta {
  padding: 0.72rem;
}

.color-meta h4 {
  margin: 0;
  font-size: 1rem;
}

.color-meta p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 220px;
  border: 1px solid rgba(38, 44, 47, 0.15);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #f3eee4;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(44, 35, 25, 0.18);
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(5n + 4) {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #d5bf9f, #9f8b73);
  display: grid;
  place-items: center;
  color: #fff9f2;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(12, 17, 21, 0.86), rgba(12, 17, 21, 0));
  color: #f7fafc;
  padding: 1rem 0.9rem 0.8rem;
  text-align: left;
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 1rem;
}

.gallery-overlay p {
  margin: 0.25rem 0 0;
  color: #dae2ea;
  font-size: 0.84rem;
}

.dialog-hero-image {
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 28, 0.2);
  background-position: center;
  background-size: cover;
}

.timeline {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.faq-item p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
}

.step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f6e4d6;
  color: #8b4619;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--muted);
}

.social-strip {
  background: linear-gradient(110deg, #153836, #0f6a68);
  color: #eef7f6;
}

.social-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-strip .kicker,
.social-strip p,
.social-strip h2 {
  color: #dbeceb;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a {
  text-decoration: none;
  color: #0b302f;
  background: #f4f9f8;
  border-radius: 999px;
  padding: 0.56rem 0.8rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.contact-card h3 {
  color: #f4f9f8;
  margin: 0 0 0.4rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-card .role {
  color: #a8d4d2;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.phone-link {
  display: inline-block;
  color: #ffd95a !important;
  background: rgba(255, 217, 90, 0.12) !important;
  border-radius: 8px;
  padding: 0.8rem 1.2rem !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: rgba(255, 217, 90, 0.2) !important;
  transform: scale(1.05);
}

.social-strip {
  text-align: center;
  margin-top: 2rem;
}

.site-footer {
  padding-top: 2.5rem;
  background: #171b1f;
  color: #d8dde2;
}

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

.site-footer h3,
.site-footer h4 {
  color: #f8fafc;
}

.legal {
  color: #f0d2bc;
}

.footer-links {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #dce4ec;
  border: 1px solid #38434b;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.88rem;
}

.map-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2f3941;
}

.map-wrap iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

.copyright {
  margin: 0;
  padding: 1rem;
  border-top: 1px solid #2d363d;
  text-align: center;
  color: #a7b0b8;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #1dbf73, #14955a);
  color: white;
  font-weight: 700;
  padding: 0.75rem 1rem;
  box-shadow: 0 14px 28px rgba(20, 149, 90, 0.35);
  z-index: 40;
}

dialog {
  border: 0;
  border-radius: 18px;
  padding: 0;
  width: min(620px, 92vw);
}

dialog::backdrop {
  background: rgba(18, 22, 24, 0.5);
}

.dialog-body {
  padding: 1.2rem;
}

.dialog-paint {
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 28, 0.22);
}

.close-dialog {
  margin: 0.5rem 0.5rem 0 auto;
  display: block;
  border: 1px solid #d5dbe2;
  border-radius: 8px;
  background: #fff;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.14s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.34s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.03);
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
    z-index: 30;
  }

  .logo {
    justify-self: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1.08rem;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    width: min(240px, calc(100vw - 2.4rem));
    background: linear-gradient(180deg, #fffefb, #efe8dc);
    border: 1px solid rgba(141, 121, 98, 0.3);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(30, 23, 17, 0.22);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    transform: translateX(-8px) translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    z-index: 35;
  }

  .main-nav a {
    display: block;
    width: 100%;
    border-radius: 9px;
    padding: 0.65rem 0.5rem;
    font-size: 1rem;
  }

  .main-nav a:hover {
    background: rgba(197, 109, 45, 0.1);
  }

  .menu-close {
    display: inline-flex;
  }

  body.menu-open .main-nav {
    transform: translateX(0) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-overlay {
    display: none;
  }

  body.menu-open .menu-overlay {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.4rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .orb-1 {
    right: calc(50% - 160px);
    top: 8px;
  }

  .orb-2 {
    left: calc(50% - 155px);
    bottom: 16px;
  }

  .material-panel {
    right: auto;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, 92%);
  }

  .cards,
  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 4) {
    grid-column: span 6;
  }

  .social-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 680px) {
  .cards,
  .feature-grid,
  .catalog-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 4) {
    grid-column: span 1;
    min-height: 240px;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .floating-wa {
    right: 0.7rem;
    left: 0.7rem;
    text-align: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .material-panel {
    top: 86px;
    width: min(340px, 94%);
  }

  .logo-text {
    font-size: 1rem;
  }
}
