/* ───────────── Sandy Nour ───────────── */

:root {
  --bg: #FBF8F4;
  --bg-deep: #F4EFE7;
  --surface: #FFFFFF;
  --text: #1F1A17;
  --text-soft: #3A322C;
  --muted: #6B635B;
  --hairline: #E7E0D6;
  --hairline-strong: #D6CDBF;
  --gold: #B89A66;
  --gold-deep: #8A6D2F;
  --gold-bright: #C9A24B;
  --ink: #1F1A17;
  --ink-soft: rgba(31, 26, 23, 0.72);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1440px;
  --pad: clamp(24px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.005em;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ─── type ─── */
.serif { font-family: var(--serif); font-weight: 500; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.gold { color: var(--gold-deep); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--text);
}

/* ─── layout primitives ─── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(72px, 9vw, 144px) 0; }
.rule { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* ─── top frame: nav ─── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 28px; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover::after { transform: scaleX(1); }

.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.34em;
  text-align: center;
  color: var(--text);
  white-space: nowrap;
}
.brand .dot { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  background: var(--text);
  color: var(--bg);
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.lang button {
  padding: 6px 12px;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  transition: color .2s, background .2s;
}
.lang button.on { background: var(--text); color: var(--bg); }

/* ─── hero ─── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 720px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 28%;
  filter: saturate(0.96) contrast(1.02);
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,23,0.05) 0%, rgba(31,26,23,0) 30%, rgba(31,26,23,0) 60%, rgba(31,26,23,0.55) 100%),
    linear-gradient(90deg, rgba(31,26,23,0.18) 0%, rgba(31,26,23,0) 35%);
}
.hero-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-bottom: 56px;
}
.hero-meta {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  color: #F6EFE2;
}
.hero-meta .left { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E9DDC2;
}
.hero-eyebrow .bar { width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.014em;
  margin: 22px 0 26px;
  color: #FCF7EB;
}
.hero-title em {
  font-style: italic;
  color: #E9CD90;
  font-weight: 400;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(252, 247, 235, 0.78);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn-primary {
  background: #FCF7EB;
  color: var(--text);
  border-color: #FCF7EB;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--text); }
.btn-ghost-light {
  color: #FCF7EB;
  border-color: rgba(252, 247, 235, 0.55);
}
.btn-ghost-light:hover { background: rgba(252, 247, 235, 0.08); border-color: #FCF7EB; }
.btn-dark {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-dark:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost-dark {
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost-dark:hover { background: var(--text); color: var(--bg); }

.hero-meta .right {
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 247, 235, 0.7);
}
.hero-meta .right .credit-name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #F6EFE2;
  margin-bottom: 4px;
}
.hero-meta .right .price {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #E9CD90;
  margin-top: 2px;
}

.hero-side {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(252, 247, 235, 0.6);
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: var(--pad);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(252, 247, 235, 0.78);
}
.hero-scroll .line {
  width: 48px; height: 1px;
  background: rgba(252, 247, 235, 0.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 20% { transform: translateX(-100%); }
  60% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ─── trust spine ─── */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust-cell {
  padding: 38px 24px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.trust-cell:last-child { border-right: 0; }
.trust-cell .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.trust-cell .n .ampersand { color: var(--gold); font-style: italic; }
.trust-cell .l {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── section headings ─── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.014em;
  color: var(--text);
}
.section-head .h em { font-style: italic; color: var(--gold-deep); }
.section-head .p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  justify-self: end;
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-num .bar { width: 24px; height: 1px; background: var(--gold); }

/* ─── collection split ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.split-card {
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
}
.split-card .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .8s;
}
.split-card:hover .img { transform: scale(1.04); }
.split-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,23,0.05) 0%, rgba(31,26,23,0) 35%, rgba(31,26,23,0.55) 100%);
}
.split-card .meta {
  position: absolute;
  inset: 0;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FCF7EB;
}
.split-card .meta .top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(252, 247, 235, 0.82);
}
.split-card .meta .top .n { font-family: var(--mono); color: var(--gold); }
.split-card .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 72px);
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0 0 12px;
}
.split-card .name em { font-style: italic; color: #E9CD90; }
.split-card .blurb {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(252, 247, 235, 0.82);
  max-width: 360px;
  margin: 0 0 24px;
}
.split-card .enter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FCF7EB;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(252, 247, 235, 0.4);
  transition: border-color .3s, gap .3s;
}
.split-card:hover .enter { border-bottom-color: var(--gold); gap: 22px; }

/* ─── featured gowns grid ─── */
.gown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.gown {
  position: relative;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: background .4s;
}
.gown:hover { background: var(--bg-deep); }
.gown .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
  overflow: hidden;
}
.gown .frame .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .8s;
}
.gown:hover .frame .img { transform: scale(1.04); }
.gown .frame .corner {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  background: rgba(251, 248, 244, 0.86);
  padding: 4px 8px;
}
.gown .frame .tag {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg);
  padding: 4px 10px;
  border: 1px solid var(--hairline-strong);
}
.gown .frame .tag.bridal { color: var(--gold-deep); }
.gown .frame .hover-cta {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  padding: 12px 14px;
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gown:hover .frame .hover-cta { opacity: 1; transform: translateY(0); }

.gown .label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.gown .label .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--text);
}
.gown .label .price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
}
.gown .label .price .ccy {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-right: 4px;
}
.gown .note {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.5;
}
.gown.hide-price .label .price { display: none; }
.gown.hover-price .label .price { opacity: 0; transition: opacity .3s; }
.gown.hover-price:hover .label .price { opacity: 1; }

/* compact density */
.dense .gown-grid { grid-template-columns: repeat(6, 1fr); }
.dense .gown { padding: 16px; }
.dense .gown .label .name { font-size: 17px; }
.dense .gown .label .price { font-size: 12px; }

/* ─── bespoke editorial block ─── */
.bespoke {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg);
}
.bespoke .img {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
}
.bespoke .img::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(252, 247, 235, 0.3);
  pointer-events: none;
}
.bespoke .text {
  padding: clamp(56px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.bespoke .h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.012em;
}
.bespoke .h em { font-style: italic; color: var(--gold-deep); }
.bespoke .body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
}
.bespoke .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.bespoke .list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  color: var(--text-soft);
}
.bespoke .list li .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}

/* ─── showrooms ─── */
.showrooms-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showroom {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .3s, transform .4s;
}
.showroom:hover { border-color: var(--gold); transform: translateY(-3px); }
.showroom .city {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 18px;
}
.showroom .city .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--text);
}
.showroom .city .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.showroom .addr {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
}
.showroom dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: 0;
  font-size: 12px;
}
.showroom dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.showroom dd {
  margin: 0;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.showroom dd .flag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-left: 4px;
}
.showroom .ctas {
  margin-top: auto;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.showroom .ctas a {
  flex: 1;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 8px;
  border: 1px solid var(--text);
  transition: background .25s, color .25s;
}
.showroom .ctas a.primary { background: var(--text); color: var(--bg); }
.showroom .ctas a.primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.showroom .ctas a.ghost:hover { background: var(--text); color: var(--bg); }

/* ─── designer strip ─── */
.designer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.designer .quote-frame {
  position: relative;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.designer .quote-frame::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 64px; height: 2px;
  background: var(--gold);
}
.designer .pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--text);
}
.designer .signature {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.designer .signature .glyph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-deep);
  text-transform: none;
  letter-spacing: -0.02em;
}
.designer .biolist {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.designer .biolist li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  font-size: 13px;
  color: var(--text-soft);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--hairline);
}
.designer .biolist li .yr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}
.designer .portrait {
  position: relative;
  aspect-ratio: 5 / 6;
  background: var(--bg-deep);
  background-size: cover;
  background-position: center 18%;
  overflow: hidden;
}
.designer .portrait .label {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 247, 235, 0.92);
  background: rgba(31, 26, 23, 0.6);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.designer .portrait .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: repeating-linear-gradient(
    -45deg,
    var(--bg-deep) 0 12px,
    color-mix(in oklab, var(--bg-deep) 90%, #00000010) 12px 24px
  );
}

/* ─── appointment band ─── */
.band {
  background: var(--text);
  color: #FCF7EB;
  padding: clamp(80px, 9vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(184, 154, 102, 0.18) 0%, rgba(184, 154, 102, 0) 50%),
    radial-gradient(circle at 10% 80%, rgba(184, 154, 102, 0.12) 0%, rgba(184, 154, 102, 0) 45%);
  pointer-events: none;
}
.band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.band .h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.014em;
  color: #FCF7EB;
}
.band .h em { font-style: italic; color: #E9CD90; }
.band .h .gap { display: block; }
.band .sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(252, 247, 235, 0.7);
  max-width: 440px;
  margin: 28px 0 0;
}
.band-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.band-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(252, 247, 235, 0.16);
  padding: 22px 0;
  transition: border-color .3s;
  cursor: pointer;
}
.band-row:last-of-type { border-bottom: 1px solid rgba(252, 247, 235, 0.16); }
.band-row:hover { border-top-color: var(--gold); border-bottom-color: var(--gold); }
.band-row .left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.band-row .left .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(252, 247, 235, 0.5);
}
.band-row .left .city {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: #FCF7EB;
}
.band-row .left .sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 247, 235, 0.55);
  margin: 0;
}
.band-row .arrow {
  font-size: 18px;
  color: var(--gold);
  transition: transform .3s;
}
.band-row:hover .arrow { transform: translateX(6px); }
.band .actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.band .btn-primary { background: #FCF7EB; color: var(--text); border-color: #FCF7EB; }
.band .btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.band .btn-ghost-light { color: #FCF7EB; border-color: rgba(252, 247, 235, 0.5); }

/* ─── footer ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.footer-top {
  padding: clamp(56px, 6vw, 96px) 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-soft);
  position: relative;
  display: inline-block;
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-brand {
  display: flex; flex-direction: column; gap: 18px;
}
.footer-brand .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.32em;
}
.footer-brand .tag {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 340px;
}
.footer-brand .insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
}
.footer-base {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-base .legal { display: flex; gap: 24px; }

/* ─── floating whatsapp ─── */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--text);
  color: #FCF7EB;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 36px -16px rgba(31, 26, 23, 0.5);
  transition: background .3s, transform .3s;
}
.wa-fab:hover { background: var(--gold-deep); transform: translateY(-2px) scale(1.05); }
.wa-fab svg { width: 24px; height: 24px; }
.wa-fab .pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.96); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* ─── RTL accommodations (visual only) ─── */
[dir="rtl"] .nav { direction: rtl; }
[dir="rtl"] .nav-right { justify-content: flex-start; }
[dir="rtl"] .nav-link::after { transform-origin: right; }
[dir="rtl"] .hero-side { left: auto; right: var(--pad); transform: translateY(-50%) rotate(90deg); transform-origin: right top; }
[dir="rtl"] .hero-scroll { right: auto; left: var(--pad); }
[dir="rtl"] .footer-base .legal { flex-direction: row-reverse; }
[dir="rtl"] body { font-family: "Noto Naskh Arabic", "Cormorant Garamond", serif; }
[dir="rtl"] .serif, [dir="rtl"] .hero-title, [dir="rtl"] .display, [dir="rtl"] .section-head .h,
[dir="rtl"] .split-card .name, [dir="rtl"] .bespoke .h, [dir="rtl"] .band .h, [dir="rtl"] .designer .pull {
  font-family: "Noto Naskh Arabic", "Amiri", serif;
  letter-spacing: 0;
}

/* ─── responsive ─── */
@media (max-width: 1100px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(2n) { border-right: 0; }
  .trust-cell { border-bottom: 1px solid var(--hairline); }
  .gown-grid { grid-template-columns: repeat(3, 1fr); }
  .dense .gown-grid { grid-template-columns: repeat(4, 1fr); }
  .showroom-grid { grid-template-columns: 1fr; }
  .designer, .bespoke, .split, .band-inner, .footer-top {
    grid-template-columns: 1fr;
  }
  .bespoke .img { min-height: 460px; }
  .footer-top { gap: 36px; }
  .nav-left, .nav-right .nav-link { display: none; }
  .nav { grid-template-columns: 1fr auto auto; }
}

@media (max-width: 720px) {
  .gown-grid, .dense .gown-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta .right { text-align: left; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .p { justify-self: start; }
}
