:root {
  --bg: #fffaf2;
  --bg-strong: #f8ead8;
  --surface: #ffffff;
  --surface-warm: #fff4e6;
  --ink: #2b1710;
  --muted: #73584a;
  --line: #efd4ba;
  --brand: #c85618;
  --brand-strong: #9d3f11;
  --amber: #f39a28;
  --green: #2f7d3b;
  --brown: #6c3b1e;
  --shadow: 0 20px 60px rgba(97, 52, 21, 0.14);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(243, 154, 40, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 42%, #fff 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(239, 212, 186, 0.5);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(97, 52, 21, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  width: min(var(--max), calc(100% - 2rem));
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 0.9;
}

.brand strong,
.brand em {
  display: block;
}

.brand em {
  color: var(--brand);
  font-style: normal;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 86, 24, 0.18);
  border-radius: 50%;
  background: #fff5e8;
  color: var(--brand);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  color: #4e3426;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.5rem 0;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.header-call,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.15;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-call {
  color: var(--brand);
  white-space: nowrap;
}

.header-call svg,
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.btn {
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(180deg, #de711f, var(--brand));
  color: #fff;
  box-shadow: 0 14px 30px rgba(200, 86, 24, 0.28);
}

.btn.whatsapp {
  background: linear-gradient(180deg, #38a851, var(--green));
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 125, 59, 0.24);
}

.btn.ghost {
  border-color: rgba(200, 86, 24, 0.32);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--brown);
  transition: transform 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 76px));
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 35%;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.88) 26%, rgba(255, 250, 242, 0.18) 58%, rgba(255, 250, 242, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.16), rgba(255, 250, 242, 0.52));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero-grid {
  display: grid;
  min-height: min(780px, calc(100svh - 76px));
  align-items: center;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 640px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 6.85rem);
}

h1::first-line {
  color: var(--ink);
}

h1 {
  color: var(--brand);
}

.hero-copy p {
  max-width: 45rem;
  color: #57382a;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-phone {
  display: inline-flex;
  flex-direction: column;
  margin-top: 2rem;
  color: var(--brown);
}

.hero-phone span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-phone strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.about-grid,
.map-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.image-frame,
.map-card,
.contact-panel,
.faq-panel {
  margin: 0;
  border: 1px solid rgba(239, 212, 186, 0.72);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.image-frame {
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-copy h2,
.section-head h2,
.faq-panel h2,
.contact-panel h2,
.location-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

.section-copy p,
.section-head p,
.location-copy address {
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}

.proof-grid div {
  border-left: 2px solid var(--amber);
  padding-left: 1rem;
}

.proof-grid dt {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.proof-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.products {
  background: linear-gradient(180deg, rgba(248, 234, 216, 0.42), rgba(255, 255, 255, 0.7));
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(239, 212, 186, 0.92);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(97, 52, 21, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 86, 24, 0.36);
  box-shadow: 0 24px 58px rgba(97, 52, 21, 0.14);
}

.product-image {
  min-height: 172px;
  background-image: url("assets/products-collage.png");
  background-size: 260%;
  border-bottom: 1px solid rgba(239, 212, 186, 0.7);
}

.product-body {
  padding: 1.15rem;
}

.product-body span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-body h3,
.reason-card h3,
.process-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1.04rem;
  line-height: 1.25;
}

.product-body p,
.reason-card p,
.testimonial-card blockquote,
.process-item p,
.faq-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.tag-row small {
  border: 1px solid rgba(239, 212, 186, 0.9);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: var(--surface-warm);
  color: var(--brown);
  font-size: 0.73rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.reason-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.reason-card,
.testimonial-card {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 1.55rem 0 0;
}

.reason-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--brand);
}

.reason-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.testimonials {
  background: #fff;
}

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

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.4rem;
  background: linear-gradient(180deg, #fff, #fffaf3);
}

.stars {
  display: flex;
  gap: 0.18rem;
  margin-bottom: 1rem;
  color: var(--amber);
}

.stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 0.94rem;
}

.testimonial-card figcaption span {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-item {
  position: relative;
  padding-top: 0.5rem;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.faq-contact {
  background: linear-gradient(180deg, #fff, var(--bg));
}

.split-grid {
  align-items: start;
}

.faq-panel,
.contact-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.faq-item {
  border: 1px solid rgba(239, 212, 186, 0.9);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--ink);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(239, 212, 186, 0.98);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(200, 86, 24, 0.12);
}

.contact-form [aria-invalid="true"] {
  border-color: #b42318;
}

.contact-form small,
.form-status {
  min-height: 1.1rem;
  margin: 0;
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status {
  grid-column: 1 / -1;
  color: var(--green);
}

.map-grid {
  align-items: stretch;
}

.location-copy {
  align-self: center;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  padding: 0.65rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: grid;
  gap: 0.65rem;
}

.floating-actions a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(97, 52, 21, 0.24);
}

.floating-actions a.wa {
  background: var(--green);
}

.floating-actions svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #2b1710;
  color: #fff7ed;
  padding: 3.2rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  color: #fff;
}

.site-footer p,
.site-footer address,
.site-footer a,
.footer-bottom {
  color: rgba(255, 247, 237, 0.75);
}

.site-footer h3 {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 247, 237, 0.16);
  padding-top: 1rem;
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .header-call {
    display: none;
  }

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

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

@media (max-width: 780px) {
  .container,
  .nav-shell {
    width: min(100% - 1.1rem, var(--max));
  }

  .nav-shell {
    min-height: 68px;
  }

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

  .nav-links {
    position: absolute;
    inset: 68px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.98);
    padding: 0 1rem;
    transition:
      max-height 220ms ease,
      padding 220ms ease;
  }

  .nav-links.is-open {
    max-height: 380px;
    padding: 0.8rem 1rem 1.1rem;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    position: relative;
    min-height: 360px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.94));
  }

  .hero-media img {
    object-position: 68% 50%;
  }

  .hero-grid {
    margin-top: -5rem;
    padding-top: 0;
  }

  .hero-copy {
    border: 1px solid rgba(239, 212, 186, 0.86);
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255, 250, 242, 0.94);
    padding: 1.15rem;
    box-shadow: var(--shadow);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .about-grid,
  .map-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .testimonial-grid,
  .product-grid,
  .reason-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 220px;
    background-size: 210%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section-copy h2,
  .section-head h2,
  .faq-panel h2,
  .contact-panel h2,
  .location-copy h2 {
    font-size: 2rem;
  }

  .hero-phone strong {
    font-size: 1.9rem;
  }

  .floating-actions {
    right: 0.7rem;
    bottom: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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