:root {
  color-scheme: light;
  --paper: #fff9f2;
  --paper-strong: #f5eadc;
  --ink: #181411;
  --muted: #6f6259;
  --line: #e3d3c3;
  --red: #a71925;
  --red-dark: #741018;
  --gold: #c69a52;
  --rose: #7c4b43;
  --sage: #6f806b;
  --charcoal: #11100f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(36, 22, 12, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#orderForm {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

button,
input,
select,
textarea {
  border-radius: var(--radius);
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 5vw;
  color: var(--white);
  background: rgba(15, 12, 10, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.language-switch {
  justify-self: end;
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  min-width: 78px;
  padding: 7px 10px;
  border: 0;
  color: var(--white);
  background: transparent;
  white-space: nowrap;
}

.lang-button.is-active {
  background: var(--white);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 110px 5vw 56px;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-img {
  position: absolute;
  bottom: -8%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.hero-img-red {
  right: 23%;
  height: 94%;
  z-index: 2;
}

.hero-img-white {
  right: 3%;
  bottom: -10%;
  height: 76%;
  z-index: 1;
  opacity: 0.95;
}

.hero-img-black {
  right: -12%;
  height: 88%;
  z-index: 0;
  opacity: 0.9;
}

.hero-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.78) 38%, rgba(10, 9, 8, 0.1) 76%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(500px, 48vw);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  font-weight: 700;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 460px;
  margin: 20px 0 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.price-panel {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 2px 12px;
  width: fit-content;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.price-panel span,
.price-panel em {
  grid-column: 1 / -1;
}

.price-panel span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.price-panel strong {
  font-size: 2.25rem;
  line-height: 1;
}

.price-panel del {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.price-panel em {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.button-primary,
.button-submit {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(167, 25, 37, 0.32);
}

.button-primary:hover,
.button-submit:hover {
  background: var(--red-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--charcoal);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.conversion-strip div {
  min-height: 94px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px;
  text-align: center;
  background: var(--paper);
}

.conversion-strip strong {
  color: var(--red);
  font-size: 1.2rem;
}

.conversion-strip span {
  color: var(--muted);
}

.section {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.benefits-copy p:not(.eyebrow),
.video-copy p,
.order-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.style-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(62, 39, 24, 0.08);
}

.style-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  background: var(--paper-strong);
}

.style-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.style-number {
  color: var(--gold);
  font-weight: 900;
}

.style-copy p {
  margin: 0;
  color: var(--muted);
}

.benefits-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-list article {
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-weight: 900;
}

.benefit-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.occasion-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--red-dark);
  background: var(--white);
  font-weight: 900;
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.gift-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gift-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.gift-copy {
  max-width: 620px;
}

.gift-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.gift-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 26px;
  list-style: none;
}

.gift-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
}

.gift-list li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

[dir="rtl"] .gift-list li {
  padding-right: 24px;
  padding-left: 0;
}

[dir="rtl"] .gift-list li::before {
  right: 0;
  left: auto;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(270px, 390px) 1fr;
  gap: 42px;
  align-items: center;
}

.video-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-copy {
  max-width: 580px;
}

.gallery-section {
  border-top: 1px solid var(--line);
}

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

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 10px 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(17, 16, 15, 0.68);
  font-weight: 800;
}

.order-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 36px;
  align-items: start;
  padding: 88px max(18px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background:
    linear-gradient(rgba(17, 16, 15, 0.9), rgba(17, 16, 15, 0.9)),
    url("assets/meta-creative.webp") center / cover;
}

.order-copy {
  max-width: 560px;
}

.order-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
}

.order-summary div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.order-summary span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(167, 25, 37, 0.16);
}

.button-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.is-success {
  color: #287342;
}

.form-status.is-error {
  color: var(--red);
}

.thank-you-message {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(40, 115, 66, 0.22);
  border-radius: var(--radius);
  color: #194c2b;
  background: #eef8f1;
}

.thank-you-message[hidden] {
  display: none;
}

.thank-you-message strong {
  font-size: 1.06rem;
}

.thank-you-message p {
  margin: 0;
  color: #2d6540;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

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

.faq-list summary {
  padding: 18px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 5vw 34px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
}

.site-footer div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-sticky-cta {
  position: fixed;
  inset: auto 22px 22px auto;
  z-index: 30;
  display: grid;
  min-height: 52px;
  min-width: 220px;
  place-items: center;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 40px rgba(20, 10, 8, 0.28);
  font-weight: 900;
}

html[dir="rtl"] body {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.78) 38%, rgba(10, 9, 8, 0.1) 76%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0) 36%);
}

html[dir="rtl"] .hero-content {
  margin-inline-start: auto;
  text-align: right;
}

html[dir="rtl"] .site-header {
  direction: rtl;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-content {
    width: min(520px, 60vw);
  }

  .hero-img-red {
    right: 12%;
  }

  .hero-img-white {
    right: -10%;
  }

  .hero-img-black {
    right: -26%;
  }

  .style-grid,
  .benefits-section,
  .gift-section,
  .video-section,
  .faq-section,
  .order-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 10px 14px;
    background: rgba(15, 12, 10, 0.54);
  }

  .brand {
    font-size: 1.05rem;
  }

  .lang-button {
    min-width: 70px;
    padding: 6px 8px;
  }

  .hero {
    min-height: 86svh;
    align-items: flex-end;
    padding: 88px 18px 76px;
  }

  .hero-img-red {
    right: auto;
    left: 44%;
    height: 76%;
    bottom: 8%;
    transform: translateX(-50%);
  }

  .hero-img-white {
    right: -34%;
    height: 54%;
    bottom: 4%;
    opacity: 0.74;
  }

  .hero-img-black {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 10, 9, 0.54) 0%, rgba(11, 10, 9, 0.18) 38%, rgba(11, 10, 9, 0.94) 100%),
      linear-gradient(90deg, rgba(11, 10, 9, 0.82) 0%, rgba(11, 10, 9, 0.05) 72%);
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: 3.08rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

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

  .conversion-strip {
    grid-template-columns: 1fr;
  }

  .conversion-strip div {
    min-height: 76px;
  }

  .section {
    width: min(100% - 28px, var(--container));
    padding: 62px 0;
  }

  .style-grid,
  .benefit-list,
  .gallery-grid,
  .form-row,
  .order-summary {
    grid-template-columns: 1fr;
  }

  .benefit-list article {
    min-height: 0;
  }

  .video-section {
    gap: 26px;
  }

  .gift-section {
    gap: 24px;
  }

  .video-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .order-section {
    padding: 64px 14px 76px;
  }

  .order-form {
    padding: 16px;
  }

  #orderForm {
    scroll-margin-top: 142px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 82px;
  }

  .mobile-sticky-cta {
    inset: auto 12px 12px;
    min-width: 0;
    padding: 0 12px;
  }

  html[dir="rtl"] .hero-content {
    text-align: right;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.76rem;
  }

  .hero-img-red {
    left: 49%;
    height: 72%;
  }

  .hero-img-white {
    right: -46%;
  }
}
