:root {
  --bg: #090909;
  --bg-elevated: rgba(20, 20, 20, 0.84);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f7f3e8;
  --muted: #b7b0a2;
  --accent: #d4a44b;
  --accent-soft: rgba(212, 164, 75, 0.2);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #050505;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/background.jpg") center center no-repeat;
  background-size: cover;
  filter: blur(5px) saturate(0.8);
  transform: scale(1.04);
  opacity: 0.32;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.55), rgba(5, 5, 5, 0.86)),
    radial-gradient(circle at top left, rgba(212, 164, 75, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(112, 78, 24, 0.14), transparent 24%);
  pointer-events: none;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  width: 100%;
  min-height: 78px;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 164, 75, 0.34);
  background: rgba(212, 164, 75, 0.12);
  color: #f4dfb5;
}

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

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #fff1cd;
  background: rgba(212, 164, 75, 0.2);
  border-color: rgba(212, 164, 75, 0.48);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 78px);
  padding: 2rem 1.5rem 2rem;
}

.hero-glow {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-left {
  top: 8%;
  left: -6rem;
  background: rgba(212, 164, 75, 0.13);
}

.hero-glow-right {
  right: -7rem;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-card,
.contact-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  padding: 3.9rem 2.6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(100%, 520px);
  max-height: 260px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.35));
}

.eyebrow,
.section-label,
.company-meta span {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 0.96rem;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.15rem, 3.35vw, 3.95rem);
  line-height: 1.05;
  white-space: nowrap;
  margin: 0 auto;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  width: 100%;
}

.hero-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 152px;
  padding: 1.35rem 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(212, 164, 75, 0.28);
  background: rgba(8, 8, 8, 0.92);
  color: #f4dfb5;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hero-button-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-button-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.58), rgba(4, 4, 4, 0.9)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.18), rgba(6, 6, 6, 0.52));
}

.hero-button-oil .hero-button-bg {
  background-image: url("images/background_oil.jpg");
}

.hero-button-rice .hero-button-bg {
  background-image: url("images/background_rice.avif");
}

.hero-button-pulses .hero-button-bg {
  background-image: url("images/background_pulses.avif");
}

.hero-button-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.hero-button-copy {
  display: block;
  color: rgba(247, 243, 232, 0.9);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 24ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-button-title {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 164, 75, 0.46);
}

.hero-button:hover .hero-button-bg::after,
.hero-button:focus-visible .hero-button-bg::after {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.46), rgba(4, 4, 4, 0.82)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.22), rgba(6, 6, 6, 0.42));
}

.hero-copy {
  max-width: 720px;
  margin: 1.7rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.company-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.company-meta span {
  padding: 0.85rem 1.1rem;
  font-size: 0.74rem;
  color: #efe6d3;
  background: var(--accent-soft);
  border: 1px solid rgba(212, 164, 75, 0.28);
  border-radius: 999px;
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 5rem;
}

.catalog-hero {
  padding: 2rem 1.5rem 1rem;
}

.catalog-hero-shell,
.catalog-grid,
.catalog-contact {
  width: min(100%, 1040px);
  margin-left: auto;
  margin-right: auto;
}

.catalog-hero-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: block;
  padding: 1.9rem 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.08), rgba(10, 10, 10, 0.2));
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.catalog-hero-shell-oil {
  background: rgba(10, 10, 10, 0.52);
}

.catalog-hero-shell-oil::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.56), rgba(6, 6, 6, 0.8)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.14), rgba(10, 10, 10, 0.36)),
    url("images/background_oil.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-hero-shell-rice {
  background: rgba(10, 10, 10, 0.52);
}

.catalog-hero-shell-rice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.54), rgba(6, 6, 6, 0.8)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.12), rgba(10, 10, 10, 0.34)),
    url("images/background_rice.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-hero-shell-pulses {
  background: rgba(10, 10, 10, 0.52);
}

.catalog-hero-shell-pulses::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.54), rgba(6, 6, 6, 0.8)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.12), rgba(10, 10, 10, 0.34)),
    url("images/background_pulses.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-hero-shell-products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.08), rgba(10, 10, 10, 0.24));
}

.catalog-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.catalog-hero-thumb {
  position: absolute;
  width: 240px;
  height: 150px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  opacity: 0.9;
  isolation: isolate;
  clip-path: inset(0 round 26px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.catalog-hero-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(8, 8, 8, 0.92);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-hero-thumb-oil {
  top: 44px;
  right: 118px;
  z-index: 2;
  transform: rotate(4deg);
}

.catalog-hero-thumb-oil::before {
  background-image:
    linear-gradient(180deg, rgba(6, 6, 6, 0.44), rgba(6, 6, 6, 0.8)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.14), rgba(8, 8, 8, 0.18)),
    url("images/background_oil.jpg");
}

.catalog-hero-thumb-rice {
  top: 10px;
  right: 236px;
  z-index: 3;
  transform: rotate(-7deg);
}

.catalog-hero-thumb-rice::before {
  background-image:
    linear-gradient(180deg, rgba(6, 6, 6, 0.44), rgba(6, 6, 6, 0.8)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.14), rgba(8, 8, 8, 0.18)),
    url("images/background_rice.avif");
}

.catalog-hero-thumb-pulses {
  bottom: 18px;
  right: 32px;
  z-index: 1;
  transform: rotate(8deg);
}

.catalog-hero-thumb-pulses::before {
  background-image:
    linear-gradient(180deg, rgba(6, 6, 6, 0.44), rgba(6, 6, 6, 0.8)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.14), rgba(8, 8, 8, 0.18)),
    url("images/background_pulses.avif");
}

.product-selector {
  width: min(100%, 1040px);
  margin: 1.5rem auto 0;
}

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

.hero-button-large {
  min-height: 260px;
  padding: 1.8rem 1.5rem;
  border-radius: 28px;
}

.hero-button-large .hero-button-title {
  font-size: 2.4rem;
}

.hero-button-large .hero-button-copy {
  max-width: 26ch;
  font-size: 1rem;
}

.catalog-title {
  font-size: clamp(3rem, 6vw, 5rem);
  white-space: normal;
}

.catalog-intro {
  max-width: 68ch;
  margin: 1.2rem 0 0;
  color: rgba(247, 243, 232, 0.88);
  font-size: 1.03rem;
  line-height: 1.9;
}

.catalog-meta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.catalog-meta span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(212, 164, 75, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(212, 164, 75, 0.22), rgba(212, 164, 75, 0.1)),
    rgba(10, 10, 10, 0.38);
  color: #f6e4bc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-main {
  width: min(100%, 1120px);
  margin: 0 auto 5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(11, 11, 11, 0.72);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-showcase-reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
}

.product-showcase-reverse .product-showcase-media {
  order: 2;
}

.product-showcase-reverse .product-showcase-copy {
  order: 1;
}

.product-showcase-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(212, 164, 75, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.025);
}

.product-showcase-media img {
  width: min(100%, 260px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
}

.product-showcase-copy h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-top: 0.15rem;
}

.product-brand {
  margin: 0.3rem 0 0;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-availability {
  margin: 0.85rem 0 0;
  color: #f0d39a;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-description {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 56ch;
}

.catalog-contact {
  margin-top: 1.5rem;
}

.catalog-main .catalog-contact {
  margin-top: auto;
  padding-top: 1.5rem;
}

.contact-section {
  margin-top: 0;
  width: min(100%, 1040px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(11, 11, 11, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-heading {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.contact-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-subtext {
  color: var(--muted) !important;
  font-size: 0.95rem;
}

.contact-card a {
  color: #f0d39a;
}

.contact-page-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 3rem;
}

.contact-page-card {
  width: min(100%, 1040px);
  padding: 2.4rem 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(212, 164, 75, 0.08), rgba(10, 10, 10, 0.24));
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-page-logo {
  width: min(100%, 360px);
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.contact-page-title {
  white-space: normal;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-page-details,
.contact-page-cta {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(11, 11, 11, 0.68);
  border: 1px solid var(--border);
}

.contact-page-details {
  display: grid;
  gap: 1rem;
}

.contact-page-item p {
  margin: 0;
  line-height: 1.8;
}

.contact-page-label {
  margin-bottom: 0.25rem !important;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page-cta {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 1rem;
}

.contact-page-qr {
  width: min(100%, 280px);
  padding: 0.75rem;
  border-radius: 20px;
  background: #fff;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 164, 75, 0.34);
  background:
    linear-gradient(180deg, rgba(212, 164, 75, 0.22), rgba(212, 164, 75, 0.1)),
    rgba(10, 10, 10, 0.38);
  color: #f6e4bc;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-actions,
  .contact-card,
  .product-selector-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-shell,
  .product-showcase,
  .product-showcase-reverse {
    grid-template-columns: 1fr;
  }

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

  .catalog-hero-thumb {
    width: 190px;
    height: 122px;
  }

  .catalog-hero-thumb-oil {
    top: 58px;
    right: 104px;
  }

  .catalog-hero-thumb-rice {
    top: 16px;
    right: 188px;
  }

  .catalog-hero-thumb-pulses {
    bottom: 18px;
    right: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-card {
    padding: 2.4rem 1.2rem;
  }

  h1 {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    width: 100%;
    min-height: auto;
    padding: 0.9rem 1rem;
    flex-direction: column;
    justify-content: center;
  }

  .nav-links {
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-brand {
    text-align: center;
  }

  .hero-logo {
    max-height: 180px;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .catalog-hero,
  .catalog-main {
    width: min(100%, calc(100% - 1.2rem));
  }

  .catalog-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .catalog-hero-shell,
  .product-showcase {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .contact-page-card {
    padding: 1.4rem 1rem;
    border-radius: 24px;
  }

  .contact-page-details,
  .contact-page-cta {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .catalog-hero-art {
    opacity: 0.55;
  }

  .catalog-hero-thumb {
    width: 132px;
    height: 92px;
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }

  .catalog-hero-thumb-oil {
    top: 66px;
    right: 68px;
  }

  .catalog-hero-thumb-rice {
    top: 18px;
    right: 108px;
  }

  .catalog-hero-thumb-pulses {
    bottom: 14px;
    right: 10px;
  }

  .product-showcase-media {
    min-height: 240px;
  }

  main {
    width: min(100%, calc(100% - 1.2rem));
    margin-bottom: 3rem;
  }

  .contact-card {
    border-radius: 22px;
  }
}
