@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap");

:root {
  --walnut: #3d2b1f;
  --walnut-deep: #211711;
  --oak-gold: #c5a059;
  --oak-light: #e8c884;
  --slate: #2f3542;
  --ivory: #f8f4ef;
  --cream: #ede8e0;
  --mist: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.14);
  --glass: rgba(248, 244, 239, 0.58);
  --glass-border: rgba(151, 112, 46, 0.28);
  --shadow-soft: 0 8px 32px rgba(61, 43, 31, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  --shadow-deep: 0 24px 70px rgba(41, 27, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-label: "Plus Jakarta Sans", Arial, sans-serif;
  --ease-organic: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--walnut);
  background-color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.62 .035' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E"),
    radial-gradient(circle at 80% 10%, rgba(197, 160, 89, 0.14), transparent 35%);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--oak-gold);
  outline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ivory);
  background: var(--oak-gold);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #896b34;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--oak-gold);
}

.section-heading {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-heading em {
  color: #95743b;
  font-style: normal;
  font-weight: 500;
}

.section-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(61, 43, 31, 0.7);
}

.glass {
  border: 0.5px solid var(--glass-border);
  border-radius: 20px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-organic), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ivory);
  border-color: rgba(232, 200, 132, 0.58);
  background:
    linear-gradient(135deg, rgba(232, 200, 132, 0.24), transparent 38%),
    linear-gradient(135deg, var(--walnut-deep), var(--walnut) 56%, #6e4f2b);
  box-shadow:
    0 14px 34px rgba(33, 23, 17, 0.24),
    0 0 0 4px rgba(197, 160, 89, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  border-color: rgba(232, 200, 132, 0.82);
  background:
    linear-gradient(135deg, rgba(232, 200, 132, 0.32), transparent 40%),
    linear-gradient(135deg, #130d09, var(--walnut-deep) 54%, #7d5a30);
  box-shadow:
    0 18px 42px rgba(33, 23, 17, 0.32),
    0 0 0 5px rgba(197, 160, 89, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-ghost {
  border-color: rgba(61, 43, 31, 0.3);
  color: var(--walnut);
  background: rgba(248, 244, 239, 0.42);
}

.btn-ghost:hover {
  border-color: rgba(61, 43, 31, 0.52);
  background: rgba(255, 255, 255, 0.68);
}

.dark-section .btn-primary,
.cta-banner .btn-primary {
  color: var(--walnut-deep);
  background: var(--ivory);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.dark-section .btn-primary:hover,
.cta-banner .btn-primary:hover {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
  background: #1f8f58;
  box-shadow: 0 16px 34px rgba(20, 82, 53, 0.26);
  transition: transform 220ms var(--ease-organic), box-shadow 220ms ease, background 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #187a4a;
  box-shadow: 0 20px 42px rgba(20, 82, 53, 0.32);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #80632e;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 250ms var(--ease-organic);
}

.text-link:hover span {
  transform: translateX(5px);
}

.wood-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(32, 22, 15, 0.15), rgba(197, 160, 89, 0.28)),
    repeating-linear-gradient(96deg, #4c3425 0 17px, #6e4b31 18px 38px, #bd9454 39px 40px);
}

.wood-image::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.6;
  background:
    radial-gradient(ellipse at 15% 30%, transparent 0 8%, rgba(255, 255, 255, 0.12) 8.4% 8.8%, transparent 9.2%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 45%, rgba(20, 13, 8, 0.24));
  background-size: 180px 340px, 100% 100%;
  mix-blend-mode: soft-light;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(197, 160, 89, 0.36);
  border-radius: 16px;
  color: #8b6b34;
  background: rgba(255, 255, 255, 0.32);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.site-footer {
  color: rgba(248, 244, 239, 0.72);
  background: var(--walnut-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.1fr;
  gap: 70px;
  padding: 80px 0 62px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-title {
  margin: 0 0 22px;
  color: var(--oak-light);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.footer-links a {
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--oak-light);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(232, 200, 132, 0.25);
  border-radius: 50%;
  color: var(--oak-light);
  font-family: var(--font-label);
  font-size: 0.78rem;
  transition: background 200ms ease, color 200ms ease;
}

.social-links a:hover {
  color: var(--walnut-deep);
  background: var(--oak-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(248, 244, 239, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-bottom strong {
  color: var(--oak-light);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

.footer-credit {
  color: rgba(248, 244, 239, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: color 200ms ease;
}

.footer-credit:hover {
  color: var(--oak-light);
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 700px);
  }

  .section {
    padding: 88px 0;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px 30px;
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(100% - 24px, 520px);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .section-copy {
    max-width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 64px 0 44px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    justify-content: center;
    text-align: center;
  }
}
