:root {
  --bg: #f4ede1;
  --bg-deep: #e4d2b5;
  --card: rgba(255, 250, 241, 0.84);
  --card-strong: rgba(255, 247, 232, 0.94);
  --text: #22170f;
  --muted: #6c5a49;
  --line: rgba(67, 45, 23, 0.12);
  --accent: #8b5e34;
  --accent-deep: #5c3d23;
  --shadow: 0 24px 80px rgba(58, 33, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 30%),
    radial-gradient(circle at right 20%, rgba(203, 170, 121, 0.22), transparent 24%),
    linear-gradient(160deg, #f8f1e6 0%, #efdfc4 48%, #e1c69c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(rgba(90, 63, 33, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 63, 33, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.64);
  border: 1px solid rgba(95, 61, 28, 0.1);
  box-shadow: 0 10px 24px rgba(78, 44, 20, 0.08);
}

.lang-button {
  min-width: 46px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-button.is-active {
  background: linear-gradient(135deg, #6c4524, #9f6a36);
  color: #fff8ef;
  box-shadow: 0 10px 20px rgba(93, 57, 27, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #7a522f, #af7b44);
  color: #fff8ee;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(78, 44, 20, 0.24);
}

.brand-name,
.nav-link,
.eyebrow,
.point span,
.hero-text,
.section-copy p,
.field span,
.field small,
.form-note,
.detail-list dt,
.detail-list dd,
.trust-card p,
.info-strip p {
  letter-spacing: -0.02em;
}

.brand-name,
.nav-link {
  font-weight: 700;
}

.nav-link,
.primary-link,
.checkout-button {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-link {
  color: var(--text);
}

.hero {
  padding: 6px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.order-form,
.trust-card,
.info-strip,
.section-copy {
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-card,
.order-form,
.trust-card {
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 251, 245, 0.86), rgba(250, 237, 214, 0.8));
  animation: rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.94;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

.hero-text,
.section-copy p,
.trust-card p,
.info-strip p,
.field input,
.field textarea,
.form-note {
  font-size: 1rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 55ch;
  margin: 20px 0 26px;
  color: var(--muted);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.point {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 249, 240, 0.7);
  border: 1px solid rgba(91, 56, 29, 0.08);
}

.point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.point span,
.detail-list dt,
.form-note,
.checkout-label {
  color: var(--muted);
}

.primary-link,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.primary-link {
  min-height: 52px;
  padding: 0 22px;
  color: #fff8ef;
  background: linear-gradient(135deg, #6c4524, #9f6a36);
  box-shadow: 0 12px 26px rgba(93, 57, 27, 0.26);
}

.primary-link:hover,
.checkout-button:hover {
  transform: translateY(-1px);
}

.hero-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(100, 67, 36, 0.92), rgba(58, 39, 24, 0.96));
  color: #fff7ed;
  animation: rise 900ms ease both;
}

.card-glow {
  position: absolute;
  inset: auto -10% 74% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 191, 124, 0.5), transparent 65%);
  filter: blur(12px);
}

.card-label {
  position: relative;
  margin: 0 0 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 242, 224, 0.8);
}

.note-preview {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.96), rgba(245, 228, 202, 0.9));
  min-height: 250px;
  margin-bottom: 22px;
  transform: rotate(-2deg);
}

.note-line {
  height: 2px;
  border-radius: 999px;
  background: rgba(81, 50, 20, 0.3);
}

.note-line.short {
  width: 62%;
}

.note-line.medium {
  width: 78%;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 241, 221, 0.14);
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-list dt,
.detail-list dd {
  margin: 0;
}

.detail-list dd {
  text-align: right;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  margin: 26px 0 34px;
  border-radius: 28px;
  background: rgba(255, 249, 240, 0.64);
  border: 1px solid rgba(95, 61, 28, 0.08);
}

.info-strip div {
  padding: 12px 14px;
}

.strip-value {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(110, 74, 36, 0.1);
  color: var(--accent-deep);
  font-weight: 800;
}

.order-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
  margin-top: 10px;
}

.section-copy {
  padding: 16px 8px;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin-bottom: 14px;
}

.section-copy p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: 30px;
  background: var(--card-strong);
}

.field {
  display: grid;
  gap: 8px;
}

.field-large,
.checkout-box,
.form-note {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(84, 57, 31, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--text);
  font-family: inherit;
  resize: vertical;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(124, 82, 42, 0.46);
  box-shadow: 0 0 0 4px rgba(159, 106, 54, 0.12);
}

.field small {
  color: var(--muted);
}

.checkout-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(243, 231, 211, 0.8);
  border: 1px solid rgba(101, 69, 36, 0.08);
}

.checkout-label {
  margin: 0 0 4px;
  font-size: 0.9rem;
}

.checkout-box strong {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.checkout-button {
  min-width: 220px;
  min-height: 54px;
  padding: 0 20px;
  color: #fff8ef;
  background: linear-gradient(135deg, #6a4221, #a3703d);
  box-shadow: 0 12px 24px rgba(92, 57, 28, 0.22);
}

.checkout-button:disabled {
  cursor: wait;
  opacity: 0.84;
}

.form-note {
  margin: 0;
}

.form-note.is-hidden {
  display: none;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.trust-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.72);
}

.trust-card.soft {
  background: rgba(106, 72, 39, 0.92);
  color: #fff9f1;
}

.trust-card.soft .eyebrow,
.trust-card.soft p {
  color: rgba(255, 241, 222, 0.86);
}

h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .order-section,
  .trust-section,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .order-form {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy,
  .hero-card,
  .order-form,
  .trust-card {
    padding: 22px;
    border-radius: 24px;
  }

  .checkout-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-button {
    width: 100%;
    min-width: 0;
  }
}
