:root {
  --bg: #f2e8de;
  --bg-deep: #e4d2c0;
  --surface: rgba(255, 250, 244, 0.74);
  --surface-strong: rgba(255, 252, 248, 0.9);
  --surface-dark: #16120f;
  --text: #231812;
  --muted: #6f5a4d;
  --line: rgba(80, 54, 39, 0.12);
  --line-strong: rgba(80, 54, 39, 0.22);
  --accent: #8c5a46;
  --accent-deep: #593326;
  --gold: #ccab71;
  --rose: #cf9a95;
  --blush: #f0d7d1;
  --cream: #f8f0e6;
  --whatsapp: #158a49;
  --shadow-soft: 0 18px 50px rgba(66, 39, 24, 0.08);
  --shadow-strong: 0 28px 80px rgba(53, 30, 18, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.75), transparent 26%),
    radial-gradient(circle at 100% 14%, rgba(235, 198, 187, 0.55), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(210, 177, 131, 0.22), transparent 26%),
    linear-gradient(180deg, #f8efe6 0%, #f1e5d7 48%, #eadbcc 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 76%);
}

body::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(207, 154, 149, 0.24), transparent 18%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 36px;
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.64);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.05));
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(89, 51, 38, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--accent-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: #fff8f3;
  background: linear-gradient(135deg, var(--accent-deep), #84513f);
  box-shadow: 0 14px 28px rgba(89, 51, 38, 0.22);
}

.hero {
  display: grid;
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(140deg, rgba(255, 249, 242, 0.82), rgba(250, 238, 225, 0.64)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(242, 227, 213, 0.18));
  backdrop-filter: blur(12px);
}

.hero::before,
.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 24%),
    radial-gradient(circle at bottom left, rgba(207, 154, 149, 0.12), transparent 22%);
}

.page-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 62vh;
}

.inner-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
}

.hero-copy,
.hero-panel,
.section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.media-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.9vw, 4.4rem);
  line-height: 1.02;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.split-copy h2,
.media-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
}

.hero-text,
.info-card p,
.product-body p,
.compliance-card li,
.split-copy p,
.footer-copy p,
.mini-product-card p,
.hero-note small,
.media-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.fact-pill {
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid rgba(89, 51, 38, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 24px rgba(89, 51, 38, 0.07);
}

.fact-pill span,
.hero-note span,
.product-tag,
.contact-card span,
.mini-product-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.fact-pill strong,
.hero-note strong,
.contact-card strong,
.mini-product-card strong,
.product-body h3,
.info-card h3,
.compliance-card h3 {
  letter-spacing: 0.01em;
}

.fact-pill strong {
  font-size: 0.92rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff8f2;
  background: linear-gradient(135deg, #3f2419, #865643);
  box-shadow: 0 18px 36px rgba(63, 36, 25, 0.24);
}

.button-secondary {
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(89, 51, 38, 0.14);
}

.button-whatsapp {
  width: 100%;
  margin-top: 20px;
  color: #f4fff7;
  background: linear-gradient(135deg, var(--whatsapp), #0f6f3a);
  box-shadow: 0 16px 32px rgba(21, 138, 73, 0.24);
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.akya-card,
.hero-note,
.info-card,
.product-card,
.compliance-card,
.contact-card,
.mini-product-card,
.image-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.image-card {
  margin: 0;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.72);
}

.feature-image-card,
.tall-image-card {
  height: 100%;
}

.feature-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hero-note {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.78);
}

.hero-note strong {
  display: block;
  font-size: 1.08rem;
}

.section,
.site-footer {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.8), rgba(252, 244, 236, 0.66));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.highlights-grid,
.info-grid,
.products-grid,
.compliance-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.products-grid,
.compliance-grid,
.media-split,
.reverse-media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-products-grid {
  align-items: stretch;
}

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

.info-card,
.compliance-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(248, 239, 229, 0.6));
}

.info-card h3,
.compliance-card h3,
.product-body h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.split-section,
.media-split,
.reverse-media {
  display: grid;
  gap: 24px;
  align-items: center;
}

.mini-products,
.stack-cards {
  display: grid;
  gap: 16px;
}

.mini-product-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(248, 239, 229, 0.74));
}

.mini-product-card p {
  margin: 10px 0 0;
}

.dark-card {
  color: #f6e3b8;
  background: radial-gradient(circle at top, rgba(204, 171, 113, 0.15), transparent 42%), linear-gradient(180deg, #17120e 0%, #090706 100%);
}

.dark-card span,
.dark-card strong,
.dark-card p {
  color: inherit;
}

.product-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.88);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(66, 39, 24, 0.14);
}

.product-visual {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-tag {
  margin: 0 0 10px;
}

.clip-visual {
  background: radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.94), transparent 28%), linear-gradient(135deg, #e9d6c6 0%, #cfb5a6 100%);
}

.clip-visual span {
  position: absolute;
  width: 192px;
  height: 58px;
  border-radius: 999px;
  border: 3px solid rgba(140, 90, 70, 0.12);
  box-shadow: 0 18px 34px rgba(87, 47, 36, 0.12);
}

.clip-visual span:first-child {
  top: 92px;
  left: 70px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, #dea0b8, #eec5d2);
}

.clip-visual span:last-child {
  top: 120px;
  left: 190px;
  transform: rotate(17deg);
  background: linear-gradient(90deg, #e2c2e7, #f5d8e0);
}

.scrunchie-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 24px;
  background: radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.95), transparent 24%), linear-gradient(135deg, #f9f3ed 0%, #ead8cb 100%);
}

.scrunchie-visual span {
  width: 60px;
  height: 158px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(62, 39, 23, 0.12);
}

.scrunchie-visual span:nth-child(1) { background: linear-gradient(180deg, #151515, #313131); }
.scrunchie-visual span:nth-child(2) { background: linear-gradient(180deg, #b48f7d, #8a6759); }
.scrunchie-visual span:nth-child(3) { background: linear-gradient(180deg, #a35656, #7e3c3f); }
.scrunchie-visual span:nth-child(4) { background: linear-gradient(180deg, #ffdcdd, #edb6b6); }
.scrunchie-visual span:nth-child(5) { background: linear-gradient(180deg, #f4efe3, #d8cebf); }

.compliance-card ul {
  margin: 0;
  padding-left: 18px;
}

.contact-card {
  display: block;
  padding: 18px;
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(248, 239, 229, 0.7));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(66, 39, 24, 0.12);
}

.contact-card strong {
  font-size: 0.98rem;
  line-height: 1.55;
}

.text-link,
.footer-links a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 18px;
}
.footer-logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(89, 51, 38, 0.1);
}

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

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

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 24px, var(--content-width));
  }

  .site-header {
    border-radius: 28px;
  }

  .hero,
  .section,
  .site-footer {
    padding: 24px;
  }

  .page-hero,
  .inner-hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

  .feature-image-card,
  .tall-image-card {
    height: auto;
  }

  .feature-image {
    max-height: 360px;
    object-fit: cover;
  }

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

@media (max-width: 1100px) {
  .page-hero,
  .inner-hero,
  .highlights-grid,
  .info-grid,
  .products-grid,
  .compliance-grid,
  .contact-grid,
  .split-section,
  .media-split,
  .reverse-media {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .split-copy h2,
  .media-copy h2,
  .site-footer h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 16px, var(--content-width));
    padding-top: 10px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .hero,
  .section,
  .site-footer {
    padding: 20px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text,
  .split-copy p,
  .media-copy p,
  .footer-copy p,
  .product-body p,
  .compliance-card li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-facts,
  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .fact-pill,
  .button,
  .footer-links a {
    width: 100%;
  }

  .fact-pill {
    min-width: 0;
  }

  .highlights-grid,
  .info-grid,
  .products-grid,
  .compliance-grid,
  .contact-grid,
  .split-section,
  .media-split,
  .reverse-media {
    gap: 14px;
  }

  .image-card {
    padding: 10px;
    border-radius: 18px;
  }

  .feature-image,
  .product-photo {
    border-radius: 14px;
  }

  .media-copy h2,
  .split-copy h2,
  .section-heading h2,
  .site-footer h2 {
    max-width: none;
  }

  .product-visual {
    min-height: 190px;
  }

  .product-body,
  .info-card,
  .compliance-card,
  .mini-product-card,
  .contact-card {
    padding: 16px;
  }

  .product-body h3,
  .info-card h3,
  .compliance-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }

  .clip-visual span:first-child {
    left: 24px;
    top: 76px;
    width: 160px;
  }

  .clip-visual span:last-child {
    left: 108px;
    top: 104px;
    width: 160px;
  }

  .scrunchie-visual {
    gap: 8px;
    padding: 28px 14px;
  }

  .scrunchie-visual span {
    width: 44px;
    height: 132px;
  }

  .footer-logo,
  .inline-brand-logo {
    width: min(100%, 200px);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100% - 12px);
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    border-radius: 18px;
  }

  .site-header {
    padding: 12px;
  }

  .brand-logo {
    height: 40px;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .site-footer {
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
    line-height: 1.08;
  }

  .section-heading h2,
  .split-copy h2,
  .media-copy h2,
  .site-footer h2 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    line-height: 1.12;
  }

  .hero-text,
  .split-copy p,
  .media-copy p,
  .footer-copy p,
  .product-body p,
  .compliance-card li,
  .contact-card strong {
    font-size: 0.92rem;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .hero-facts {
    gap: 10px;
  }

  .fact-pill {
    padding: 10px 12px;
  }

  .button,
  .footer-links a {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .product-visual {
    min-height: 160px;
  }

  .photo-visual {
    padding: 10px;
  }

  .contact-grid,
  .products-grid,
  .compliance-grid,
  .highlights-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}


.inline-brand-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.akya-inline-logo {
  background: #050505;
  padding: 8px;
}

.photo-visual {
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #fffdfa 0%, #f3e6da 100%);
}

.product-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  background: #fffdf9;
}
