@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #142a5c;
  --navy-dark: #0c1d46;
  --orange: #f36f21;
  --orange-dark: #d9530a;
  --gold: #d69a2d;
  --cream: #fffaf3;
  --paper: #f8f3ec;
  --white: #ffffff;
  --ink: #16223a;
  --muted: #677086;
  --line: #e8e0d6;
  --green: #198754;
  --shadow: 0 20px 55px rgba(20, 42, 92, 0.11);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body.menu-open::before {
  content: "";
  position: fixed;
  z-index: 90;
  inset: 74px 0 0;
  background: rgba(12, 29, 70, 0.38);
  backdrop-filter: blur(2px);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 42, 92, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1400px, calc(100% - 64px));
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 38px;
}

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

.brand img {
  width: 230px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(243, 111, 33, 0.25);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 15px 32px rgba(243, 111, 33, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 45px;
  padding: 10px 17px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 0;
  background: var(--cream);
}

.hero-background,
.hero-background img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 243, 0.98) 0%,
      rgba(255, 250, 243, 0.94) 30%,
      rgba(255, 250, 243, 0.82) 39%,
      rgba(255, 250, 243, 0.38) 44%,
      rgba(255, 250, 243, 0.1) 50%,
      transparent 60%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 64px));
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  width: min(45%, 625px);
  padding: 64px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.5rem, 5.25vw, 5.7rem);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 4rem);
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 550px;
  margin: 24px 0 0;
  color: #566176;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--orange);
  font-size: 1.25em;
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  width: min(1400px, calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid article {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px;
}

.trust-grid article + article {
  border-left: 1px solid var(--line);
}

.trust-grid .line-icon {
  min-width: 52px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 0.97rem;
}

.trust-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 104px 0;
}

.products-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 42px;
}

.heading-row {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  align-items: end;
  gap: 60px;
}

.heading-row > p,
.section-heading.centered > p {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border 0.18s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: var(--paper);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.photo-9 img {
  object-position: center 70%;
}

.stock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stock-badge.available {
  background: var(--green);
}

.stock-badge.sold-out {
  background: #8e3631;
}

.sold-out-card .product-image img {
  filter: grayscale(0.85);
  opacity: 0.58;
}

.product-body {
  padding: 24px 24px 26px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.23rem;
  line-height: 1.25;
}

.product-body > p:not(.product-kicker) {
  min-height: 76px;
  margin: 11px 0 19px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.product-link span {
  color: var(--orange);
}

.product-link.disabled {
  color: #8a8f9c;
}

.bags-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 24px 28px;
  border: 1px solid #ead4bd;
  border-radius: 16px;
  background: var(--cream);
}

.bags-note > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 1.5rem;
}

.bags-note strong {
  color: var(--navy);
}

.bags-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.story-section {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 10% 0, rgba(243, 111, 33, 0.18), transparent 30%),
    var(--navy-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 80px;
}

.story-image {
  height: 610px;
}

.story-image > img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: center 35%;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
}

.eyebrow.light {
  color: #f8b26e;
}

.story-copy h2,
.contact-card h2 {
  color: var(--white);
}

.story-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  color: var(--white);
  font-weight: 600;
}

.check-list span {
  color: #f8b26e;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--orange);
}

.benefits-section {
  background: var(--paper);
}

.centered {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-eyebrow {
  justify-content: center;
}

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

.benefits-grid article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.benefits-grid .number {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
}

.benefits-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.benefits-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 90px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 50px 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding: 0 0 70px;
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
  padding: 58px 64px;
  border-radius: 26px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(115deg, rgba(243, 111, 33, 0.22), transparent 45%),
    var(--navy);
}

.contact-card h2 {
  max-width: 690px;
}

.contact-card p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.79rem;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 70px 0 25px;
  color: #6f7788;
  background: #f5f2ed;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 55px;
}

.footer-brand img {
  width: 185px;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 9px 0;
  color: #6f7788;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--orange-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #ddd8d0;
  font-size: 0.75rem;
}

.footer-bottom a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  background: #21a366;
  box-shadow: 0 12px 30px rgba(10, 85, 49, 0.3);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #168a52;
  transform: translateY(-3px);
}

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

:focus-visible {
  outline: 3px solid rgba(243, 111, 33, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: 50%;
  }

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

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

@media (max-width: 820px) {
  :root {
    --container: min(700px, calc(100% - 30px));
  }

  .header-inner {
    width: var(--container);
    min-height: 74px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 120;
  }

  .main-nav {
    position: fixed;
    z-index: 115;
    top: 74px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 360px);
    height: calc(100dvh - 74px);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 20px 24px 36px;
    border-left: 1px solid var(--line);
    background: var(--white);
    box-shadow: -18px 18px 45px rgba(12, 29, 70, 0.2);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(105%, 0, 0);
    transition:
      transform 0.25s ease,
      opacity 0.18s ease,
      visibility 0s linear 0.25s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      transform 0.25s ease,
      opacity 0.18s ease,
      visibility 0s;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 1.05rem;
    text-align: left;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content,
  .trust-grid {
    width: var(--container);
  }

  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-background img {
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 243, 0.98) 0%,
        rgba(255, 250, 243, 0.93) 39%,
        rgba(255, 250, 243, 0.58) 58%,
        rgba(255, 250, 243, 0.06) 82%
      );
  }

  .hero-copy {
    align-self: flex-start;
    width: 100%;
    padding: 58px 0 clamp(150px, 39vw, 320px);
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  h1 {
    max-width: 700px;
    font-size: clamp(3rem, 10vw, 4.5rem);
  }

  .hero-lead {
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 95px;
    justify-content: flex-start;
  }

  .trust-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 80px 0;
  }

  .heading-row,
  .story-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .heading-row {
    gap: 18px;
  }

  .story-grid {
    gap: 55px;
  }

  .story-image {
    max-width: 520px;
    height: 600px;
  }

  .faq-grid {
    gap: 40px;
  }

  .contact-card {
    gap: 35px;
    padding: 44px 36px;
    text-align: center;
  }

  .contact-card .eyebrow {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-background {
    top: auto;
    height: 65vw;
  }

  .hero-background img {
    object-fit: cover;
    object-position: right center;
  }

  .hero-copy {
    padding: 40px 0 65vw;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 320px;
  }

  .bags-note {
    grid-template-columns: auto 1fr;
  }

  .bags-note .text-link {
    grid-column: 2;
  }

  .story-image {
    height: 500px;
  }

  .contact-card {
    width: calc(100% - 24px);
    padding: 38px 22px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .email-link {
    font-size: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
