:root {
  --forest-deep: #0d2318;
  --forest: #123524;
  --forest-soft: #1c4a34;
  --gold: #c79c3b;
  --gold-soft: #edd8a0;
  --cream: #f8f2e8;
  --sand: #eee2cf;
  --paper: #fffdf8;
  --ink: #1e271f;
  --muted: #617064;
  --border: rgba(18, 53, 36, 0.12);
  --shadow: 0 22px 54px rgba(13, 35, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1140px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(237, 216, 160, 0.35), transparent 32%),
    linear-gradient(180deg, #fcfaf5 0%, #f6efe3 100%);
}

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

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

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(248, 242, 232, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 84px;
  height: auto;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--forest);
}

.brand-copy small {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--forest);
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(18, 53, 36, 0.08);
  transform: translateY(-1px);
}

.site-nav .is-active {
  background: var(--forest);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid rgba(18, 53, 36, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(13, 35, 24, 0.12);
}

.nav-toggle-line {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.16rem 0;
  border-radius: 999px;
  background: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-home {
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(13, 35, 24, 0.92), rgba(18, 53, 36, 0.78)),
    url("../../images/banner.jpeg") center/cover no-repeat;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 216, 160, 0.22), transparent 68%);
}

.hero-grid,
.two-column,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-grid,
.two-column,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
  animation: rise 0.8s ease both;
}

.hero-panel {
  animation-delay: 0.15s;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest-deep);
  line-height: 0.98;
}

.hero-home h1,
.hero-home h2,
.hero-home h3,
.page-banner h1,
.page-banner h2,
.page-banner h3 {
  color: var(--cream);
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

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

h3 {
  font-size: 2rem;
}

p,
li,
dd,
dt,
address,
span,
small {
  line-height: 1.75;
}

.lead {
  margin: 1.15rem 0 0;
  font-size: 1.05rem;
  color: inherit;
  opacity: 0.96;
}

.hero-actions,
.contact-shortcuts,
.footer-links,
.highlight-strip,
.plain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible,
.contact-shortcuts a:hover,
.contact-shortcuts a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #b78727);
  color: #241807;
  box-shadow: 0 18px 40px rgba(199, 156, 59, 0.24);
}

.button-secondary {
  border: 1px solid rgba(248, 242, 232, 0.34);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-strip,
.plain-list {
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.highlight-strip li {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(248, 242, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
}

.logo-card,
.feature-card,
.product-card,
.accent-card,
.story-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.logo-card {
  padding: 1.3rem;
  background:
    linear-gradient(145deg, rgba(248, 242, 232, 0.98), rgba(237, 216, 160, 0.72));
}

.logo-card img {
  width: 100%;
}

.detail-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.detail-chip {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(248, 242, 232, 0.16);
}

.detail-chip span {
  display: block;
  color: rgba(248, 242, 232, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-chip strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.page-banner,
.section {
  padding: 4.5rem 0;
}

.page-banner {
  background:
    linear-gradient(135deg, rgba(13, 35, 24, 0.93), rgba(18, 53, 36, 0.86)),
    url("../../images/banner.jpeg") center/cover no-repeat;
  color: var(--cream);
}

.section-soft {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.section-intro {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.product-grid,
.branch-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.feature-card,
.accent-card,
.story-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 53, 36, 0.08);
}

.feature-card,
.product-card {
  animation: rise 0.7s ease both;
}

.feature-card:nth-child(2),
.product-card:nth-child(2) {
  animation-delay: 0.08s;
}

.feature-card:nth-child(3),
.product-card:nth-child(3) {
  animation-delay: 0.16s;
}

.product-card:nth-child(4) {
  animation-delay: 0.24s;
}

.product-card:nth-child(5) {
  animation-delay: 0.32s;
}

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(18, 53, 36, 0.08);
}

.product-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  background: #f3ede1;
}

.product-card-body {
  padding: 1.4rem;
}

.product-label {
  margin: 0 0 0.45rem;
  color: var(--forest-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-action {
  margin-top: 2rem;
}

.accent-card {
  background:
    linear-gradient(155deg, rgba(18, 53, 36, 0.98), rgba(28, 74, 52, 0.94));
  color: var(--cream);
}

.accent-card h1,
.accent-card h2,
.accent-card h3,
.accent-card .eyebrow {
  color: var(--cream);
}

.story-card {
  background: rgba(255, 253, 248, 0.96);
}

.data-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.data-row {
  display: grid;
  gap: 0.24rem;
}

.data-row dt {
  color: currentColor;
  opacity: 0.7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.data-row dd {
  margin: 0;
  font-weight: 700;
}

.contact-shortcuts a,
.footer-links a {
  font-weight: 700;
  color: var(--forest);
}

.accent-card .contact-shortcuts a,
.accent-card .footer-links a {
  color: var(--cream);
}

.contact-shortcuts a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(18, 53, 36, 0.08);
}

.plain-list {
  display: grid;
  gap: 0.7rem;
}

.plain-list li {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(248, 242, 232, 0.12);
}

.branch-card .branch-title {
  margin: 0.55rem 0;
  color: var(--forest-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

address {
  margin: 0;
  font-style: normal;
}

.emphasis-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-links span,
.footer-links span {
  color: inherit;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}

.floating-whatsapp {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 140, 74, 0.32);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(18, 140, 74, 0.38);
}

.floating-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-brand img {
  width: 70px;
}

.footer-text {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.footer-heading {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-inner,
  .hero-grid,
  .two-column,
  .contact-grid,
  .footer-grid,
  .feature-grid,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    padding-top: 0.4rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .hero,
  .page-banner,
    .section {
      padding: 3.5rem 0;
    }

    .brand {
      align-items: center;
    }

    .brand img {
      width: 68px;
    }

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

  .product-card img {
    height: 240px;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    padding: 0.88rem 1rem;
  }

  .floating-whatsapp span {
    display: none;
  }
}
