:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 252, 247, 0.92);
  --surface-strong: #fffdf9;
  --ink: #181513;
  --ink-soft: #6b6258;
  --gold: #b99760;
  --gold-deep: #87643a;
  --line: rgba(135, 100, 58, 0.14);
  --shadow: 0 20px 44px rgba(43, 30, 16, 0.08);
  --shadow-strong: 0 24px 56px rgba(24, 18, 12, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
  --dark: #171310;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Alexandria", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f2eb 0%, #f2ebe1 55%, #eee6dc 100%);
  line-height: 1.85;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(110deg, rgba(205, 181, 141, 0.08), transparent 24%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.16), transparent 30%);
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  padding: 1rem 0 2rem;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "nav brand actions";
  align-items: center;
  gap: 0.8rem;
  padding: 0.82rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.9);
  box-shadow: 0 12px 26px rgba(79, 58, 30, 0.06);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 252, 247, 0.98);
}

.brand-lockup {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-self: center;
}

.brand-lockup__logo {
  width: 4.5rem;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(132, 95, 43, 0.16));
}

.site-header__actions {
  grid-area: actions;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: stretch;
  gap: 0.65rem;
}

.site-nav {
  grid-area: nav;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  justify-self: stretch;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(135, 100, 58, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 229, 0.88)),
    rgba(255, 252, 247, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(63, 45, 19, 0.05);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  transform: translateY(-1px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(249, 241, 229, 0.96)),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(185, 151, 96, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(63, 45, 19, 0.08);
  color: var(--ink);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(79, 58, 30, 0.06);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(185, 151, 96, 0.28);
  outline: none;
}

.theme-toggle__glyph {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, #fff8df 0%, #f4d488 42%, #d29f4e 100%);
  box-shadow:
    0 0 0 3px rgba(194, 160, 108, 0.14),
    inset -0.18rem -0.18rem 0.25rem rgba(134, 85, 28, 0.16);
  flex-shrink: 0;
}

.theme-toggle__label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

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

.button--primary {
  color: #1c140d;
  background: #c2a06c;
  box-shadow: 0 12px 24px rgba(142, 101, 47, 0.12);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
  color: var(--ink);
}

.button--dark {
  background: var(--dark);
  color: #f3e7d4;
  box-shadow: 0 12px 24px rgba(24, 18, 12, 0.14);
}

.floating-whatsapp {
  position: fixed;
  inset-inline-start: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.92rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #23c35f, #168948);
  color: #fff;
  box-shadow: 0 18px 34px rgba(18, 101, 50, 0.24);
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100svh - 10rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135, 100, 58, 0.74));
}

.hero h1,
.section-heading h2,
.order-panel h2,
.contact-card h3 {
  font-family: "Noto Naskh Arabic", serif;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 0.35rem;
  max-width: 32rem;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.12;
}

.hero__title-line,
.hero__title-subline {
  display: block;
}

.hero__title-subline {
  color: var(--gold-deep);
  font-size: 0.54em;
  line-height: 1.3;
}

.hero__summary,
.contact-card p,
.contact-card a,
.site-footer__copy,
.order-panel p {
  color: var(--ink-soft);
}

.hero__summary {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.04rem;
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.7rem 0 0;
}

.hero__highlights {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.hero__brand-note {
  max-width: 38rem;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(185, 151, 96, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(248, 240, 227, 0.8)),
    var(--surface);
  box-shadow: 0 18px 34px rgba(55, 39, 17, 0.06);
}

.hero__brand-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.96rem;
}

.hero__brand-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero__links a,
.identity-board,
.contact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 242, 0.76)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero__links a {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.hero__links strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero__links span[dir="ltr"],
.contact-card a[dir="ltr"] {
  white-space: nowrap;
}

.hero__media {
  display: grid;
  justify-items: end;
}

.hero__image {
  margin: 0;
  padding: 0.9rem;
  width: min(100%, 36rem);
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-strong);
}

.hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 896 / 1152;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.hero__image--editorial {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 226, 0.88)),
    var(--surface-strong);
}

.hero__image-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem 1.2rem;
  border-radius: 0 0 calc(var(--radius-xl) + 2px) calc(var(--radius-xl) + 2px);
  background: linear-gradient(180deg, rgba(15, 12, 9, 0.18), rgba(15, 12, 9, 0.88));
  color: #f5ead8;
  font-size: 0.9rem;
  line-height: 1.7;
  backdrop-filter: blur(12px);
}

.home-values {
  padding-top: 1.1rem;
}

.home-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-value-card,
.home-editorial__panel,
.home-editorial__item {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(251, 244, 234, 0.8)),
    var(--surface);
  box-shadow: var(--shadow);
}

.home-value-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 1.3rem;
  border-radius: 26px;
}

.home-value-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(185, 151, 96, 0.12);
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-value-card strong,
.home-editorial__item strong {
  font-family: "Noto Naskh Arabic", serif;
  font-size: 1.35rem;
  line-height: 1.3;
}

.home-value-card p,
.home-editorial__copy p,
.home-editorial__item span {
  margin: 0;
  color: var(--ink-soft);
}

.home-editorial__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.1rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: calc(var(--radius-xl) + 2px);
}

.home-editorial__copy h2 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.28;
}

.home-editorial__copy .eyebrow {
  margin-bottom: 1.3rem;
}

.home-editorial__copy p:last-child {
  margin-top: 0.9rem;
}

.home-editorial__list {
  display: grid;
  gap: 0.85rem;
}

.home-editorial__item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
}

.identity {
  padding-top: 1rem;
}

.identity-board {
  margin: 0 auto;
  padding: 0.9rem;
  width: min(100%, 48rem);
  border-radius: calc(var(--radius-xl) + 2px);
}

.identity-board img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading h2,
.order-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.24;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(185, 151, 96, 0.18);
  background: linear-gradient(135deg, #28231f 0%, #16110e 100%);
  box-shadow: 0 22px 46px rgba(22, 17, 12, 0.14);
}

.order-panel__copy h2,
.order-panel__copy p,
.order-panel .eyebrow {
  color: #f5ead8;
}

.order-panel .eyebrow::before {
  background: linear-gradient(90deg, transparent, rgba(245, 234, 216, 0.68));
}

.order-panel__copy p {
  max-width: 38rem;
  opacity: 0.82;
}

.order-panel__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.ambassador-teaser {
  padding-top: 0.8rem;
}

.ambassador-teaser__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(185, 151, 96, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 239, 226, 0.84)),
    var(--surface);
  box-shadow: var(--shadow);
}

.ambassador-teaser__copy h2 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.32;
}

.ambassador-teaser__copy p:last-child {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  color: var(--ink-soft);
}

.ambassador-teaser__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.ambassador {
  padding-top: 0.6rem;
}

.ambassador__banner,
.ambassador__form-wrap {
  border: 1px solid rgba(185, 151, 96, 0.18);
  box-shadow: var(--shadow);
}

.ambassador__banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, #1f1915 0%, #2d2219 100%);
  color: #f4e8d3;
}

.ambassador__intro h2 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.22;
  color: #fff8ed;
}

.ambassador__banner .eyebrow {
  color: #e3c28a;
}

.ambassador__banner .eyebrow::before {
  background: linear-gradient(90deg, transparent, rgba(227, 194, 138, 0.7));
}

.ambassador__intro p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(245, 234, 216, 0.84);
}

.ambassador__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.ambassador__highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #f8e9d5;
  font-weight: 600;
}

.ambassador__perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.ambassador__perk {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ambassador__perk strong {
  font-family: "Noto Naskh Arabic", serif;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #fff3df;
}

.ambassador__perk p {
  margin: 0;
  color: rgba(245, 234, 216, 0.78);
  line-height: 1.8;
}

.ambassador__form-wrap {
  margin-top: 1rem;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.93), rgba(249, 241, 232, 0.86));
}

.ambassador__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.ambassador-panel {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.2rem, 2.5vw, 1.55rem);
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(185, 151, 96, 0.16);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(248, 239, 226, 0.86)),
    var(--surface);
  box-shadow: var(--shadow);
}

.ambassador-panel h3 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.35;
}

.ambassador-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambassador-list li {
  color: var(--ink-soft);
  line-height: 1.85;
}

.ambassador-list strong {
  color: var(--ink);
}

.ambassador__form-head h3 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
}

.ambassador__form-head p {
  max-width: 48rem;
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.ambassador-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.ambassador-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.ambassador-form__grid .field--span-full {
  grid-column: 1 / -1;
}

.ambassador-form .field--wide {
  width: 100%;
}

.ambassador-form .field--wide textarea {
  min-height: 8rem;
}

.ambassador-form__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.ambassador-form__actions .button {
  min-width: 13.5rem;
}

.ambassador-field.is-hidden {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(185, 151, 96, 0.1);
  border: 1px solid rgba(185, 151, 96, 0.18);
}

.contact-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.contact-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.55rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(185, 151, 96, 0.12);
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.contact-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.5rem;
}

.contact-card a {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.site-footer__brand img {
  width: 4.25rem;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(132, 95, 43, 0.14));
}

.site-footer__meta {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.92rem;
}

[data-parallax]:not(.reveal) {
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .order-panel,
  .home-editorial__panel,
  .ambassador-teaser__panel,
  .ambassador__banner {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "actions";
    justify-items: center;
  }

  .site-nav,
  .site-header__actions {
    justify-self: center;
  }

  .site-header__actions {
    justify-content: center;
  }

  .site-nav a {
    padding: 0.52rem 0.76rem;
    font-size: 0.89rem;
  }

  .hero {
    min-height: auto;
  }

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

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

  .ambassador__perks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 1.25rem;
  }

  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .site-header {
    position: static;
    top: auto;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "nav brand actions";
    align-items: center;
    justify-items: stretch;
    gap: 0.7rem;
    padding: 0.68rem 0.72rem;
    margin-bottom: 0.8rem;
    border-radius: 18px;
  }

  .brand-lockup {
    grid-area: brand;
    width: auto;
    justify-content: center;
  }

  .site-header__actions {
    grid-area: actions;
    justify-self: center;
    width: auto;
    justify-content: center;
  }

  .theme-toggle {
    width: 2.85rem;
    min-height: 2.85rem;
    padding: 0;
    border-radius: 16px;
  }

  .theme-toggle__glyph {
    width: 1.1rem;
    height: 1.1rem;
  }

  .theme-toggle__label {
    display: none;
  }

  .brand-lockup__logo {
    width: 2.85rem;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.34rem;
    justify-content: stretch;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 2.45rem;
    padding: 0.4rem 0.3rem;
    border-radius: 14px;
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    background: rgba(255, 255, 255, 0.6);
  }

  .site-header__actions > .button {
    display: none;
  }

  .hero__actions .button,
  .order-panel__actions .button,
  .ambassador-teaser__actions .button {
    width: 100%;
  }

  .hero__actions,
  .order-panel__actions,
  .ambassador-teaser__actions {
    flex-direction: column;
  }

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

  .home-values__grid {
    grid-template-columns: 1fr;
  }

  .home-value-card,
  .home-editorial__item {
    padding: 1rem;
    border-radius: 20px;
  }

  .home-editorial__panel {
    padding: 1rem;
    border-radius: 24px;
  }

  .ambassador__banner {
    padding: 1rem;
    border-radius: 24px;
  }

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

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

  .ambassador__intro h2 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .ambassador__form-wrap {
    padding: 1rem;
    border-radius: 24px;
  }

  .ambassador-form__grid {
    grid-template-columns: 1fr;
  }

  .ambassador-form__grid .field--span-full {
    grid-column: auto;
  }

  .ambassador-form__actions .button {
    width: 100%;
  }

  .home-editorial__copy h2 {
    font-size: clamp(1.6rem, 6vw, 2.15rem);
  }

  .hero__image-caption {
    inset-inline: 0;
    bottom: 0;
    margin-top: 0;
    padding: 0.85rem 1rem;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, rgba(15, 12, 9, 0.15), rgba(15, 12, 9, 0.9));
    color: #f5ead8;
    font-size: 0.88rem;
    line-height: 1.8;
    backdrop-filter: blur(10px);
  }

  .hero__brand-note {
    margin-top: 1rem;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
  }

  .hero__brand-note p {
    font-size: 0.88rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .contact-card {
    display: grid;
    gap: 0.45rem;
    padding: 0.9rem 0.75rem;
    border-radius: 18px;
    text-align: center;
  }

  .contact-card__icon {
    width: 2.2rem;
    height: 2.2rem;
    margin: 0 auto 0.15rem;
  }

  .contact-card__icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .contact-card__tag {
    margin: 0 auto 0.1rem;
    padding: 0.2rem 0.48rem;
    font-size: 0.6rem;
  }

  .contact-card h3 {
    margin: 0;
    font-size: 1rem;
  }

  .contact-card a {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .contact-card p {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5rem;
  }

  .floating-whatsapp {
    inset-inline-start: 0.75rem;
    bottom: 0.75rem;
  }

  .subpage--blend .page-hero {
    gap: 1rem;
    padding-top: 1rem;
    min-height: auto;
  }

  .subpage--blend .page-hero__copy h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.22;
  }

  .subpage--blend .page-hero__summary {
    margin-top: 0.8rem;
    font-size: 0.92rem;
  }

  .subpage--blend .page-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1.15rem;
  }

  .subpage--blend .metric-card {
    padding: 0.78rem 0.45rem;
    border-radius: 18px;
    text-align: center;
  }

  .subpage--blend .metric-card strong {
    font-size: 1.18rem;
  }

  .subpage--blend .metric-card span {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .subpage--blend .page-hero__media {
    justify-items: stretch;
  }

  .subpage--blend .showcase-card {
    width: 100%;
    padding: 0.55rem;
    border-radius: 24px;
  }

  .subpage--blend .showcase-card figcaption {
    display: none;
  }

  .subpage--blend .section--tight {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
  }

  .subpage--blend .blend-layout,
  .subpage--blend .blend-workspace {
    gap: 0.85rem;
  }

  .subpage--blend .builder-surface,
  .subpage--blend .blend-summary,
  .subpage--blend .invoice-preview {
    padding: 1rem;
    border-radius: 24px;
  }

  .subpage--blend .builder-head {
    margin-bottom: 0.85rem;
  }

  .subpage--blend .builder-head h2,
  .subpage--blend .blend-summary h2,
  .subpage--blend .invoice-preview__head h2 {
    font-size: clamp(1.35rem, 5.6vw, 1.75rem);
    line-height: 1.35;
  }

  .subpage--blend .builder-head--split {
    gap: 0.75rem;
  }

  .subpage--blend .builder-head--split .button {
    min-height: 3rem;
    padding: 0.78rem 1rem;
  }

  .subpage--blend .bottle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .subpage--blend .bottle-card {
    gap: 0.45rem;
    padding: 0.45rem 0.35rem 0.55rem;
    border-radius: 18px;
  }

  .subpage--blend .bottle-card__photo-frame {
    border-radius: 15px;
  }

  .subpage--blend .bottle-card__copy strong {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .subpage--blend .bottle-card__copy small {
    display: none;
  }

  .subpage--blend .finish-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .subpage--blend .size-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .subpage--blend .finish-pill,
  .subpage--blend .size-pill {
    min-width: 0;
    padding: 0.72rem 0.45rem;
    border-radius: 16px;
  }

  .subpage--blend .finish-pill strong,
  .subpage--blend .size-pill strong {
    font-size: 0.88rem;
  }

  .subpage--blend .finish-pill span:last-child,
  .subpage--blend .size-pill span {
    font-size: 0.7rem;
  }

  .subpage--blend .finish-swatch {
    width: 1.45rem;
    height: 1.45rem;
  }

  .subpage--blend .quantity-panel {
    max-width: none;
    margin-top: 0.85rem;
  }

  .subpage--blend .quantity-stepper {
    grid-template-columns: 2.8rem minmax(0, 1fr) 2.8rem;
    gap: 0.4rem;
  }

  .subpage--blend .quantity-stepper__button,
  .subpage--blend .quantity-stepper input {
    min-height: 3rem;
    border-radius: 16px;
  }

  .subpage--blend .quantity-stepper__button {
    font-size: 1.1rem;
  }

  .subpage--blend .mix-row {
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .subpage--blend .mix-row__scent {
    gap: 0.42rem;
  }

  .subpage--blend .mix-row__picker {
    border-radius: 18px;
  }

  .subpage--blend .mix-row__picker .mix-row__search,
  .subpage--blend .mix-row__picker select {
    min-height: 3rem;
  }

  .subpage--blend .mix-row__selection,
  .subpage--blend .mix-row__results {
    padding-inline: 0.82rem;
  }

  .subpage--blend .mix-row__suggestion {
    padding: 0.68rem 0.72rem;
  }

  .subpage--blend .mix-row__remove {
    width: 100%;
    padding: 0.76rem 0.9rem;
    border-radius: 16px;
  }

.subpage--blend .auto-fill-card {
  padding: 1rem;
  border-radius: 22px;
}

.subpage--blend .auto-fill-card__value {
  margin-top: 0.7rem;
  font-size: 2rem;
}

.subpage--blend .auto-fill-card--minimal .auto-fill-card__value {
  margin-top: 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

  .subpage--blend .field input,
  .subpage--blend .field select,
  .subpage--blend .field textarea {
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
  }

  .subpage--blend .field textarea {
    min-height: 5.5rem;
  }

  .subpage--blend .status-text {
    padding: 0.82rem 0.9rem;
    font-size: 0.9rem;
  }

  .subpage--blend .summary-list,
  .subpage--blend .pricing-total,
  .subpage--blend .mix-breakdown {
    gap: 0.6rem;
  }

  .subpage--blend .mix-breakdown__item {
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
  }

  .subpage--blend .blend-summary__actions {
    gap: 0.6rem;
  }

  .subpage--blend .blend-summary__actions .button {
    min-height: 3.05rem;
  }
}

.subpage .page-shell {
  padding-bottom: 2.5rem;
}

.section--tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100svh - 12rem);
}

.page-hero--single {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}

.page-hero--single .page-hero__copy {
  max-width: 100%;
}

.page-hero--single .page-hero__summary {
  max-width: 52rem;
}

.page-hero__summary {
  max-width: 38rem;
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.page-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.metric-card,
.price-card,
.builder-surface,
.blend-summary,
.showcase-card,
.auto-fill-card,
.stat-card,
.empty-state {
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 242, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 1.15rem 1rem;
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--ink);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.subpage--blend .page-metrics .metric-card strong {
  font-family: "Alexandria", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

#price-count {
  font-family: "Alexandria", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

#price-range {
  font-family: "Alexandria", sans-serif;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 5.6rem;
  font-size: clamp(1.8rem, 4.3vw, 2.7rem);
  line-height: 1.35;
  direction: ltr;
  text-align: center;
  color: var(--ink);
}

.metric-card__range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow-wrap: anywhere;
}

.metric-card__range + .metric-card__range {
  margin-top: 0.52rem;
}

.metric-card__range-value {
  display: inline-block;
  font-weight: 700;
}

.metric-card__range-value--secondary {
  color: var(--ink);
}

.metric-card__range-separator {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.metric-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-hero__media {
  display: grid;
  justify-items: end;
}

.showcase-card {
  margin: 0;
  width: min(100%, 34rem);
  padding: 0.9rem;
  border-radius: calc(var(--radius-xl) + 2px);
}

.showcase-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 896 / 1152;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.showcase-card figcaption {
  padding: 0.95rem 0.4rem 0.1rem;
  color: var(--ink-soft);
  text-align: center;
}

.pricing-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field span {
  color: var(--ink);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(135, 100, 58, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(185, 151, 96, 0.75);
  box-shadow: 0 0 0 4px rgba(185, 151, 96, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field-hint {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.field-hint.is-valid {
  color: #2d5b32;
}

.field-hint.is-error {
  color: #a04634;
}

.field--search input {
  min-height: 3.6rem;
}

.field--compact {
  min-width: 10rem;
}

.quantity-panel {
  max-width: 24rem;
  margin-top: 1rem;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 3.25rem;
  gap: 0.55rem;
  align-items: center;
}

.quantity-stepper input {
  text-align: center;
  font-weight: 700;
}

.quantity-stepper__button {
  min-height: 3.45rem;
  border: 1px solid rgba(135, 100, 58, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.quantity-stepper__button:hover,
.quantity-stepper__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(185, 151, 96, 0.42);
  background: rgba(244, 235, 220, 0.94);
}

.price-filter-group {
  display: grid;
  gap: 0.7rem;
}

.price-filter-group > span {
  font-weight: 600;
}

.price-filter-select-wrap {
  min-width: 0;
}

.price-filter-select {
  display: grid;
  gap: 0.45rem;
}

.price-filter-select > span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.price-filter-select select {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(135, 100, 58, 0.16);
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  font: inherit;
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
  font-variant-numeric: tabular-nums;
}

.price-filter-select select:focus-visible {
  outline: none;
  border-color: rgba(185, 151, 96, 0.38);
  box-shadow: 0 0 0 4px rgba(226, 208, 176, 0.22);
}

.price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.muted-note {
  margin: 0;
  color: var(--ink-soft);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 0.85rem;
}

.price-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(214, 186, 136, 0.38), rgba(255, 249, 239, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 227, 0.88));
  min-width: 0;
  overflow: hidden;
}

.price-card h3,
.builder-surface h2,
.blend-summary h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.3;
}

.price-card p {
  margin: 0;
  color: var(--ink-soft);
}

.price-card > * {
  min-width: 0;
}

.price-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  overflow-wrap: anywhere;
}

.price-card__english {
  margin: -0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.price-card__details {
  display: grid;
  gap: 0.45rem;
  padding: 0.78rem 0.82rem;
  border-radius: 16px;
  border: 1px solid rgba(135, 100, 58, 0.12);
  background: rgba(255, 248, 235, 0.68);
}

.price-card__detail {
  display: grid;
  gap: 0.12rem;
}

.price-card__detail-label {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.price-card__detail-value {
  color: var(--gold-deep);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.price-card__details strong {
  margin: 0;
  font-weight: 700;
}

.price-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  margin-top: auto;
  align-items: stretch;
}

.price-card__footer > div {
  min-width: 0;
}

.price-card__caption {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.price-card__price {
  display: block;
  margin-top: 0.45rem;
  overflow-wrap: anywhere;
}

.price-card__price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.4rem;
}

.price-card__price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 2.45rem;
  padding: 0.45rem 0.62rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(135, 100, 58, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.price-card__price-pill--usd {
  color: var(--ink);
}

.price-card__price-pill--syp {
  color: var(--gold-deep);
  background: rgba(248, 239, 223, 0.95);
  border-color: rgba(185, 151, 96, 0.18);
}

.price-card__price-equals {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-card__action {
  width: 100%;
  white-space: normal;
  padding: 0.74rem 1rem;
  font-size: 0.92rem;
  text-align: center;
  overflow-wrap: anywhere;
}

.empty-state {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state p,
.empty-state strong {
  display: block;
}

.empty-state p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.empty-state--compact {
  padding: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.8rem, 4vw, 2.4rem);
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(185, 151, 96, 0.2);
  background: linear-gradient(135deg, #28231f 0%, #16110e 100%);
  box-shadow: 0 22px 46px rgba(22, 17, 12, 0.14);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #f5ead8;
}

.cta-panel .eyebrow::before {
  background: linear-gradient(90deg, transparent, rgba(245, 234, 216, 0.68));
}

.cta-panel p {
  max-width: 38rem;
  margin: 0.7rem 0 0;
  opacity: 0.82;
}

.cta-panel__actions,
.blend-summary__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.blend-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 1.2rem;
  align-items: start;
}

.blend-workspace {
  display: grid;
  gap: 1rem;
}

.builder-surface,
.blend-summary {
  padding: clamp(1.4rem, 3vw, 1.8rem);
  border-radius: calc(var(--radius-xl) + 2px);
}

.builder-head {
  margin-bottom: 1.25rem;
}

.blend-builder .builder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(135, 100, 58, 0.1);
}

.blend-builder .builder-head > div {
  max-width: 34rem;
}

.builder-head--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bottle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bottle-card {
  display: grid;
  gap: 1rem;
  padding: 0.9rem 0.9rem 1rem;
  border-radius: 28px;
  border: 1px solid rgba(135, 100, 58, 0.14);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.95), rgba(245, 236, 225, 0.88));
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.bottle-card:hover,
.bottle-card:focus-visible,
.bottle-card.is-selected {
  transform: translateY(-3px);
  border-color: rgba(185, 151, 96, 0.45);
  box-shadow: 0 18px 32px rgba(76, 55, 27, 0.12);
}

.bottle-card__photo-frame {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(135, 100, 58, 0.1);
}

.bottle-card__photo {
  display: block;
  width: 100%;
  height: auto;
}

.bottle-card[data-bottle-id="orb"] .bottle-card__photo-frame,
.bottle-card[data-bottle-id="atelier"] .bottle-card__photo-frame {
  background: #ffffff;
  border-color: rgba(214, 204, 188, 0.9);
}

.bottle-card[data-bottle-id="orb"] .bottle-card__photo,
.bottle-card[data-bottle-id="atelier"] .bottle-card__photo {
  filter: brightness(1.12) contrast(1.01) saturate(0.97);
}

.bottle-card__visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  min-height: 14rem;
}

.bottle-card__cap {
  position: absolute;
  top: 0.9rem;
  width: 4.5rem;
  height: 3.5rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #2f2f2f, #121212);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(29, 21, 12, 0.18);
}

.bottle-card__glass {
  position: relative;
  display: grid;
  place-items: center;
  width: 72%;
  min-height: 10.6rem;
  margin-top: 2.8rem;
  border: 1px solid rgba(180, 160, 128, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 18px 30px rgba(80, 59, 31, 0.12);
  overflow: hidden;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.bottle-card__glass::before {
  content: "";
  position: absolute;
  inset: 8% auto 16% 13%;
  width: 17%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  border-radius: 999px;
  opacity: 0.7;
}

.bottle-card__glass img {
  width: 34%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(135, 100, 58, 0.18));
}

.bottle-card__visual.is-clear .bottle-card__glass {
  border-color: rgba(176, 160, 135, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 221, 209, 0.5)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(206, 183, 150, 0.16));
}

.bottle-card__visual.is-black .bottle-card__glass {
  border-color: rgba(44, 44, 44, 0.55);
  background:
    linear-gradient(180deg, rgba(49, 49, 49, 0.98), rgba(14, 14, 14, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 30px rgba(17, 13, 8, 0.2);
}

.bottle-card__visual.is-black .bottle-card__glass::before {
  opacity: 0.24;
}

.bottle-visual--orb .bottle-card__cap {
  top: 0.1rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.bottle-visual--orb .bottle-card__glass {
  width: 64%;
  min-height: 11rem;
  border-radius: 26px 26px 24px 24px;
}

.bottle-visual--stone .bottle-card__cap {
  top: 0.4rem;
  width: 4.4rem;
  height: 4rem;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(145deg, #dfc487, #aa8147);
  box-shadow:
    inset 0 1px 1px rgba(255, 245, 220, 0.72),
    0 10px 18px rgba(96, 67, 29, 0.18);
}

.bottle-visual--stone .bottle-card__glass {
  width: 77%;
  min-height: 11.2rem;
  border-radius: 24px;
}

.bottle-visual--atelier .bottle-card__cap {
  top: 0.8rem;
  width: 5.2rem;
  height: 3.6rem;
  border-radius: 14px 14px 18px 18px;
}

.bottle-visual--atelier .bottle-card__glass {
  width: 68%;
  min-height: 11rem;
  border-radius: 34px 34px 18px 18px;
}

.bottle-visual--atelier .bottle-card__glass::after {
  content: "";
  position: absolute;
  inset: 16% 18% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 151, 96, 0.7), transparent);
}

.bottle-card__copy {
  display: grid;
  gap: 0.25rem;
  text-align: center;
}

.bottle-card__copy strong {
  font-size: 1rem;
}

.bottle-card__copy small {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.finish-selector,
.size-selector {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.finish-pill,
.size-pill {
  display: grid;
  gap: 0.1rem;
  min-width: 7.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(135, 100, 58, 0.16);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.94);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.finish-pill strong,
.size-pill strong {
  font-size: 1rem;
}

.finish-pill span:last-child,
.size-pill span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.finish-pill:hover,
.finish-pill:focus-visible,
.finish-pill.is-selected,
.size-pill:hover,
.size-pill:focus-visible,
.size-pill.is-selected {
  transform: translateY(-1px);
  border-color: rgba(185, 151, 96, 0.44);
  background: rgba(244, 235, 220, 0.94);
}

.finish-pill {
  align-items: center;
  justify-items: center;
  min-width: 8.8rem;
  text-align: center;
}

.finish-swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(135, 100, 58, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.finish-swatch.is-black {
  background: linear-gradient(145deg, #3c3c3c, #111111);
}

.finish-swatch.is-clear {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(226, 216, 204, 0.46)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(206, 183, 150, 0.16));
}

.mix-rows {
  display: grid;
  gap: 0.9rem;
}

.builder-surface--mix {
  display: grid;
  gap: 1rem;
}

.builder-surface--mix .builder-head {
  align-items: end;
}

.mix-row {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(112px, 0.42fr) auto;
  gap: 0.85rem;
  align-items: end;
  padding: 1.05rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(135, 100, 58, 0.12);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(249, 241, 230, 0.9)),
    rgba(255, 251, 245, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mix-row .field {
  min-width: 0;
}

.mix-row__scent {
  gap: 0.5rem;
}

.mix-row__picker {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(135, 100, 58, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(247, 239, 228, 0.92)),
    rgba(255, 252, 247, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 22px rgba(58, 40, 18, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mix-row__picker:focus-within {
  border-color: rgba(185, 151, 96, 0.75);
  box-shadow:
    0 0 0 4px rgba(185, 151, 96, 0.08),
    0 12px 28px rgba(58, 40, 18, 0.08);
}

.mix-row .field--compact {
  min-width: 0;
  width: 100%;
}

.mix-row .field select,
.mix-row .field input {
  min-height: 3.45rem;
}

.mix-row__picker select {
  display: none;
}

.mix-row__picker .mix-row__search,
.mix-row__picker select {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: 3.15rem;
}

.mix-row__picker .mix-row__search {
  padding-block-end: 0.78rem;
  border-bottom: 1px solid rgba(135, 100, 58, 0.12);
}

.mix-row__picker .mix-row__search:focus,
.mix-row__picker select:focus {
  box-shadow: none;
}

.mix-row__selection,
.mix-row__results {
  padding: 0.78rem 0.95rem 0.88rem;
}

.mix-row__selection {
  display: grid;
  gap: 0.18rem;
}

.mix-row__selection-label {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.mix-row__selection strong,
.mix-row__suggestion strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.mix-row__selection small,
.mix-row__suggestion span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

.mix-row__selection-empty,
.mix-row__empty {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.mix-row__results {
  display: none;
  gap: 0.45rem;
  padding-top: 0.88rem;
  border-top: 1px solid rgba(135, 100, 58, 0.12);
  background: rgba(255, 255, 255, 0.32);
}

.mix-row__picker.is-searching .mix-row__results {
  display: grid;
}

.mix-row__picker.is-searching .mix-row__selection {
  display: none;
}

.mix-row__suggestion {
  display: grid;
  gap: 0.12rem;
  width: 100%;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(135, 100, 58, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  text-align: right;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.mix-row__suggestion:hover,
.mix-row__suggestion:focus-visible,
.mix-row__suggestion.is-active {
  transform: translateY(-1px);
  border-color: rgba(185, 151, 96, 0.34);
  background: rgba(248, 239, 223, 0.96);
  outline: none;
}

.mix-row__empty {
  margin: 0;
}

.mix-row__search {
  direction: rtl;
  text-align: right;
}

.mix-row .field span {
  font-size: 0.92rem;
}

.mix-row__remove {
  border: 1px solid rgba(135, 100, 58, 0.14);
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  padding: 0.88rem 1rem;
  border-radius: 18px;
  cursor: pointer;
  align-self: stretch;
  white-space: nowrap;
}

.mix-row__remove:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.mix-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 1.1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(135, 100, 58, 0.12);
}

.customer-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  gap: 0.95rem;
}

.customer-fields__field {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(135, 100, 58, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 229, 0.9)),
    rgba(255, 252, 247, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 28px rgba(63, 45, 19, 0.05);
}

.customer-fields__field > span {
  font-size: 0.95rem;
}

.customer-fields__field input,
.customer-fields__field textarea {
  background: rgba(255, 255, 255, 0.82);
}

.customer-fields__field--name {
  min-width: 0;
}

.customer-fields__field--name .field-hint {
  font-size: 0.82rem;
}

.customer-fields__field input::placeholder,
.customer-fields__field textarea::placeholder {
  font-size: 0.86rem;
  color: rgba(86, 72, 52, 0.62);
}

.customer-fields > .field--wide {
  grid-column: 1 / -1;
}

#discount-code {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-tools {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.location-tools__button {
  padding-inline: 1.15rem;
}

#location-status[data-state="loading"] {
  color: var(--gold-deep);
}

#location-status[data-state="success"] {
  color: #2d5b32;
}

#location-status[data-state="error"] {
  color: #a04634;
}

.ai-suggestion {
  margin-top: 1rem;
}

.ai-suggestion--standalone {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
}

.ai-suggestion--standalone .ai-suggestion__card {
  padding: clamp(1.2rem, 2.6vw, 1.55rem);
  border-radius: calc(var(--radius-xl) - 2px);
}

.ai-suggestion__card {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(185, 151, 96, 0.2);
  background:
    linear-gradient(155deg, rgba(211, 183, 130, 0.22), rgba(255, 250, 241, 0.95)),
    rgba(255, 252, 247, 0.96);
  box-shadow: var(--shadow);
}

.ai-suggestion__card h3 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
}

.ai-suggestion__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.ai-suggestion__ratio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(185, 151, 96, 0.14);
  color: var(--gold-deep);
}

.ai-suggestion__reason,
.ai-suggestion__note {
  margin: 0;
  color: var(--ink-soft);
}

.ai-suggestion__formula {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.ai-suggestion__formula div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 248, 235, 0.75);
  border: 1px solid rgba(135, 100, 58, 0.1);
}

.ai-suggestion__formula span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.ai-suggestion__formula strong {
  font-size: 0.96rem;
}

.invoice-preview {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: calc(var(--radius-xl) - 2px);
  border: 1px solid rgba(185, 151, 96, 0.18);
  background:
    linear-gradient(155deg, rgba(245, 236, 220, 0.72), rgba(255, 251, 245, 0.96)),
    rgba(255, 252, 247, 0.96);
  box-shadow: var(--shadow);
}

.invoice-preview__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.invoice-preview__head h2 {
  margin: 0;
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.invoice-preview__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.invoice-preview__frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(135, 100, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.invoice-preview__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.auto-fill-card {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
}

.auto-fill-card--minimal {
  display: grid;
  place-items: center;
  min-height: 100%;
  text-align: center;
  background:
    linear-gradient(155deg, rgba(245, 236, 220, 0.82), rgba(255, 251, 245, 0.98)),
    rgba(255, 252, 247, 0.96);
}

.auto-fill-card strong {
  display: block;
  font-size: 1.05rem;
}

.auto-fill-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.auto-fill-card__value {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold-deep);
}

.auto-fill-card--minimal .auto-fill-card__value {
  margin-top: 0;
  font-family: "Alexandria", sans-serif;
  font-size: clamp(1.32rem, 2.25vw, 1.82rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.blend-summary {
  position: sticky;
  top: 6.8rem;
  display: grid;
  gap: 1rem;
}

.blend-builder .blend-summary--final {
  position: static;
}

@media (min-width: 1081px) {
  .blend-builder .blend-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: start;
  }

  .blend-builder .blend-workspace {
    display: contents;
  }

  .blend-builder .builder-surface--bottle,
  .blend-builder .builder-surface--mix {
    height: 100%;
  }

  .blend-builder .blend-summary--final {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem 1.2rem;
    padding-top: clamp(1.6rem, 3vw, 2rem);
  }

  .blend-builder .blend-summary--final > .eyebrow,
  .blend-builder .blend-summary--final > h2,
  .blend-builder .blend-summary--final > .status-text,
  .blend-builder .blend-summary--final > .blend-summary__actions {
    grid-column: 1 / -1;
  }

  .blend-builder .blend-summary--final > .summary-list,
  .blend-builder .blend-summary--final > .mix-breakdown {
    grid-column: 1;
  }

  .blend-builder .blend-summary--final > .stat-grid,
  .blend-builder .blend-summary--final > .pricing-total {
    grid-column: 2;
  }
}

.summary-list,
.pricing-total {
  display: grid;
  gap: 0.8rem;
}

.summary-list div,
.pricing-total div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.summary-list span,
.pricing-total span {
  color: var(--ink-soft);
}

.summary-list strong,
.pricing-total strong,
.stat-card strong {
  color: var(--ink);
}

.price-pair {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
  direction: ltr;
  font-variant-numeric: tabular-nums;
}

.price-pair__usd,
.price-pair__syp {
  white-space: nowrap;
}

.price-pair__separator {
  color: var(--ink-soft);
  font-weight: 600;
}

.mix-breakdown__item > strong,
.pricing-total strong {
  line-height: 1.6;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 22px;
}

.stat-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.stat-card strong {
  font-size: 1.05rem;
}

.mix-breakdown {
  display: grid;
  gap: 0.65rem;
}

.mix-breakdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.8);
  border: 1px solid rgba(135, 100, 58, 0.1);
}

.mix-breakdown__item div {
  display: grid;
  gap: 0.18rem;
}

.mix-breakdown__item span {
  color: var(--ink-soft);
}

.mix-breakdown__item--muted {
  background: rgba(242, 236, 226, 0.78);
}

.pricing-total {
  padding-top: 0.25rem;
}

.pricing-total__grand {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(135, 100, 58, 0.12);
}

.pricing-total__discount strong {
  color: #9d7b46;
}

.pricing-total__grand strong {
  color: var(--gold-deep);
  font-size: 1.35rem;
}

.status-text {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 249, 239, 0.9);
  color: var(--ink-soft);
}

.status-text.is-ready {
  background: rgba(236, 244, 232, 0.9);
  color: #2d5b32;
}

.status-text.is-error {
  background: rgba(255, 237, 234, 0.9);
  color: #a04634;
}

.button:disabled,
.button.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .page-hero,
  .pricing-toolbar,
  .blend-layout,
  .cta-panel,
  .ai-suggestion__formula {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero__media {
    justify-items: center;
  }

  .blend-summary {
    position: static;
  }

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

@media (max-width: 760px) {
  .page-metrics,
  .price-summary,
  .price-card__footer,
  .stat-grid,
  .mix-row,
  .bottle-grid {
    grid-template-columns: 1fr;
  }

  .page-metrics {
    grid-template-columns: 1fr;
  }

  .price-summary,
  .price-card__footer,
  .summary-list div,
  .pricing-total div,
  .mix-breakdown__item,
  .ai-suggestion__head,
  .invoice-preview__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .customer-fields {
    grid-template-columns: 1fr;
  }

  .customer-fields__field {
    padding: 0.92rem 0.9rem 0.96rem;
    border-radius: 20px;
  }

  .customer-fields__field > span {
    font-size: 0.92rem;
  }

  .customer-fields__field input::placeholder,
  .customer-fields__field textarea::placeholder {
    font-size: 0.8rem;
  }

  .cta-panel__actions,
  .blend-summary__actions,
  .invoice-preview__actions {
    flex-direction: column;
  }

  .cta-panel__actions .button,
  .blend-summary__actions .button,
  .builder-head--split .button,
  .invoice-preview__actions .button,
  .location-tools__button {
    width: 100%;
  }

  .mix-row {
    gap: 1rem;
  }

  .finish-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .size-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finish-pill,
  .size-pill {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .finish-selector,
  .size-selector {
    grid-template-columns: 1fr;
  }

  .subpage--blend .page-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subpage--blend .bottle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .subpage--blend .bottle-card {
    padding: 0.38rem 0.25rem 0.45rem;
  }

  .subpage--blend .bottle-card__copy strong {
    font-size: 0.72rem;
  }

  .subpage--blend .finish-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage--blend .size-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

html[data-theme="dark"] {
  --bg: #16120f;
  --bg-soft: #1d1713;
  --surface: rgba(29, 23, 18, 0.92);
  --surface-strong: #251f19;
  --ink: #f3eadc;
  --ink-soft: #c9b79d;
  --gold: #d4ae76;
  --gold-deep: #f0cd91;
  --line: rgba(212, 174, 118, 0.18);
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.44);
  --dark: #100c09;
}

html[data-theme="dark"] body {
  background: linear-gradient(180deg, #120e0b 0%, #1a1511 55%, #211a15 100%);
}

html[data-theme="dark"] body::before {
  opacity: 0.22;
  background:
    linear-gradient(110deg, rgba(212, 174, 118, 0.08), transparent 24%),
    radial-gradient(circle at 70% 18%, rgba(255, 236, 203, 0.08), transparent 30%);
}

html[data-theme="dark"] .site-header {
  background: rgba(26, 21, 17, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(19, 15, 12, 0.96);
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a:focus-visible,
html[data-theme="dark"] .site-nav a.is-active {
  background:
    linear-gradient(155deg, rgba(58, 46, 37, 0.96), rgba(35, 28, 22, 0.94)),
    rgba(32, 25, 20, 0.94);
  border-color: rgba(212, 174, 118, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 30px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .site-nav a {
  background:
    linear-gradient(155deg, rgba(41, 32, 26, 0.92), rgba(26, 21, 17, 0.9)),
    rgba(29, 23, 18, 0.92);
  border-color: rgba(212, 174, 118, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .button--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 174, 118, 0.16);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .theme-toggle__glyph {
  background:
    radial-gradient(circle at 34% 34%, #fdf9e5 0%, #e1d8b5 18%, #7e7397 19%, #62567f 100%);
  box-shadow:
    0 0 0 3px rgba(212, 174, 118, 0.12),
    inset -0.18rem -0.18rem 0.25rem rgba(18, 14, 26, 0.28);
}

html[data-theme="dark"] .hero__links a,
html[data-theme="dark"] .identity-board,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .home-value-card,
html[data-theme="dark"] .home-editorial__panel,
html[data-theme="dark"] .home-editorial__item,
html[data-theme="dark"] .hero__brand-note,
html[data-theme="dark"] .hero__image,
html[data-theme="dark"] .hero__image--editorial,
html[data-theme="dark"] .ambassador-teaser__panel,
html[data-theme="dark"] .ambassador__form-wrap,
html[data-theme="dark"] .ambassador-panel,
html[data-theme="dark"] .metric-card,
html[data-theme="dark"] .price-card,
html[data-theme="dark"] .builder-surface,
html[data-theme="dark"] .blend-summary,
html[data-theme="dark"] .showcase-card,
html[data-theme="dark"] .auto-fill-card,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .mix-row,
html[data-theme="dark"] .invoice-preview,
html[data-theme="dark"] .invoice-preview__frame,
html[data-theme="dark"] .price-card__details,
html[data-theme="dark"] .bottle-card,
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .mix-row__picker,
html[data-theme="dark"] .mix-row__remove,
html[data-theme="dark"] .finish-pill,
html[data-theme="dark"] .size-pill,
html[data-theme="dark"] .quantity-stepper input,
html[data-theme="dark"] .quantity-stepper__button,
html[data-theme="dark"] .price-filter-select select,
html[data-theme="dark"] .status-text {
  border-color: rgba(212, 174, 118, 0.16);
  background:
    linear-gradient(150deg, rgba(34, 27, 22, 0.96), rgba(23, 18, 14, 0.9)),
    rgba(28, 22, 18, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

html[data-theme="dark"] .price-card__price-pill,
html[data-theme="dark"] .price-card__details,
html[data-theme="dark"] .invoice-preview__frame,
html[data-theme="dark"] .price-filter-select select,
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .quantity-stepper input,
html[data-theme="dark"] .quantity-stepper__button,
html[data-theme="dark"] .mix-row__remove,
html[data-theme="dark"] .finish-pill,
html[data-theme="dark"] .size-pill {
  background-color: rgba(255, 255, 255, 0.03);
}

html[data-theme="dark"] .price-card__price-pill--syp {
  background: rgba(212, 174, 118, 0.1);
  border-color: rgba(212, 174, 118, 0.18);
}

html[data-theme="dark"] .mix-row__results {
  background: rgba(255, 255, 255, 0.02);
  border-top-color: rgba(212, 174, 118, 0.12);
}

html[data-theme="dark"] .mix-row__suggestion {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 174, 118, 0.12);
}

html[data-theme="dark"] .mix-row__suggestion:hover,
html[data-theme="dark"] .mix-row__suggestion:focus-visible,
html[data-theme="dark"] .mix-row__suggestion.is-active {
  background: rgba(212, 174, 118, 0.12);
  border-color: rgba(212, 174, 118, 0.26);
}

html[data-theme="dark"] .hero__image-caption {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.9));
}

html[data-theme="dark"] .bottle-card:hover,
html[data-theme="dark"] .bottle-card:focus-visible,
html[data-theme="dark"] .bottle-card.is-selected,
html[data-theme="dark"] .finish-pill:hover,
html[data-theme="dark"] .finish-pill:focus-visible,
html[data-theme="dark"] .finish-pill.is-selected,
html[data-theme="dark"] .size-pill:hover,
html[data-theme="dark"] .size-pill:focus-visible,
html[data-theme="dark"] .size-pill.is-selected {
  background: rgba(212, 174, 118, 0.08);
  border-color: rgba(212, 174, 118, 0.28);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .bottle-card__photo-frame {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 174, 118, 0.14);
}

html[data-theme="dark"] .price-card__price-equals,
html[data-theme="dark"] .metric-card__range-separator {
  color: var(--ink-soft);
}

html[data-theme="dark"] .status-text {
  background:
    linear-gradient(150deg, rgba(46, 36, 29, 0.96), rgba(23, 18, 14, 0.92)),
    rgba(28, 22, 18, 0.92);
}

html[data-theme="dark"] .field-hint.is-valid {
  color: #88c98e;
}

html[data-theme="dark"] .field-hint.is-error {
  color: #f3a28f;
}

html[data-theme="dark"] .customer-fields__field {
  border-color: rgba(212, 174, 118, 0.14);
  background:
    linear-gradient(155deg, rgba(35, 28, 22, 0.96), rgba(25, 20, 16, 0.92)),
    rgba(28, 22, 18, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .customer-fields__field input::placeholder,
html[data-theme="dark"] .customer-fields__field textarea::placeholder {
  color: rgba(230, 217, 194, 0.55);
}
