:root {
  --blue: #162b69;
  --black: #1f1f1f;
  --coal: #232323;
  --gold: #fbb307;
  --green: #2ac765;
  --green-dark: #23894d;
  --text: #2b2b2b;
  --muted: #6f6f6f;
  --line: #5dbd76;
  --paper: #f6f6f6;
  --white: #ffffff;
  --container: 1180px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  background: var(--white);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
}

.topbar__inner,
.navbar__inner,
.hero__inner,
.section,
.footer__inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}

.icon {
  color: var(--gold);
  font-size: 12px;
}

.socials {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.socials a {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--black);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.navbar__inner {
  min-height: 95px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  flex: 0 0 190px;
}

.brand img {
  width: 190px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.menu a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 12px 24px;
  border: 0;
  background: var(--green);
  color: #122017;
  border-radius: 3px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn::before,
.btn--header::before,
.btn--large::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9 3 3.4 8.6 3.4 15.5c0 2.3.6 4.5 1.8 6.4L3 29l7.3-2a12.4 12.4 0 0 0 5.7 1.4c7 0 12.6-5.6 12.6-12.5S23 3 16 3zm0 22.9c-1.8 0-3.6-.5-5.2-1.4l-.4-.2-4.3 1.1 1.2-4.2-.3-.4a10.2 10.2 0 1 1 9 5.1zm5.7-7.6c-.3-.2-1.9-.9-2.2-1-.3-.1-.5-.2-.8.2-.2.3-.9 1-.1 1.2-.2.2-.4.2-.7.1-2-.9-3.3-1.7-4.6-3.8-.3-.6.3-.6.9-1.7.1-.2.1-.4 0-.6l-.8-2c-.2-.5-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.1 1.1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.2 3.4 5.4 4.7 2 .9 2.8.9 3.8.8.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.3-.7-.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9 3 3.4 8.6 3.4 15.5c0 2.3.6 4.5 1.8 6.4L3 29l7.3-2a12.4 12.4 0 0 0 5.7 1.4c7 0 12.6-5.6 12.6-12.5S23 3 16 3zm0 22.9c-1.8 0-3.6-.5-5.2-1.4l-.4-.2-4.3 1.1 1.2-4.2-.3-.4a10.2 10.2 0 1 1 9 5.1zm5.7-7.6c-.3-.2-1.9-.9-2.2-1-.3-.1-.5-.2-.8.2-.2.3-.9 1-.1 1.2-.2.2-.4.2-.7.1-2-.9-3.3-1.7-4.6-3.8-.3-.6.3-.6.9-1.7.1-.2.1-.4 0-.6l-.8-2c-.2-.5-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.1 1.1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.2 3.4 5.4 4.7 2 .9 2.8.9 3.8.8.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.3-.7-.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--header {
  min-width: 194px;
  color: var(--white);
  text-transform: none;
  font-size: 16px;
}

.btn--large {
  min-height: 50px;
  padding: 14px 28px;
  color: var(--white);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 544px;
  overflow: hidden;
  background: url("assets/diadema-store.png") center center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(35, 35, 35, 0.88);
}

.hero__inner {
  position: relative;
  min-height: 544px;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
  gap: 20px;
}

.hero__copy {
  padding-top: 28px;
}

.eyebrow,
.section__kicker {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 36px;
  color: var(--white);
  font-family: "Roboto Slab", "Roboto", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__person {
  align-self: end;
  width: 360px;
  max-height: 500px;
  object-fit: cover;
  object-position: top center;
  opacity: 0.96;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-top: 10px solid #f1f1f1;
}

.feature-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px;
}

.feature-card--gold {
  background: var(--gold);
}

.feature-card__icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  background: var(--gold);
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h2 {
  margin: 0 0 12px;
  color: #454545;
  font-size: 19px;
  line-height: 1.05;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: #454545;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
}

.section {
  padding: 92px 0;
}

.section__heading {
  text-align: center;
  margin-bottom: 34px;
}

.section__kicker {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section__kicker--left {
  text-align: left;
}

.section h2,
.section__heading h2,
.cta h2 {
  margin: 0;
  color: #292929;
  font-family: "Roboto Slab", "Roboto", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.product-card {
  min-height: 398px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.product-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin: 12px 0 10px;
  color: #6f6f6f;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.product-card h3 span,
.checks span::before {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 15px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  line-height: 1;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  width: min(100%, 210px);
  padding: 12px 16px;
  border-radius: 3px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-card__button::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9 3 3.4 8.6 3.4 15.5c0 2.3.6 4.5 1.8 6.4L3 29l7.3-2a12.4 12.4 0 0 0 5.7 1.4c7 0 12.6-5.6 12.6-12.5S23 3 16 3zm0 22.9c-1.8 0-3.6-.5-5.2-1.4l-.4-.2-4.3 1.1 1.2-4.2-.3-.4a10.2 10.2 0 1 1 9 5.1zm5.7-7.6c-.3-.2-1.9-.9-2.2-1-.3-.1-.5-.2-.8.2-.2.3-.9 1-.1 1.2-.2.2-.4.2-.7.1-2-.9-3.3-1.7-4.6-3.8-.3-.6.3-.6.9-1.7.1-.2.1-.4 0-.6l-.8-2c-.2-.5-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.1 1.1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.2 3.4 5.4 4.7 2 .9 2.8.9 3.8.8.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.3-.7-.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3C9 3 3.4 8.6 3.4 15.5c0 2.3.6 4.5 1.8 6.4L3 29l7.3-2a12.4 12.4 0 0 0 5.7 1.4c7 0 12.6-5.6 12.6-12.5S23 3 16 3zm0 22.9c-1.8 0-3.6-.5-5.2-1.4l-.4-.2-4.3 1.1 1.2-4.2-.3-.4a10.2 10.2 0 1 1 9 5.1zm5.7-7.6c-.3-.2-1.9-.9-2.2-1-.3-.1-.5-.2-.8.2-.2.3-.9 1-.1 1.2-.2.2-.4.2-.7.1-2-.9-3.3-1.7-4.6-3.8-.3-.6.3-.6.9-1.7.1-.2.1-.4 0-.6l-.8-2c-.2-.5-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.1 1.1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.2 3.4 5.4 4.7 2 .9 2.8.9 3.8.8.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.3-.7-.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.product-card__button:hover,
.product-card__button:focus {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.center {
  text-align: center;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.about__media {
  position: relative;
  padding: 0 0 20px 20px;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 20px;
  background: var(--gold);
}

.about__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: var(--gold);
}

.about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.about__content p {
  margin: 28px 0;
  font-size: 20px;
  line-height: 1.55;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin: 30px 0 34px;
}

.checks span {
  display: flex;
  gap: 14px;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.35;
}

.checks span::before {
  content: "✓";
  margin-top: 4px;
}

.about__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why {
  width: 100%;
  background: #f8f8f8;
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  padding-right: max(20px, calc((100% - var(--container)) / 2));
}

.why__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.why-list li {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 1.45;
}

.why-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
}

.why .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.categories {
  padding-bottom: 72px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-grid div {
  min-height: 178px;
  padding: 26px;
  border-top: 4px solid var(--gold);
  background: #f7f7f7;
}

.category-grid h3 {
  margin: 0 0 12px;
  color: #202020;
  font-size: 22px;
  text-transform: uppercase;
}

.category-grid p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.availability {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.testimonials {
  width: 100%;
  background: #f7f7f7;
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  padding-right: max(20px, calc((100% - var(--container)) / 2));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 42px;
}

.testimonial-grid article {
  min-height: 232px;
  padding: 34px;
  background: var(--white);
  border-bottom: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.testimonial-grid p {
  margin: 0 0 26px;
  color: #333;
  font-size: 18px;
  line-height: 1.48;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 54px;
}

.testimonial-grid strong {
  display: block;
  color: #252525;
  margin-bottom: 8px;
}

.testimonial-grid span {
  color: var(--gold);
  letter-spacing: 2px;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--coal) url("assets/texture.jpg") center / cover no-repeat;
  color: var(--white);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.cta__inner {
  position: relative;
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 94px 0;
  text-align: center;
}

.cta .section__kicker--left {
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p:not(.section__kicker) {
  margin: 24px auto 34px;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: start;
}

.contact__copy p {
  font-size: 20px;
  line-height: 1.55;
}

.contact-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
  font-size: 18px;
  font-weight: 700;
}

.contact-list li {
  position: relative;
  padding-left: 24px;
}

.contact-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.contact-form {
  padding: 34px;
  background: var(--paper);
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0 0 24px;
  color: #202020;
  font-size: 22px;
  line-height: 1.2;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #454545;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 0;
  background: var(--white);
  padding: 13px 14px;
  color: var(--text);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(251, 179, 7, 0.38);
  border-color: var(--gold);
}

.footer {
  color: var(--white);
  background: var(--black);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 60px;
  padding: 68px 0;
}

.footer img {
  width: 210px;
  margin-bottom: 24px;
}

.footer h2,
.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
}

.footer p {
  color: #d9d9d9;
  line-height: 1.6;
}

.footer a:not(.btn) {
  display: block;
  margin-bottom: 12px;
  color: #e9e9e9;
}

.footer__brand p {
  max-width: 420px;
}

.footer__bottom {
  padding: 18px 20px;
  color: #d2d2d2;
  text-align: center;
  background: #151515;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 39px;
  height: 39px;
  fill: var(--white);
}

@media (max-width: 1080px) {
  .navbar__inner {
    gap: 22px;
  }

  .menu {
    gap: 17px;
  }

  .menu a {
    font-size: 17px;
  }

  .btn--header {
    min-width: 172px;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .hero__inner {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 860px) {
  .topbar__inner {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 0;
  }

  .socials {
    margin-left: 0;
  }

  .navbar__inner {
    min-height: 78px;
    flex-wrap: wrap;
  }

  .brand,
  .brand img {
    width: 168px;
    flex-basis: 168px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu {
    display: none;
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0 18px;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn--header {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 560px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero__copy {
    text-align: center;
    padding: 70px 0 220px;
  }

  .hero__person {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 260px;
    transform: translateX(50%);
  }

  .feature-strip,
  .product-grid,
  .about,
  .why__inner,
  .category-grid,
  .testimonial-grid,
  .contact,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .section {
    padding: 62px 0;
  }

  .about__media {
    max-width: 580px;
    margin: 0 auto;
  }

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

  .why .btn {
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .topbar__inner,
  .navbar__inner,
  .hero__inner,
  .section,
  .footer__inner {
    width: min(100% - 28px, var(--container));
  }

  .topbar {
    font-size: 13px;
  }

  .brand,
  .brand img {
    width: 145px;
    flex-basis: 145px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .btn--large {
    width: 100%;
    font-size: 18px;
  }

  .hero,
  .hero__inner {
    min-height: 520px;
  }

  .hero__copy {
    padding: 58px 0;
  }

  .hero__person {
    display: none;
  }

  .feature-card {
    grid-template-columns: 78px 1fr;
    padding: 24px 18px;
  }

  .feature-card__icon {
    width: 78px;
    height: 78px;
  }

  .feature-card p {
    font-size: 17px;
  }

  .section h2,
  .section__heading h2,
  .cta h2 {
    font-size: 34px;
  }

  .product-card {
    min-height: 320px;
  }

  .product-card img {
    height: 190px;
  }

  .contact-form {
    padding: 24px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}
