:root {
  --home-primary: #121212;
  --home-nav-bg: #1a1a1a;
  --home-accent: #7a0c0c;
  --home-text: #4a4a4a;
  --home-white: #fdfdfd;
  --home-muted-bg: #f2f2f2;
  --home-nav-height: 90px;
  --home-shop-ink: #1c1c1a;
  --home-shop-soft: #4a4a46;
  --home-shop-muted: #8a8a84;
  --home-shop-accent: #5c6b4a;
  --home-shop-border: #e0ddd6;
  --home-display-font: "Cormorant Garamond", Georgia, serif;
  --home-shop-font: "DM Sans", system-ui, sans-serif;
}

.home-page,
.home-page * {
  box-sizing: border-box;
}

.home-page {
  margin: 0;
  padding-top: var(--home-nav-height);
  overflow-x: hidden;
  background: var(--home-white);
  color: var(--home-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.home-page--nav-open {
  overflow: hidden;
}

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

.home-page a {
  color: inherit;
}

.home-page h1,
.home-page h2 {
  color: var(--home-primary);
  font-weight: 700;
  line-height: 1.1;
}

.home-page h1 {
  margin: 0 0 35px;
  font-size: 3.8rem;
}

.home-page h2 {
  margin: 0 0 25px;
  font-size: 3rem;
}

.home-page h3 {
  line-height: 1.25;
}

.home-main {
  overflow: hidden;
}

.home-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .home-wa,
.home-page .home-wa:visited {
  color: #ffffff;
}

.home-wa:hover,
.home-wa:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.home-wa__icon {
  font-size: 30px;
}

.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  height: var(--home-nav-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(8px);
}

.home-nav__logo {
  display: inline-flex;
  align-items: center;
}

.home-nav__logo img {
  width: auto;
  height: 50px;
}

.home-nav__links {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-nav__link {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.home-page .home-nav__link,
.home-page .home-nav__link:visited {
  color: #ffffff;
}

.home-nav__link:hover,
.home-nav__link:focus {
  color: #cccccc;
}

.home-page .home-nav__link:hover,
.home-page .home-nav__link:focus {
  color: #cccccc;
}

.home-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.home-nav__toggle-line {
  display: block;
  width: 21px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-nav--open .home-nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.home-nav--open .home-nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.home-nav--open .home-nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 8%;
}

.home-section-band {
  width: 100%;
}

.home-section-band--muted {
  background-color: var(--home-muted-bg);
}

.home-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.home-split__content {
  flex: 1;
  max-width: 580px;
}

.home-split__media {
  display: flex;
  flex: 1;
  justify-content: center;
}

.home-eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--home-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-copy {
  margin: 0 0 35px;
  color: var(--home-text);
  font-size: 1.15rem;
  font-weight: 300;
}

.home-manifest {
  margin-bottom: 45px;
  padding: 10px 0 10px 25px;
  border-left: 2px solid var(--home-accent);
}

.home-manifest__text {
  margin: 0;
  color: #555555;
  font-style: italic;
}

.home-button {
  display: inline-block;
  padding: 20px 40px;
  border: 1px solid var(--home-primary);
  border-radius: 2px;
  background-color: var(--home-primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.home-page .home-button,
.home-page .home-button:visited {
  color: #ffffff;
}

.home-button:hover,
.home-button:focus {
  transform: translateY(-2px);
  opacity: 0.8;
}

.home-button--outline {
  background-color: transparent;
  color: var(--home-primary);
}

.home-page .home-button--outline,
.home-page .home-button--outline:visited {
  color: var(--home-primary);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.home-image {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
}

.home-image--hero {
  max-width: 600px;
}

.home-image--circle {
  max-width: 480px;
  border-radius: 50%;
}

.home-image--shadow {
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}

.home-benefits__intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.home-benefits__intro h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.home-benefits__intro p {
  margin: 0;
  color: var(--home-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-top: 60px;
}

.home-benefits__item {
  text-align: center;
}

.home-benefits__icon {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #ffffff;
}

.home-benefits__icon-image {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.home-benefits__title {
  margin: 0 0 12px;
  color: var(--home-primary);
  font-size: 1.08rem;
}

.home-benefits__item p {
  margin: 0;
  color: var(--home-text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.home-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-list__item {
  position: relative;
  padding-left: 24px;
  color: var(--home-text);
  font-size: 1.1rem;
}

.home-list__item::before {
  position: absolute;
  left: 0;
  color: var(--home-accent);
  content: "•";
  font-size: 1.2rem;
}

.home-testimonials__header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-testimonials__card {
  overflow: hidden;
  border-radius: 4px;
  background: var(--home-white);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}

.home-testimonials__frame {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
}

.home-testimonials__caption {
  padding: 20px 22px;
  color: var(--home-text);
  font-size: 1rem;
  font-weight: 400;
}

.home-shop {
  padding: 100px 5vw;
  background: var(--home-muted-bg);
  color: var(--home-shop-ink);
  font-family: var(--home-shop-font);
}

.home-shop__intro {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-shop__intro h2 {
  margin: 0 0 12px;
  color: var(--home-shop-ink);
  font-family: var(--home-display-font);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
}

.home-shop__intro h3 {
  margin: 22px 0 10px;
  color: var(--home-shop-accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shop__intro p {
  margin: 0 0 10px;
  color: var(--home-shop-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.home-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.home-shop__card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.8rem;
  border: 1px solid var(--home-shop-border);
  border-radius: 4px;
  background: #ffffff;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-shop__card:hover,
.home-shop__card:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.home-shop__card--featured {
  border-color: var(--home-shop-accent);
  background: #f9fbf7;
}

.home-shop__badge {
  display: flex;
  min-height: 2.3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--home-shop-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shop__card--featured .home-shop__badge {
  min-height: auto;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  background: var(--home-shop-accent);
  color: #ffffff;
}

.home-shop__days {
  margin-bottom: 0.2rem;
  color: var(--home-shop-ink);
  font-family: var(--home-display-font);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.home-shop__days-label {
  margin-bottom: 1.5rem;
  color: var(--home-shop-muted);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shop__image-wrap {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
}

.home-shop__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-shop__price {
  margin-bottom: 0.15rem;
  color: var(--home-shop-ink);
  font-size: 1.8rem;
  font-weight: 300;
}

.home-shop__per {
  margin-bottom: 0.5rem;
  color: var(--home-shop-muted);
  font-size: 0.78rem;
}

.home-shop__total {
  min-height: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--home-shop-soft);
  font-size: 0.82rem;
}

.home-shop__shipping,
.home-shop__gift {
  margin-bottom: 0.5rem;
  color: var(--home-shop-accent);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.home-shop__gift {
  margin-bottom: 1.5rem;
}

.home-shop__button {
  width: 100%;
  margin-top: auto;
  padding: 0.7rem 1rem;
  border: 1px solid var(--home-shop-accent);
  border-radius: 2px;
  background: transparent;
  color: var(--home-shop-accent);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.home-shop__card:hover .home-shop__button,
.home-shop__card:focus .home-shop__button,
.home-shop__card--featured .home-shop__button {
  background: var(--home-shop-accent);
  color: #ffffff;
}

.home-page .home-shop__card:hover .home-shop__button,
.home-page .home-shop__card:focus .home-shop__button,
.home-page .home-shop__card--featured .home-shop__button {
  color: #ffffff;
}

.home-shop__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1rem;
  color: var(--home-shop-muted);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.home-shop__note {
  max-width: 980px;
  margin: 34px auto 0;
  color: var(--home-shop-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
}

.home-faq {
  padding: 100px 8%;
  background: var(--home-white);
}

.home-faq__header {
  max-width: 760px;
  margin: 0 auto 42px;
}

.home-faq__header h2 {
  margin: 0;
  color: var(--home-primary);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.home-faq__list {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}

.home-faq__item {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
  background: #ffffff;
}

.home-faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: none;
  background: none;
  color: var(--home-primary);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.home-faq__question span:first-child {
  flex: 1;
}

.home-faq__icon {
  flex-shrink: 0;
  color: var(--home-accent);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.home-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.home-faq__answer-inner {
  padding: 0 0 18px;
}

.home-faq__answer-inner p {
  margin: 0 0 14px;
  color: var(--home-text);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.72;
}

.home-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.home-faq__answer-inner strong {
  color: var(--home-primary);
  font-weight: 600;
}

.home-faq__item--active .home-faq__icon {
  transform: rotate(45deg);
}

.home-references {
  padding: 100px 8%;
  background: var(--home-muted-bg);
}

.home-references__header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.home-references__header h2 {
  margin: 0 0 22px;
  color: var(--home-primary);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.home-references__header p {
  max-width: 860px;
  margin: 0;
  color: var(--home-text);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.home-references__list {
  display: flex;
  max-width: 980px;
  flex-direction: column;
  gap: 42px;
  margin: 0 auto;
}

.home-references__category h3 {
  margin: 0 0 20px;
  color: var(--home-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-references__card {
  margin-bottom: 16px;
  padding: 30px 32px;
  border-radius: 4px;
  background: var(--home-white);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.home-references__card:last-child {
  margin-bottom: 0;
}

.home-references__card h4 {
  margin: 0 0 14px;
  color: var(--home-primary);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
}

.home-references__card p {
  margin: 0 0 16px;
  color: var(--home-text);
  font-size: 0.98rem;
  line-height: 1.78;
}

.home-references__card a {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.3);
  color: var(--home-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, border-bottom-color 0.25s ease;
}

.home-references__card a:hover,
.home-references__card a:focus {
  border-bottom-color: var(--home-accent);
  color: var(--home-accent);
}

.home-references__note {
  max-width: 980px;
  margin: 50px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.home-references__note p {
  margin: 0;
  color: var(--home-text);
  font-size: 0.98rem;
  line-height: 1.78;
}

.home-footer {
  padding: 22px 8%;
  background: var(--home-primary);
}

.home-footer__inner {
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
  margin: 0 auto;
}

.home-footer__link {
  color: var(--home-white);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.home-page .home-footer__link,
.home-page .home-footer__link:visited {
  color: var(--home-white);
}

.home-footer__link:hover,
.home-footer__link:focus {
  opacity: 0.7;
}

@media (max-width: 1180px) {
  .home-nav {
    padding: 0 5%;
  }

  .home-nav__links {
    gap: 22px;
  }

  .home-shop__grid {
    max-width: 820px;
    gap: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .home-split {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .home-section-band--muted .home-split {
    flex-direction: column-reverse;
  }

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

  .home-list {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
  }

  .home-testimonials__grid,
  .home-shop__grid {
    grid-template-columns: 1fr;
  }

  .home-shop__card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .home-nav__toggle {
    display: flex;
  }

  .home-nav__links {
    position: fixed;
    top: var(--home-nav-height);
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - var(--home-nav-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(26, 26, 26, 0.98);
  }

  .home-nav--open .home-nav__links {
    display: flex;
  }

  .home-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-nav__link {
    display: block;
    padding: 18px 0;
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  :root {
    --home-nav-height: 76px;
  }

  .home-page h1 {
    font-size: 2.5rem;
  }

  .home-page h2,
  .home-faq__header h2,
  .home-references__header h2,
  .home-shop__intro h2 {
    font-size: 2rem;
  }

  .home-nav {
    padding: 0 6%;
  }

  .home-nav__logo img {
    height: 42px;
  }

  .home-section,
  .home-faq,
  .home-references,
  .home-shop {
    padding: 80px 8%;
  }

  .home-split {
    gap: 36px;
  }

  .home-copy {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .home-button {
    width: 100%;
    padding: 17px 22px;
  }

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

  .home-manifest {
    margin-bottom: 34px;
    text-align: left;
  }

  .home-benefits__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-testimonials__header {
    margin-bottom: 42px;
  }

  .home-faq__header,
  .home-faq__list {
    max-width: 100%;
  }

  .home-faq__question {
    align-items: flex-start;
    padding: 16px 0;
    font-size: 0.98rem;
  }

  .home-faq__answer-inner p,
  .home-references__card p,
  .home-references__note p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .home-references__header {
    margin-bottom: 42px;
  }

  .home-references__header p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .home-references__list {
    gap: 34px;
  }

  .home-references__card {
    padding: 24px 22px;
  }

  .home-references__card h4 {
    font-size: 1rem;
  }

  .home-footer__inner {
    gap: 18px 28px;
  }

  .home-wa {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
