:root {
  --ink: #080807;
  --ink-soft: #10100e;
  --panel: #151511;
  --panel-light: #1b1a15;
  --gold: #e8c15a;
  --gold-soft: #efc873;
  --cream: #f7f2e6;
  --white: #ffffff;
  --muted: #b8b4a8;
  --line: rgba(232, 193, 90, 0.22);
  --line-soft: rgba(255, 255, 255, 0.09);
  --whatsapp: #25d366;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 8%, rgba(232, 193, 90, 0.08), transparent 26rem),
    var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.42rem;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--gold);
  color: #080807;
  font-weight: 800;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 8, 7, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 142px;
  height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
}

.desktop-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  color: #d8d5cb;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #77746d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.language-switcher a {
  color: var(--muted);
  text-decoration: none;
}

.language-switcher a.active {
  color: var(--gold);
}

.mobile-nav {
  position: relative;
}

.mobile-nav summary {
  display: inline-flex;
  min-width: 46px;
  min-height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::before,
.mobile-nav summary::after {
  position: absolute;
  width: 19px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.mobile-nav summary::before {
  transform: translateY(-4px);
}

.mobile-nav summary::after {
  transform: translateY(4px);
}

.mobile-nav[open] summary::before {
  transform: rotate(45deg);
}

.mobile-nav[open] summary::after {
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  padding: 24px 20px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.98);
  box-shadow: var(--shadow);
}

.mobile-panel ul {
  display: grid;
  margin: 0 0 22px;
  padding: 0;
  gap: 2px;
  list-style: none;
}

.mobile-panel li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 82px));
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
  display: grid;
  min-height: inherit;
  padding-block: 64px;
  align-items: center;
  gap: 52px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 850px;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 14px;
  color: #e3dfd5;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-subtext {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
}

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

.hero-image-frame {
  position: absolute;
  inset: 0 0 0 10%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 140px 14px 14px 14px;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 7, 0.36));
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ornament {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-ornament::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(232, 193, 90, 0.15);
  border-radius: inherit;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 23px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #0a0907;
  font-size: 0.87rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.button-outline {
  background: transparent;
  color: var(--gold-soft);
}

.button-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 0.94rem;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section + .section {
  border-top: 1px solid var(--line-soft);
}

.section-muted {
  background: rgba(255, 255, 255, 0.022);
}

.section-heading {
  display: grid;
  margin-bottom: 48px;
  align-items: end;
  gap: 24px;
}

.section-heading p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), #0e0e0c);
}

.feature-card::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 43px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 7px rgba(232, 193, 90, 0.06);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  align-items: center;
  gap: 48px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px 100px 12px 12px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.split-copy > p {
  color: #d8d5cb;
}

.plain-list,
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li {
  position: relative;
  padding: 13px 0 13px 29px;
  border-bottom: 1px solid var(--line-soft);
  color: #e4e0d6;
}

.plain-list li::before,
.check-list li::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold);
  content: "";
}

.split-copy .button {
  margin-top: 30px;
}

.audience-grid {
  display: grid;
  counter-reset: audience;
  gap: 1px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.audience-item {
  min-height: 180px;
  padding: 30px;
  background: var(--ink-soft);
  counter-increment: audience;
}

.audience-item::before {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  content: "0" counter(audience);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.audience-item p {
  margin: 0;
  color: var(--muted);
}

.notice {
  margin-top: 30px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(232, 193, 90, 0.07);
  color: #eee8d9;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 210px;
  padding: 31px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  counter-increment: steps;
}

.steps li::before {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  content: counter(steps, decimal-leading-zero);
  font-family: Georgia, "Times New Roman", serif;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

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

.page-hero {
  position: relative;
  padding-block: clamp(86px, 12vw, 150px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero::after {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero p {
  max-width: 790px;
  margin: 30px 0 0;
  color: #d6d2c8;
  font-size: 1.08rem;
}

.stats-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 1px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
  list-style: none;
}

.stats-list li {
  padding: 24px;
  background: var(--ink-soft);
}

.stats-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 500;
}

.stats-list span {
  color: var(--muted);
}

.corporate-table {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.corporate-row {
  display: grid;
  padding: 22px 25px;
  gap: 6px;
  border-bottom: 1px solid var(--line-soft);
}

.corporate-row:last-child {
  border: 0;
}

.corporate-row strong {
  color: var(--gold-soft);
}

.corporate-row span {
  color: #e0ddd4;
}

.product-grid {
  display: grid;
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e4e0d7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-body {
  padding: 25px;
}

.product-body h3 {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.product-meta {
  margin: 0 0 24px;
}

.product-meta div {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.89rem;
}

.product-meta dt {
  color: #dedbd2;
  font-weight: 800;
}

.product-meta dd {
  margin: 0;
  text-align: right;
}

.product-body .button {
  width: 100%;
}

.faq-list {
  border-top: 1px solid var(--line-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  position: relative;
  padding: 28px 58px 28px 0;
  cursor: pointer;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  color: var(--gold);
  content: "+";
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 860px;
  padding: 0 58px 27px 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 42px;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: var(--panel);
}

.contact-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
}

.map-frame {
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(1.05);
}

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

.social-link {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  padding: 8px 14px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.social-icon {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.final-cta {
  position: relative;
  padding-block: clamp(78px, 10vw, 120px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(115deg, rgba(232, 193, 90, 0.15), rgba(232, 193, 90, 0.035));
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -250px;
  left: -90px;
}

.final-cta::after {
  right: -120px;
  bottom: -290px;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 34px;
}

.final-cta .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.final-cta .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding-block: 56px 28px;
  background: #060605;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand img {
  width: 160px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-tagline {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-meta a,
.footer-meta span {
  color: #d1cec5;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  margin-top: 46px;
  padding-top: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid var(--line-soft);
  color: #77746d;
  font-size: 0.76rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  min-width: auto;
  min-height: 58px;
  padding: 8px 19px 8px 9px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #2ddd6f, #1bbd5a);
  box-shadow: 0 16px 38px rgba(15, 122, 57, 0.3), 0 5px 14px rgba(0, 0, 0, 0.14);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp::before {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  content: "✆";
  font-size: 1.2rem;
  line-height: 1;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #34e778, #20c762);
  box-shadow: 0 20px 44px rgba(15, 122, 57, 0.36), 0 7px 16px rgba(0, 0, 0, 0.16);
}

@media (min-width: 600px) {
  .cards-two,
  .audience-grid,
  .stats-list,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  }
}

@media (min-width: 900px) {
  :root {
    --container: min(1180px, calc(100% - 72px));
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.7fr);
    gap: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 6.6vw, 6.6rem);
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  }

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

  .cards-four,
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .feature-card {
    padding: 25px;
  }

  .cards-five .feature-card {
    min-height: 300px;
  }

  .split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(60px, 8vw, 110px);
  }

  .split-reverse .media-frame {
    order: 2;
  }

  .split-reverse .split-copy {
    order: 1;
  }

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

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

  .contact-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
    align-items: start;
    gap: 70px;
  }
}

@media (max-width: 1120px) and (min-width: 900px) {
  .desktop-nav ul {
    gap: 12px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.77rem;
  }

  .brand img {
    width: 120px;
  }
}

@media (max-width: 599px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 124px;
    height: 46px;
  }

  .mobile-panel {
    top: 72px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 58px 72px;
  }

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

  .hero-image-frame {
    left: 0;
  }

  .section {
    padding-block: 74px;
  }

  .page-hero {
    padding-block: 74px 84px;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .feature-card {
    min-height: 190px;
  }

  .product-body {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Light premium corporate theme */
:root {
  --ink: #f7f4ec;
  --ink-soft: #fffdfa;
  --panel: #ffffff;
  --panel-light: #f1ece1;
  --cream: #171815;
  --white: #292b28;
  --muted: #6d6d65;
  --line: rgba(172, 126, 34, 0.28);
  --line-soft: rgba(27, 28, 24, 0.1);
  --shadow: 0 24px 70px rgba(57, 45, 22, 0.13);
}

body {
  background:
    radial-gradient(circle at 77% 7%, rgba(232, 193, 90, 0.22), transparent 29rem),
    linear-gradient(180deg, #fbf9f3 0%, #f7f4ec 46%, #f5f1e8 100%);
  color: var(--white);
}

body::before {
  background-image:
    linear-gradient(rgba(37, 36, 30, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 36, 30, 0.028) 1px, transparent 1px);
}

.site-header {
  border-bottom-color: rgba(232, 193, 90, 0.22);
  background: rgba(22, 23, 20, 0.96);
  box-shadow: 0 8px 30px rgba(15, 15, 13, 0.1);
}

.site-header::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0.6;
}

.brand img {
  width: 154px;
}

.desktop-nav a {
  color: #e9e5da;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.language-switcher {
  color: #77776f;
}

.language-switcher a {
  color: #c9c5b9;
}

.mobile-panel {
  border-bottom-color: rgba(232, 193, 90, 0.3);
  background: rgba(22, 23, 20, 0.99);
}

.mobile-panel li a {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: #f8f4e9;
}

.eyebrow {
  color: #956b17;
}

.eyebrow::before {
  background: #b38325;
}

.hero {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.7), rgba(242, 234, 216, 0.72)),
    radial-gradient(circle at 85% 45%, rgba(232, 193, 90, 0.2), transparent 28rem);
}

.hero-lead {
  color: #353733;
}

.hero-subtext {
  color: #686961;
}

.hero-image-frame {
  border-color: rgba(164, 119, 28, 0.32);
  background: #ebe4d5;
  box-shadow: 0 34px 86px rgba(64, 49, 20, 0.2);
}

.hero-image-frame::after {
  background: linear-gradient(180deg, transparent 54%, rgba(26, 25, 20, 0.12));
}

.hero-ornament,
.hero-ornament::before {
  border-color: rgba(161, 115, 24, 0.24);
}

.button {
  border-color: #d9ab3f;
  background: linear-gradient(135deg, #efcd71, #e1b443);
  box-shadow: 0 12px 28px rgba(165, 120, 31, 0.18);
}

.button:hover {
  background: linear-gradient(135deg, #f3d57f, #e8bd50);
  box-shadow: 0 16px 32px rgba(165, 120, 31, 0.25);
}

.button-outline {
  border-color: rgba(165, 120, 31, 0.52);
  background: #fffdf8;
  box-shadow: none;
  color: #825d15;
}

.button-outline:hover {
  border-color: #d6a536;
  background: #f1cc6a;
  color: #171815;
}

.section + .section {
  border-top-color: rgba(32, 32, 28, 0.08);
}

.section-muted {
  background: rgba(232, 225, 209, 0.58);
}

.feature-card {
  border-color: rgba(36, 37, 33, 0.09);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 42px rgba(50, 43, 27, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 132, 35, 0.26);
  box-shadow: 0 22px 52px rgba(50, 43, 27, 0.12);
}

.feature-card::before {
  box-shadow: 0 0 0 7px rgba(188, 140, 42, 0.09);
}

.feature-card p {
  color: #696a63;
}

.media-frame {
  border-color: rgba(167, 120, 27, 0.28);
  background: #e9e1d1;
  box-shadow: 0 28px 70px rgba(56, 44, 21, 0.16);
}

.split-copy > p {
  color: #4e504b;
}

.plain-list li,
.check-list li {
  border-bottom-color: rgba(31, 32, 28, 0.1);
  color: #363833;
}

.audience-grid {
  gap: 16px;
  border: 0;
  background: transparent;
}

.audience-item {
  border: 1px solid rgba(34, 35, 31, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 13px 38px rgba(55, 45, 26, 0.07);
}

.audience-item p {
  color: #6b6c64;
}

.notice {
  border-left-color: #c8942e;
  border-radius: 0 12px 12px 0;
  background: #fff1c9;
  color: #51431f;
}

.steps li {
  border-color: rgba(34, 35, 31, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 42px rgba(50, 43, 27, 0.07);
}

.steps li::before {
  border-color: rgba(170, 123, 29, 0.35);
  color: #986d18;
}

.steps p {
  color: #696a63;
}

.page-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.75), rgba(237, 229, 211, 0.8)),
    radial-gradient(circle at 82% 26%, rgba(232, 193, 90, 0.2), transparent 25rem);
}

.page-hero::after {
  border-color: rgba(171, 124, 30, 0.2);
}

.page-hero p {
  color: #50524d;
}

.stats-list {
  gap: 12px;
  border: 0;
  background: transparent;
}

.stats-list li {
  border: 1px solid rgba(33, 34, 30, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(53, 44, 27, 0.06);
  color: #40413c;
}

.stats-list strong {
  color: #8d6519;
}

.stats-list span {
  color: #6c6d65;
}

.corporate-table {
  border-color: rgba(34, 35, 31, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(51, 42, 25, 0.08);
}

.corporate-row {
  border-bottom-color: rgba(32, 33, 29, 0.09);
}

.corporate-row strong {
  color: #8b6317;
}

.corporate-row span {
  color: #454743;
}

.product-card {
  border-color: rgba(34, 35, 31, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(50, 41, 23, 0.09);
}

.product-card:hover {
  border-color: rgba(168, 120, 27, 0.35);
  box-shadow: 0 25px 60px rgba(50, 41, 23, 0.14);
}

.product-image {
  background: #eae4d9;
}

.product-meta div {
  border-bottom-color: rgba(33, 34, 30, 0.09);
  color: #6f7068;
}

.product-meta dt {
  color: #373934;
}

.faq-list {
  border-top-color: rgba(31, 32, 28, 0.11);
}

.faq-item {
  border-bottom-color: rgba(31, 32, 28, 0.11);
}

.faq-item p {
  color: #66675f;
}

.contact-card {
  border-color: rgba(34, 35, 31, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(50, 41, 23, 0.07);
}

.contact-card span {
  color: #966b18;
}

.map-frame {
  border-color: rgba(165, 118, 26, 0.25);
  background: #e7e1d5;
  box-shadow: 0 26px 65px rgba(55, 43, 20, 0.15);
}

.map-frame iframe {
  filter: grayscale(0.4) contrast(0.96) brightness(1.03);
}

.social-link {
  border-color: rgba(165, 118, 26, 0.32);
  background: rgba(255, 255, 255, 0.62);
  color: #30322e;
}

.social-link:hover {
  border-color: #c08d29;
  background: #ffffff;
}

.social-icon {
  color: #956b18;
}

.final-cta {
  border-block-color: rgba(137, 95, 16, 0.25);
  background:
    linear-gradient(120deg, rgba(255, 246, 211, 0.94), rgba(232, 193, 90, 0.9)),
    #e8c15a;
}

.final-cta::before,
.final-cta::after {
  border-color: rgba(83, 59, 13, 0.17);
}

.final-cta .eyebrow {
  color: #50380c;
}

.final-cta .eyebrow::before {
  background: #50380c;
}

.final-cta .button {
  border-color: #1d1f1b;
  background: #1d1f1b;
  box-shadow: 0 14px 30px rgba(36, 29, 14, 0.2);
  color: #ffffff;
}

.final-cta .button:hover {
  border-color: #33352f;
  background: #33352f;
}

.site-footer {
  border-top: 1px solid rgba(232, 193, 90, 0.2);
  background: #171814;
}

.site-footer .footer-tagline {
  color: #bcb9ae;
}

.site-footer .footer-meta a,
.site-footer .footer-meta span {
  color: #dedacf;
}

.site-footer .social-link {
  border-color: rgba(232, 193, 90, 0.26);
  background: rgba(255, 255, 255, 0.035);
  color: #f0ece2;
}

.site-footer .social-link:hover {
  background: rgba(232, 193, 90, 0.1);
}

.site-footer .social-icon {
  color: var(--gold);
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #96938a;
}

@media (min-width: 900px) {
  .cards-five .feature-card {
    min-height: 272px;
  }

  .audience-item {
    min-height: 170px;
  }
}

@media (max-width: 599px) {
  .hero {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(240, 232, 214, 0.84)),
      #f7f3ea;
  }

  .feature-card,
  .steps li,
  .product-card,
  .contact-card {
    box-shadow: 0 12px 34px rgba(50, 41, 23, 0.08);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding-right: 16px;
    font-size: 0.78rem;
  }

  .floating-whatsapp::before {
    width: 36px;
    height: 36px;
  }
}

/* Vibrant premium brand refresh */
:root {
  --ink: #fff7e8;
  --ink-soft: #fffdf8;
  --panel: #ffffff;
  --panel-light: #ffedc8;
  --cream: #26170e;
  --white: #382516;
  --muted: #755c46;
  --gold: #f6b91f;
  --gold-soft: #ffd66a;
  --line: rgba(226, 135, 24, 0.28);
  --line-soft: rgba(83, 48, 18, 0.11);
  --shadow: 0 25px 70px rgba(121, 69, 18, 0.16);
}

body {
  background:
    radial-gradient(circle at 80% 4%, rgba(255, 184, 42, 0.34), transparent 30rem),
    radial-gradient(circle at 6% 38%, rgba(244, 119, 52, 0.12), transparent 25rem),
    linear-gradient(180deg, #fffdf7 0%, #fff7e7 55%, #fffaf1 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(156, 87, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 87, 21, 0.035) 1px, transparent 1px);
}

.site-header {
  border-bottom-color: rgba(255, 193, 56, 0.34);
  background: rgba(40, 23, 14, 0.96);
  box-shadow: 0 10px 34px rgba(60, 29, 9, 0.16);
}

.site-header::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 188, 0.34) 35%, rgba(255, 244, 219, 0.62) 50%, rgba(255, 232, 188, 0.34) 65%, transparent);
  opacity: 0.58;
}

.eyebrow {
  color: #b76812;
}

.eyebrow::before {
  background: linear-gradient(90deg, #f09521, #ffc83d);
}

.hero {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.84), rgba(255, 226, 164, 0.74)),
    radial-gradient(circle at 84% 42%, rgba(255, 171, 34, 0.34), transparent 28rem);
}

.hero-lead,
.split-copy > p,
.page-hero p {
  color: #543b29;
}

.hero-subtext,
.feature-card p,
.steps p,
.audience-item p,
.faq-item p,
.product-meta div {
  color: #775f4b;
}

.hero-image-frame,
.media-frame,
.map-frame {
  border-color: rgba(224, 126, 20, 0.38);
  box-shadow: 0 30px 78px rgba(128, 68, 12, 0.2);
}

.button {
  border-color: #e6941e;
  background: linear-gradient(135deg, #ffd75f 0%, #ffb72c 48%, #ef8c27 100%);
  box-shadow: 0 14px 30px rgba(210, 116, 15, 0.25);
  color: #321d0d;
}

.button:hover {
  background: linear-gradient(135deg, #ffe17a 0%, #ffc23e 48%, #f49b35 100%);
  box-shadow: 0 18px 38px rgba(210, 116, 15, 0.34);
}

.button-outline {
  border-color: rgba(220, 120, 17, 0.55);
  background: rgba(255, 255, 255, 0.88);
  color: #9c5410;
}

.section-muted {
  background:
    linear-gradient(120deg, rgba(255, 230, 179, 0.72), rgba(255, 246, 224, 0.86)),
    #ffedca;
}

.feature-card,
.audience-item,
.steps li,
.product-card,
.contact-card {
  border-color: rgba(219, 121, 18, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 17px 44px rgba(117, 66, 18, 0.1);
}

.feature-card:hover,
.product-card:hover {
  border-color: rgba(235, 139, 30, 0.48);
  box-shadow: 0 24px 58px rgba(117, 66, 18, 0.17);
}

.notice {
  border-left-color: #ed8f20;
  background: #ffe8ae;
  color: #573711;
}

.page-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.86), rgba(255, 221, 151, 0.78)),
    radial-gradient(circle at 82% 26%, rgba(244, 132, 36, 0.24), transparent 25rem);
}

.contact-card span,
.stats-list strong,
.corporate-row strong {
  color: #b96812;
}

.brand-icon {
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-whatsapp {
  -webkit-mask-image: url("../images/icon-whatsapp.svg");
  mask-image: url("../images/icon-whatsapp.svg");
}

.icon-facebook {
  -webkit-mask-image: url("../images/icon-facebook.svg");
  mask-image: url("../images/icon-facebook.svg");
}

.icon-instagram {
  -webkit-mask-image: url("../images/icon-instagram.svg");
  mask-image: url("../images/icon-instagram.svg");
}

.social-link {
  min-height: 52px;
  padding: 7px 15px 7px 7px;
  border-color: rgba(123, 75, 33, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: #3d2a1d;
  box-shadow: 0 8px 22px rgba(92, 52, 15, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 131, 26, 0.4);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(92, 52, 15, 0.14);
}

.social-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(35, 20, 10, 0.18);
}

.social-facebook .social-icon {
  background: #1877f2 !important;
  color: #ffffff !important;
}

.social-facebook .brand-icon {
  width: 17px;
  height: 22px;
}

.social-instagram .social-icon {
  background: radial-gradient(circle at 32% 106%, #ffd600 0 18%, #ff7a00 38%, #f00075 64%, #7a2ce8 88%, #4f5bd5 100%) !important;
  color: #ffffff !important;
}

.social-instagram .brand-icon {
  width: 21px;
  height: 23px;
}

.social-facebook {
  border-color: rgba(24, 119, 242, 0.34);
}

.social-facebook:hover {
  border-color: #1877f2;
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.2);
}

.social-instagram {
  border-color: rgba(225, 48, 108, 0.34);
}

.social-instagram:hover {
  border-color: #e1306c;
  box-shadow: 0 12px 28px rgba(225, 48, 108, 0.2);
}

.site-footer {
  border-top-color: rgba(255, 190, 48, 0.28);
  background:
    radial-gradient(circle at 12% 5%, rgba(240, 148, 32, 0.13), transparent 23rem),
    #24140d;
}

.site-footer .social-link {
  border-color: rgba(255, 205, 92, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: #fff7e8;
}

.site-footer .social-link:hover {
  border-color: rgba(255, 205, 92, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer .social-facebook,
.site-footer .social-facebook:hover {
  border-color: rgba(24, 119, 242, 0.58);
}

.site-footer .social-instagram,
.site-footer .social-instagram:hover {
  border-color: rgba(225, 48, 108, 0.58);
}

.floating-whatsapp {
  min-height: 60px;
  padding: 8px 20px 8px 8px;
  gap: 11px;
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #2ee675, #20c963);
  box-shadow: 0 18px 42px rgba(14, 130, 61, 0.35), 0 6px 18px rgba(37, 93, 54, 0.18);
  font-size: 0.9rem;
}

.floating-whatsapp::before {
  display: none;
  content: none;
}

.floating-whatsapp-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: #128c7e;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 6px 14px rgba(4, 88, 51, 0.24);
}

.floating-whatsapp-icon .brand-icon {
  width: 25px;
  height: 27px;
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #38ed7f, #22cf67);
  box-shadow: 0 22px 48px rgba(14, 130, 61, 0.42), 0 8px 20px rgba(37, 93, 54, 0.2);
}

.final-cta {
  border-block-color: rgba(160, 83, 8, 0.26);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 248, 203, 0.66), transparent 20rem),
    linear-gradient(120deg, #ffdd70 0%, #ffc13c 48%, #ef9130 100%);
}

.final-cta .button {
  border-color: #3c2515;
  background: #3c2515;
  color: #ffffff;
}

.final-cta .button:hover {
  border-color: #5b351d;
  background: #5b351d;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 10%, rgba(247, 151, 42, 0.22), transparent 24rem),
    linear-gradient(135deg, #fff4dc, #fffaf1);
}

.contact-form-shell {
  display: grid;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: 120px;
}

.contact-form-intro h2 {
  max-width: 620px;
  margin-bottom: 22px;
}

.contact-form-intro p {
  max-width: 610px;
  color: #674a34;
}

.contact-form-intro a {
  color: #a8560d;
  font-weight: 800;
  text-decoration-color: rgba(168, 86, 13, 0.35);
  text-underline-offset: 4px;
}

.contact-form-benefits {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.contact-form-benefits li {
  position: relative;
  padding-left: 28px;
  color: #553a26;
  font-weight: 700;
}

[dir="rtl"] .contact-form-benefits li {
  padding-right: 28px;
  padding-left: 0;
}

.contact-form-benefits li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 13px;
  height: 7px;
  transform: rotate(-45deg);
  border-bottom: 3px solid #e68418;
  border-left: 3px solid #e68418;
  content: "";
}

[dir="rtl"] .contact-form-benefits li::before {
  right: 0;
  left: auto;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(218, 119, 19, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 72px rgba(119, 61, 11, 0.16);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: #4f3320;
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field b {
  color: #e05f24;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(111, 71, 37, 0.22);
  border-radius: 13px;
  outline: none;
  background: #fffdf9;
  color: #332013;
  font: inherit;
  font-weight: 550;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input {
  min-height: 52px;
  padding: 12px 15px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9c8978;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #eda12f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(247, 177, 51, 0.18);
}

.form-actions {
  display: flex;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.form-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-submit-arrow {
  font-size: 1.15rem;
}

.form-note {
  margin: 0;
  color: #85705f;
  font-size: 0.78rem;
}

.form-status {
  min-height: 26px;
  margin: 18px 0 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 750;
}

.form-status:empty {
  display: none;
}

.form-status.is-sending {
  color: #9a651b;
}

.form-status.is-success {
  padding: 12px 14px;
  border-radius: 10px;
  background: #def7e6;
  color: #166534;
}

.form-status.is-error {
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff0ec;
  color: #a43c25;
}

@media (min-width: 760px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .contact-form-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  }
}

@media (max-width: 959px) {
  .contact-form-intro {
    position: static;
  }
}

@media (max-width: 599px) {
  .social-links {
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    min-height: 56px;
    padding: 7px 16px 7px 7px;
    font-size: 0.82rem;
  }

  .floating-whatsapp-icon {
    width: 40px;
    height: 40px;
  }

  .contact-form {
    border-radius: 20px;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-submit {
    width: 100%;
  }
}

/* Homepage product collection */
.home-product-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(222, 126, 22, 0.3);
  border-radius: 28px 86px 28px 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 171, 69, 0.32), transparent 34%),
    linear-gradient(145deg, #fffaf1 0%, #f4e7d2 100%);
  box-shadow: 0 30px 78px rgba(117, 66, 18, 0.18);
}

.home-product-showcase::before {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(235, 139, 30, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-product-showcase-topline,
.home-product-showcase-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-product-showcase-topline {
  margin-bottom: 16px;
}

.home-product-showcase-topline > div {
  display: grid;
  gap: 3px;
}

.home-product-showcase-topline > div > span {
  color: #a85d16;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-product-showcase-topline strong {
  color: #27241f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.home-product-count {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(213, 117, 19, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #8d5018;
  font-size: 0.72rem;
  font-weight: 850;
}

.home-product-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.4vw, 14px);
  color: inherit;
}

.home-product-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(111, 75, 32, 0.13);
  border-radius: 18px;
  background: #ebe1d1;
  box-shadow: 0 14px 32px rgba(74, 50, 24, 0.13);
}

.home-product-tile:first-child {
  border-radius: 18px 54px 18px 18px;
}

.home-product-tile:last-child {
  border-radius: 18px 18px 54px 18px;
}

.home-product-tile::after {
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(180deg, transparent, rgba(30, 25, 19, 0.76));
  content: "";
  pointer-events: none;
}

.home-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-product-gallery:hover .home-product-tile img {
  transform: scale(1.025);
}

.home-product-label {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 11px;
  left: 12px;
  display: grid;
  gap: 1px;
  color: #fff;
}

.home-product-label strong {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.home-product-label small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
}

.home-product-showcase-link {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(214, 119, 20, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: #6f421b;
  font-size: 0.78rem;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-product-showcase-link:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 119, 20, 0.42);
  background: #fff;
}

@media (max-width: 599px) {
  .home-product-showcase {
    padding: 13px;
    border-radius: 22px 54px 22px 22px;
  }

  .home-product-showcase-topline {
    margin-bottom: 12px;
  }

  .home-product-count {
    padding: 6px 9px;
  }

  .home-product-label {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .home-product-label small {
    display: none;
  }

  .home-product-showcase-link {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-product-tile img,
  .home-product-showcase-link {
    transition: none;
  }
}
