:root {
  --bg: #f5eee4;
  --bg-soft: #efe3d2;
  --panel: rgba(255, 251, 245, 0.88);
  --panel-strong: #fffdf9;
  --ink: #1f1712;
  --muted: #6a6058;
  --wood: #a7643d;
  --wood-dark: #7a4727;
  --forest: #304438;
  --line: rgba(31, 23, 18, 0.1);
  --white: #fffdf9;
  --shadow: 0 26px 70px rgba(31, 23, 18, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167, 100, 61, 0.16), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(48, 68, 56, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f1e8 0%, #efe5d7 100%);
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.site-shell {
  min-height: 100vh;
}

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

.section {
  padding: 84px 0;
}

.section-compact {
  padding: 28px 0 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wood-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition: 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 23, 18, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--wood), var(--wood-dark));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  padding-top: 44px;
}

.hero-grid,
.detail-layout,
.cta-panel,
.footer-grid,
.content-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
}

.hero-copy h1,
.page-hero-copy h1,
.detail-copy h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.hero-text {
  margin-top: 18px;
  max-width: 58ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-note {
  margin-top: 20px;
  max-width: 54ch;
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(145deg, var(--wood), var(--wood-dark));
  color: var(--white);
  box-shadow: 0 20px 38px rgba(122, 71, 39, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-showcase,
.detail-media,
.content-card,
.cta-panel {
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid rgba(31, 23, 18, 0.08);
  box-shadow: var(--shadow);
}

.showcase-card {
  overflow: hidden;
}

.showcase-media {
  padding: 18px;
}

.showcase-media img,
.detail-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.showcase-content {
  padding: 0 24px 24px;
}

.showcase-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--wood-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-content h2,
.section-head h2,
.content-card h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.showcase-content p {
  margin-top: 12px;
}

.text-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
}

.page-hero {
  padding-top: 38px;
  padding-bottom: 24px;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy p:last-child {
  margin-top: 18px;
}

.rich-text {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.rich-text p {
  margin: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p:last-child {
  max-width: 46ch;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.chip small {
  color: var(--muted);
}

.chip.is-active {
  background: var(--forest);
  color: var(--white);
}

.chip.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(31, 23, 18, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-link:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 71, 39, 0.24);
}

.product-media {
  overflow: hidden;
  border-radius: 22px;
  background: #f0e4d4;
}

.product-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 700;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(48, 68, 56, 0.1);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body h3 {
  font-size: 2rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.product-meta span,
.product-meta strong {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 23, 18, 0.06);
  font-size: 0.84rem;
}

.product-meta strong {
  color: var(--wood-dark);
}

.content-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

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

.content-card {
  padding: 30px;
  min-width: 0;
}

.about-hero-grid,
.about-side-stack,
.about-marks-grid,
.about-process-grid {
  display: grid;
  gap: 24px;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  align-items: start;
}

.about-side-stack {
  align-content: start;
}

.about-story-card,
.about-note-card,
.about-process-card,
.about-mark-card {
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid rgba(31, 23, 18, 0.08);
  box-shadow: var(--shadow);
}

.about-story-card {
  padding: 34px;
}

.about-story-card h2,
.about-note-card h2 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
}

.about-signature {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 23, 18, 0.1);
}

.about-signature strong {
  font-size: 1.05rem;
}

.about-note-card {
  padding: 28px;
}

.about-note-card p:last-child {
  margin-top: 12px;
}

.about-services-card .simple-list {
  margin-top: 22px;
  padding-left: 0;
  list-style: none;
}

.about-services-card .simple-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  background: rgba(255, 249, 242, 0.08);
}

.about-services-card .simple-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 249, 242, 0.84);
  box-shadow: 0 0 0 6px rgba(255, 249, 242, 0.08);
}

.about-marks-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-mark-card {
  padding: 24px;
}

.about-mark-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--wood-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-process-card {
  padding: 24px;
}

.about-step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--wood), var(--wood-dark));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-process-card h3 {
  font-size: 1.8rem;
}

.about-process-card p {
  margin-top: 12px;
}

.about-section-head p:last-child {
  max-width: 54ch;
}

.about-cta-panel p {
  max-width: 60ch;
}

.accent-card {
  background: linear-gradient(145deg, rgba(48, 68, 56, 0.96), rgba(31, 42, 35, 1));
}

.accent-card,
.accent-card p,
.accent-card li,
.accent-card h2,
.accent-card .eyebrow {
  color: rgba(255, 249, 242, 0.92);
}

.simple-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.detail-hero {
  padding-top: 40px;
}

.detail-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.detail-copy .hero-text {
  max-width: 52ch;
}

.detail-media {
  padding: 18px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.detail-info-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(31, 23, 18, 0.08);
  box-shadow: var(--shadow);
}

.detail-info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--wood-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-empty {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid rgba(31, 23, 18, 0.08);
  box-shadow: var(--shadow);
}

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
}

.site-footer {
  padding: 28px 0 36px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(240px, 0.8fr);
  padding: 34px;
  gap: 34px;
  background: rgba(28, 21, 17, 0.96);
  color: var(--white);
  border-radius: 30px 30px 0 0;
  border-bottom: 1px solid rgba(255, 249, 242, 0.08);
}

.footer-grid h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 16ch;
  color: var(--white);
}

.footer-column {
  min-width: 0;
}

.footer-brand-column {
  padding-right: 10px;
}

.footer-brand-name {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.footer-heading {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 249, 242, 0.58);
}

.footer-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 249, 242, 0.82);
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid > * {
  min-width: 0;
}

.contact-grid .content-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.contact-grid .content-card h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-grid .content-card p,
.contact-grid .content-card a,
.contact-grid .content-card span {
  overflow-wrap: anywhere;
}

.contact-grid .text-action {
  margin-top: auto;
}

body > .whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right) + 18px) !important;
  bottom: max(18px, env(safe-area-inset-bottom) + 18px) !important;
  z-index: 9999;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 !important;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, #2ad064, #128c43);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(18, 140, 67, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

body > .whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 26px 52px rgba(18, 140, 67, 0.4);
  filter: saturate(1.04);
}

body > .whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
}

.flash-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.flash {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.flash-success {
  background: rgba(48, 68, 56, 0.12);
  color: var(--forest);
}

.flash-error {
  background: rgba(167, 100, 61, 0.14);
  color: var(--wood-dark);
}

@media (max-width: 1024px) {
  .hero-grid,
  .detail-layout,
  .content-grid,
  .contact-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .detail-info-grid,
  .about-marks-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 70px 0;
  }

  .container {
    width: min(100vw - 28px, 1160px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid rgba(31, 23, 18, 0.08);
    box-shadow: var(--shadow);
  }

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

  .hero-copy h1,
  .page-hero-copy h1,
  .detail-copy h1 {
    max-width: none;
  }

  .showcase-media img,
  .detail-media img,
  .product-media img {
    height: 260px;
  }

  .product-grid,
  .detail-info-grid,
  .about-marks-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  body > .whatsapp-float {
    right: max(14px, env(safe-area-inset-right) + 14px) !important;
    bottom: max(14px, env(safe-area-inset-bottom) + 14px) !important;
    width: 60px;
    height: 60px;
  }
}
