/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* SCREEN-READER ONLY */
.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;
}

body {
  font-family: Inter, sans-serif;
  color: #3E3E3E;
}

/* Prevent horizontal scrollbar from AOS slide animations
   without breaking AOS trigger detection on body */
main,
footer {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

/* =====================
   HEADER
===================== */
.header {
  background: white;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search {
  padding: 10px 16px 10px 44px;
  border-radius: 100px;
  border: 1px solid #ABABAB;
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238D8D8D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px 18px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #3E3E3E;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.search::placeholder {
  color: #8D8D8D;
}

.search:hover,
.search:focus {
  border-color: #D62E57;
  box-shadow: 0 4px 14px rgba(214, 46, 87, 0.18);
  transform: translateY(-1px);
}

.search:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D62E57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
}

.logo span {
  display: block;
  letter-spacing: 12px;
  font-size: 14px;
}

/* Account pill */
.account {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px 6px 6px;
  border: 1px solid #ABABAB;
  border-radius: 100px;
  background: white;
  color: #3E3E3E;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.account:hover {
  border-color: #D62E57;
  box-shadow: 0 4px 14px rgba(214, 46, 87, 0.18);
  transform: translateY(-1px);
}

.avatar {
  width: 44px;
  height: 44px;
  background-color: #D62E57;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-4.42 0-8 2.69-8 6v2h16v-2c0-3.31-3.58-6-8-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.account > div:not(.avatar) {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.account > div:not(.avatar) > div {
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #3E3E3E;
  transition: color 0.25s ease;
}

.account small {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #8D8D8D;
}

.account:hover > div:not(.avatar) > div {
  color: #D62E57;
}

/* =====================
   HERO (VIDEO BANNER)
===================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.65) 0%,
    rgba(255,255,255,0.6) 55%,
    rgba(255,255,255,0) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-family: "Crimson Pro", serif;
  font-size: 80px;
  line-height: 1.1;
}

.hero h1 span {
  color: #D62E57;
}

.hero-content p {
  margin-top: 20px;
  max-width: 480px;
  font-size: 16px;
}

/* ACTION BUBBLES */
.hero-actions {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.bubble {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3px;
  cursor: pointer;
  line-height: 1.4;
  font-size: 14px;
  background: #fff;
  transition: all 0.35s ease;
  box-shadow: 10px 10px 0 #3E3E3E;
}

.bubble.dark {
  background: #EFEFEF;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
}

.bubble.light {
  background: #ffffff;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
}

.bubble.dark:hover,
.bubble.light:hover {
  background: radial-gradient(circle at top left, #8b1d2c, #5c0f1c);
  border-color: #5c0f1c;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(92, 15, 28, 0.4);
}

/* =====================
   VALUE PROPS
===================== */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 20px;
}

.value-card {
  position: relative;
  padding: 40px;
  background: #ffffff;
  border: 3px solid transparent;
  border-radius: 6px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.value-card:hover {
  border-color: #D62E57;
  box-shadow: 8px 8px 0 rgba(214, 46, 87, 0.9);
}

.value-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 26px;
  margin: 20px 0 10px;
}

.value-card p {
  color: #8D8D8D;
}

/* =====================
   COLLECTION
===================== */
.collection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 20px;
}

.collection-content h2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: "Crimson Text", serif;
  font-size: 60px;
  color: #D62E57;
  line-height: 1.1;
  margin-bottom: 20px;
}

.collection-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collection-content h2 > img {
  width: 80px;
  height: 80px;
  padding: 10px;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 15px;
}

.collection-content p {
  color: #000;
  text-align: justify;
  font-family: "Red Hat Text", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 128.466%;
  max-width: 767px;
  width: 100%;
}

/* =====================
   BUTTON
===================== */
.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 36px;

  font-family: "Crimson Text", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;

  background-color: white;
  color: #000;

  border: 3px solid #000;
  border-radius: 4px;

  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background-color: #D62E57;
  color: #ffffff;
  border-color: #D62E57;
}

.btn.red {
  border-color: #D62E57;
  color: #D62E57;
}

.btn.red:hover {
  color: #ffffff;
}

a.btn,
a.bubble,
a.pill {
  text-decoration: none;
}

/* =====================
   CATALOG HIGHLIGHT
===================== */
.catalog-highlight {
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.section-line {
  max-width: 370px;
  width: 100%;
  height: 2px;
  background: #000;
  margin: 0 auto 60px;
}

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

.catalog-text h2 {
  font-family: "Crimson Pro", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 520px;
  margin-bottom: 40px;
}

.catalog-image {
  display: flex;
  justify-content: flex-end;
}

/* =====================
   DUAL CTA
===================== */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 20px;
}

.dual-cta a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =====================
   INFO CARDS
===================== */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 120px auto;
}

.about-card {
  background: linear-gradient(180deg, black, #D62E57);
  color: white;
  padding: 60px;
  border-radius: 30px;
}

.about-card h3 {
  color: #FFF;
  text-align: center;
  font-family: "Crimson Text", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 128.466%;
}

.newsletter {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 3px solid #D62E57;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter img {
  width: 300px;
  height: auto;
  object-fit: cover;
  align-self: center;
}

.newsletter > div {
  padding: 40px;
}

.newsletter input {
  width: 100%;
  border: none;
  border-bottom: 4px solid #D62E57;
  font-size: 20px;
  margin: 30px 0;
}

/* =====================
   FINAL CTA
===================== */
.final-cta {
  position: relative;
  max-width: 1360px;
  margin: 0 auto 21px;

  background-color: #A42241;

  border-radius: 26px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

  color: white;
  text-align: center;

  padding: 85px 51px;
}

.final-cta h2 {
  max-width: 766px;
  width: 100%;
  margin: 0 auto;

  font-family: "Crimson Text", serif;
  font-size: 104px;
  font-weight: 700;
  line-height: 128.466%;
  padding-bottom: 64px;
}

.final-cta p {
  max-width: 809px;
  width: 100%;
  margin: 0 auto;

  font-family: "Red Hat Text", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 128.466%;
  padding-bottom: 21px;
}

.cta-actions {
  display: flex;
  gap: 34px;
  justify-content: center;
  margin-top: 51px;
}

/* =====================
   PILLS
===================== */
.pill {
  padding: 24px 48px;
  border-radius: 120px;
  font-size: 19px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.pill:hover {
  transform: translateY(-5px);
}

.pill.dark,
.pill.light {
  width: 340px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  border-radius: 120px;
}

.pill.dark {
  background: black;
  color: #FFF;
}

.pill.light {
  background: #ECE4FF;
  border: 3px solid black;
  color: #000;
  line-height: 128.466%;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: linear-gradient(270deg, #EAF4FF 0%, #D6D7DF 100%);
  padding: 60px 20px 30px;
  font-family: "Red Hat Text", sans-serif;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 80px;
}

.footer-brand img {
  width: 291px;
  height: 80px;
  margin-bottom: 9px;
}

.footer-tag {
  max-width: 304px;
  width: 100%;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 14.925px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  display: block;
  max-width: 231px;
  width: 100%;
  color: #000;
  font-family: Manrope, sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: #000;
  font-family: "Red Hat Text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  max-width: 231px;
  width: 100%;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-divider {
  max-width: 1400px;
  margin: 40px auto 20px;
  border: none;
  border-top: 1px solid black;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* =====================
   RESPONSIVE — LARGE (min-width: 1024px)
===================== */
@media (min-width: 1024px) {
  .collection-image img {
    max-width: 520px;
    width: 100%;
  }
}

/* =====================
   RESPONSIVE — TABLET (max-width: 900px)
===================== */
@media (max-width: 900px) {
  /* HEADER */
  .header-inner {
    padding: 15px;
    gap: 10px;
  }

  .search {
    max-width: 160px;
    font-size: 14px;
    padding: 8px 14px;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  /* HERO */
  .hero {
    height: 80vh;
  }

  .hero-overlay {
    width: 80%;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 90%;
  }

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

  .hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .bubble {
    width: 150px;
    height: 150px;
    font-size: 12px;
    letter-spacing: 2px;
    box-shadow: 7px 7px 0 #3E3E3E;
  }

  /* VALUE PROPS */
  .value-props {
    margin: 60px auto;
    gap: 20px;
  }

  .value-card {
    padding: 30px;
  }

  /* COLLECTION */
  .collection {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    margin: 60px auto;
  }

  .collection-image img {
    max-width: 80%;
  }

  .collection-content h2 {
    justify-content: center;
    font-size: 44px;
  }

  .collection-content h2 > img {
    width: 60px;
    height: 60px;
    margin-top: 0;
  }

  .collection-content p {
    font-size: 20px;
    text-align: center;
    max-width: 100%;
  }

  /* CATALOG */
  .catalog-highlight {
    margin-bottom: 60px;
  }

  .catalog-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .catalog-text h2 {
    font-size: 32px;
    max-width: 100%;
  }

  .catalog-image {
    justify-content: center;
  }

  .catalog-image img {
    max-width: 80%;
  }

  /* DUAL CTA */
  .dual-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 60px auto;
  }

  /* INFO CARDS */
  .info-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .about-card {
    padding: 40px;
  }

  .about-card h3 {
    font-size: 36px;
  }

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

  .newsletter img {
    width: 100%;
    max-height: 250px;
  }

  .newsletter > div {
    padding: 30px;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 60px 30px;
    border-radius: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .final-cta h2 {
    font-size: 64px;
    padding-bottom: 30px;
  }

  .final-cta p {
    font-size: 20px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .pill.dark,
  .pill.light {
    width: 280px;
    height: 75px;
    font-size: 20px;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

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

  .footer-bottom {
    font-size: 16px;
    flex-direction: column;
    text-align: center;
  }
}

/* =====================
   RESPONSIVE — MOBILE (max-width: 600px)
===================== */
@media (max-width: 600px) {
  /* HEADER */
  .account > div:not(.avatar) {
    display: none;
  }

  .account {
    padding: 0;
    border: none;
    background: transparent;
    gap: 0;
  }

  .account:hover {
    box-shadow: none;
    transform: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo account"
      "search search";
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .logo {
    grid-area: logo;
    justify-self: start;
    text-align: center;
  }

  .logo img {
    max-width: 160px;
  }

  .logo span {
    letter-spacing: 8px;
    font-size: 12px;
  }

  .account {
    grid-area: account;
    justify-self: end;
  }

  .search {
    grid-area: search;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  /* HERO */
  .hero {
    height: 90vh;
  }

  .hero-overlay {
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.75) 0%,
      rgba(255,255,255,0.6) 60%,
      rgba(255,255,255,0.3) 100%
    );
  }

  .hero-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }

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

  .hero-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
  }

  .bubble {
    width: 120px;
    height: 120px;
    font-size: 11px;
    letter-spacing: 1.5px;
    box-shadow: 5px 5px 0 #3E3E3E;
  }

  /* VALUE PROPS */
  .value-props {
    grid-template-columns: 1fr;
    margin: 40px auto;
    gap: 15px;
  }

  .value-card {
    padding: 25px;
  }

  .value-card h3 {
    font-size: 22px;
  }

  /* COLLECTION */
  .collection {
    margin: 40px auto;
    gap: 20px;
    padding: 0 15px;
  }

  .collection-image img {
    max-width: 100%;
  }

  .collection-content h2 {
    font-size: 32px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .collection-content h2 > img {
    width: 48px;
    height: 48px;
  }

  .collection-content p {
    font-size: 16px;
  }

  /* CATALOG */
  .catalog-highlight {
    margin-bottom: 40px;
  }

  .section-line {
    margin-bottom: 30px;
  }

  .catalog-content {
    gap: 25px;
  }

  .catalog-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .catalog-image img {
    max-width: 100%;
  }

  /* DUAL CTA */
  .dual-cta {
    margin: 40px auto;
    padding: 0 15px;
  }

  .dual-cta a.btn {
    font-size: 16px;
    padding: 14px 20px;
    margin-top: 0;
  }

  /* INFO CARDS */
  .info-cards {
    margin: 40px auto;
    padding: 0 15px;
    gap: 20px;
  }

  .about-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .about-card h3 {
    font-size: 28px;
  }

  .about-card p {
    font-size: 15px;
  }

  .newsletter {
    border-radius: 20px;
  }

  .newsletter img {
    max-height: 200px;
  }

  .newsletter > div {
    padding: 20px;
  }

  .newsletter h3 {
    font-size: 22px;
  }

  .newsletter input {
    font-size: 16px;
    margin: 20px 0;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 40px 20px;
    border-radius: 16px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .final-cta h2 {
    font-size: 40px;
    padding-bottom: 20px;
  }

  .final-cta p {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .cta-actions {
    margin-top: 20px;
    gap: 15px;
  }

  .pill {
    padding: 16px 30px;
    font-size: 15px;
  }

  .pill.dark,
  .pill.light {
    width: 100%;
    max-width: 280px;
    height: 65px;
    font-size: 17px;
  }

  /* FOOTER */
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-inner {
    gap: 30px;
  }

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

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

  .footer-tag {
    letter-spacing: 8px;
    font-size: 12px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-col h4 {
    max-width: 100%;
    font-size: 22px;
  }

  .footer-col a {
    max-width: 100%;
    font-size: 17px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}
