:root {
  --ink: #07111f;
  --ink-2: #0e1b2a;
  --ink-3: #17283a;
  --pearl: #f6f0e6;
  --paper: #fffaf2;
  --sand: #e1bd7d;
  --gold: #d7aa60;
  --gold-2: #f1d28f;
  --rose: #b96570;
  --rose-2: #d6948f;
  --sea: #3c7a83;
  --mist: #c9d4d4;
  --muted: #67717d;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(7, 17, 31, 0.13);
  --shadow: 0 24px 65px rgba(2, 8, 15, 0.18);
  --shadow-soft: 0 16px 38px rgba(2, 8, 15, 0.11);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1240px;
  --sale-bar-height: 42px;
  --nav-height: 82px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(90px + var(--sale-bar-height)); }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(215, 170, 96, .32); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1300;
  background: var(--gold-2);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: calc(var(--sale-bar-height) + 8px); }

.site-header {
  position: fixed;
  inset: var(--sale-bar-height) 0 auto 0;
  z-index: 100;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled,
.site-header.header-solid {
  background: rgba(7, 17, 31, .93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.13);
}
.nav-wrap {
  width: min(calc(100% - 36px), var(--max));
  height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  flex: 0 0 auto;
}
.brand-domain,
.domain-inline {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: var(--serif);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1;
}
.brand-domain { font-size: 22px; }
.brand-domain .domain-from { color: #fffaf2; }
.brand-domain .domain-dubai { color: var(--gold-2); }
.brand-domain .domain-with { color: #e49aa5; }
.brand-domain .domain-love { color: #76c9d0; }
.brand-domain .domain-com { color: var(--mist); font-size: .76em; letter-spacing: -.02em; }
.domain-inline { font-size: 1em; }
.domain-inline .domain-from { color: var(--ink); }
.domain-inline .domain-dubai { color: #9a681d; }
.domain-inline .domain-with { color: #a44f61; }
.domain-inline .domain-love { color: #216e78; }
.domain-inline .domain-com { color: #52646a; font-size: .8em; }
.page-hero .domain-inline .domain-from,
.quote-band .domain-inline .domain-from,
.site-footer .domain-inline .domain-from,
.domain-ribbon .domain-inline .domain-from { color: #fffaf2; }
.page-hero .domain-inline .domain-dubai,
.quote-band .domain-inline .domain-dubai,
.site-footer .domain-inline .domain-dubai,
.domain-ribbon .domain-inline .domain-dubai { color: var(--gold-2); }
.page-hero .domain-inline .domain-with,
.quote-band .domain-inline .domain-with,
.site-footer .domain-inline .domain-with,
.domain-ribbon .domain-inline .domain-with { color: #e49aa5; }
.page-hero .domain-inline .domain-love,
.quote-band .domain-inline .domain-love,
.site-footer .domain-inline .domain-love,
.domain-ribbon .domain-inline .domain-love { color: #76c9d0; }
.page-hero .domain-inline .domain-com,
.quote-band .domain-inline .domain-com,
.site-footer .domain-inline .domain-com,
.domain-ribbon .domain-inline .domain-com { color: var(--mist); }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--ink);
  background: var(--gold-2);
  border: 1px solid rgba(255,255,255,.22);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { color: var(--ink); background: white; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: white;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7,17,31,.75) 0%, rgba(7,17,31,.24) 52%, rgba(7,17,31,.08) 100%), url("../images/photos/hero-dubai.webp");
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.035);
  animation: heroBreathe 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,31,.18) 0%, rgba(7,17,31,.08) 42%, rgba(7,17,31,.9) 100%);
}
.hero-orbit {
  position: absolute;
  width: 450px;
  height: 450px;
  right: 7vw;
  top: 19vh;
  border: 1px solid rgba(240, 201, 130, .28);
  border-radius: 50%;
  animation: spinSlow 28s linear infinite;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(240, 201, 130, .13);
  border-radius: 50%;
}
.hero-orbit::after { inset: 108px; }
.hero-orbit i {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 25px var(--gold-2);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 160px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 780px) 1fr;
  gap: 50px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.hero h1,
.page-hero h1,
.section-title,
.editorial-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .95;
}
.hero-domain {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(54px, 7.35vw, 104px);
}
.hero-domain .brand-domain {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  white-space: normal;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: .86;
}
.hero-domain .brand-domain > span { display: inline-block; }
.hero-copy {
  margin: 28px 0 0;
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  appearance: none;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: var(--ink); background: var(--gold-2); box-shadow: 0 12px 30px rgba(215,170,96,.22); }
.btn-primary:hover { background: white; box-shadow: 0 14px 36px rgba(255,255,255,.15); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.13); }
.btn-dark { color: white; background: var(--ink); }
.btn-dark:hover { background: var(--ink-3); }
.btn-light { color: var(--ink); border-color: var(--line-dark); background: white; }
.btn-light:hover { border-color: var(--gold); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.btn-icon { width: 18px; height: 18px; flex: 0 0 auto; }
.hero-aside {
  justify-self: end;
  width: min(100%, 295px);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(7,17,31,.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-aside-label { color: var(--gold-2); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.dubai-clock { margin-top: 7px; font-family: var(--serif); font-size: 35px; line-height: 1.2; }
.dubai-date { color: rgba(255,255,255,.68); font-size: 13px; }
.hero-aside-rule { height: 1px; margin: 18px 0; background: rgba(255,255,255,.12); }
.hero-aside p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.scroll-cue {
  position: absolute;
  right: 30px;
  bottom: 25px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: top right;
}
.scroll-cue::after { content: ""; width: 48px; height: 1px; background: currentColor; }

.marquee {
  overflow: hidden;
  background: var(--gold-2);
  color: var(--ink);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(7,17,31,.1);
}
.marquee-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 13px 0;
  animation: marquee 32s linear infinite;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.marquee-track span::after { content: "✦"; margin-left: 34px; opacity: .55; }

.domain-ribbon {
  color: white;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.domain-ribbon-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 20px 0;
  text-align: center;
}
.domain-ribbon .domain-inline { font-size: clamp(30px, 4vw, 52px); letter-spacing: -.06em; }
.domain-ribbon-note { color: rgba(255,255,255,.48); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }

.section { padding: 110px 0; }
.section-dark { color: white; background: var(--ink); }
.section-ink2 { color: white; background: var(--ink-2); }
.section-pearl { background: var(--pearl); }
.section-paper { background: var(--paper); }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}
.section-title { margin: 0; font-size: clamp(45px, 6vw, 78px); }
.section-copy { margin: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-copy,
.section-ink2 .section-copy { color: rgba(255,255,255,.66); }
.kicker { margin: 0 0 13px; color: var(--rose); font-size: 12px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.section-dark .kicker,
.section-ink2 .kicker { color: var(--gold-2); }

.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.action-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.action-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .65s var(--ease); }
.action-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,17,31,.06), rgba(7,17,31,.88)); }
.action-card:hover .action-card-bg { transform: scale(1.045); }
.action-card-content { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 30px; }
.action-number { margin-bottom: 10px; color: var(--gold-2); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.action-card h3 { margin: 0; font-family: var(--serif); font-size: 34px; line-height: 1; font-weight: 500; letter-spacing: -.03em; }
.action-card p { margin: 14px 0 22px; color: rgba(255,255,255,.72); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 850; font-size: 13px; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  min-height: 670px;
}
.feature-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-2) url("../images/photos/scene-downtown.webp") center/cover;
  box-shadow: var(--shadow);
}
.feature-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,17,31,.6)); }
.feature-floating-card {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 21px;
  background: rgba(7,17,31,.62);
  backdrop-filter: blur(12px);
}
.feature-floating-card strong { display: block; font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.feature-floating-card span { color: rgba(255,255,255,.65); font-size: 12px; }
.feature-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: clamp(38px, 5vw, 72px);
  background: white;
  box-shadow: var(--shadow-soft);
}
.feature-copy-card h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 70px); line-height: .98; letter-spacing: -.04em; font-weight: 500; }
.feature-copy-card p { margin: 25px 0 0; color: var(--muted); }
.feature-list { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; font-size: 14px; }
.feature-list li::before { content: "✦"; color: var(--gold); }

.story-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.story-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  grid-column: span 4;
  border-radius: var(--radius);
  color: white;
  background: var(--ink-2);
  box-shadow: var(--shadow-soft);
}
.story-card.large { grid-column: span 7; min-height: 520px; }
.story-card.wide { grid-column: span 5; min-height: 520px; }
.story-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .65s var(--ease); }
.story-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,31,.04) 30%, rgba(7,17,31,.9)); }
.story-card:hover .story-card-bg { transform: scale(1.04); }
.story-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 27px; }
.story-meta { color: var(--gold-2); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.story-card h3 { margin: 9px 0 0; font-family: var(--serif); font-size: 31px; line-height: 1.03; letter-spacing: -.03em; font-weight: 500; }
.story-card p { margin: 12px 0 0; color: rgba(255,255,255,.67); font-size: 13px; }

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: white;
  background: var(--ink-2);
}
.quote-band::before { content: ""; position: absolute; inset: 0; opacity: .55; background: url("../images/pattern-stars.svg") repeat; }
.quote-inner { position: relative; z-index: 1; width: min(calc(100% - 40px), 1000px); margin: 0 auto; text-align: center; }
.quote-mark { color: var(--gold-2); font-family: var(--serif); font-size: 80px; line-height: .3; }
.quote-band blockquote { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(36px, 5vw, 66px); line-height: 1.05; letter-spacing: -.035em; }
.quote-band cite { display: block; margin-top: 24px; color: rgba(255,255,255,.55); font-style: normal; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }

.gift-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gift-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}
.gift-card.gift-card-link:hover { transform: translateY(-5px); background: white; box-shadow: var(--shadow-soft); }
.gift-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; color: var(--rose); background: rgba(185,101,112,.1); font-size: 25px; }
.gift-card h3 { margin: 30px 0 0; font-family: var(--serif); font-size: 27px; line-height: 1.05; font-weight: 500; }
.gift-card p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.gift-tag { margin-top: 20px; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 70px 30px;
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  background: var(--ink-2) url("../images/photos/scene-palm.webp") center/cover;
  box-shadow: var(--shadow);
}
.cta-panel::before { content: ""; position: absolute; inset: 0; background: rgba(7,17,31,.72); }
.cta-content { position: relative; z-index: 1; max-width: 760px; }
.cta-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); line-height: .96; letter-spacing: -.045em; font-weight: 500; }
.cta-content p { margin: 22px auto 0; max-width: 600px; color: rgba(255,255,255,.7); }
.cta-content .button-row { justify-content: center; }

.page-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.page-hero.compact { min-height: 470px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,31,.82), rgba(7,17,31,.24)), linear-gradient(180deg, rgba(7,17,31,.12), rgba(7,17,31,.78)); }
.page-hero-inner { position: relative; z-index: 2; width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: calc(160px + var(--sale-bar-height)) 0 72px; }
.page-hero h1 { margin: 0; max-width: 930px; font-size: clamp(57px, 8vw, 105px); }
.page-hero p { margin: 24px 0 0; max-width: 700px; color: rgba(255,255,255,.72); font-size: 18px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 750; }
.breadcrumbs span { opacity: .5; }

.tool-layout {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}
.tool-layout > *, .panel, .preview-actions { min-width: 0; }
.panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}
.panel-pad { padding: clamp(24px, 4vw, 38px); }
.panel-sticky { position: sticky; top: 106px; }
.panel h2 { margin: 0; font-family: var(--serif); font-size: 36px; line-height: 1; font-weight: 500; letter-spacing: -.03em; }
.panel-intro { margin: 14px 0 26px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.form-label small { color: var(--muted); font-weight: 600; letter-spacing: 0; text-transform: none; }
.input,
.select,
.textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(7,17,31,.18);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.textarea { min-height: 114px; resize: vertical; }
.input:focus,
.select:focus,
.textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(215,170,96,.13); }
.field-help { color: var(--muted); font-size: 12px; }
.char-count { color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.scene-choice { position: relative; }
.scene-choice input { position: absolute; opacity: 0; pointer-events: none; }
.scene-choice label {
  display: grid;
  gap: 7px;
  padding: 7px;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  background: var(--pearl);
  transition: border-color .2s ease, transform .2s ease;
}
.scene-choice label:hover { transform: translateY(-2px); }
.scene-choice img { width: 100%; aspect-ratio: 1.1 / 1; object-fit: cover; border-radius: 9px; }
.scene-choice span { padding: 0 3px 2px; font-size: 11px; font-weight: 800; }
.scene-choice input:checked + label { border-color: var(--gold); }
.scene-choice input:focus-visible + label { outline: 3px solid rgba(215,170,96,.22); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.check-pill input:checked + label { color: var(--ink); border-color: var(--gold); background: rgba(215,170,96,.12); }
.check-pill input:focus-visible + label { outline: 3px solid rgba(215,170,96,.2); }
.privacy-note { display: flex; gap: 10px; margin: 20px 0 0; padding: 13px 14px; border-radius: 12px; color: var(--muted); background: var(--pearl); font-size: 12px; }
.privacy-note strong { color: var(--ink); }

.love-preview-wrap { display: grid; place-items: center; min-height: 760px; padding: 38px; border-radius: var(--radius); background: var(--ink-2); box-shadow: var(--shadow); }
.love-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 530px);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  color: white;
  background: var(--ink) url("../images/photos/scene-creek.webp") center/cover;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  isolation: isolate;
}
.love-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,17,31,.08), rgba(7,17,31,.2) 42%, rgba(7,17,31,.9)); }
.love-card-inner { height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(25px, 5vw, 43px); }
.love-card-brand { display: flex; align-items: center; gap: 9px; }
.love-card-brand .brand-domain { font-size: clamp(13px, 2.3vw, 18px); text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.love-card-copy { text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.love-card-occasion { color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.love-card-recipient { margin: 9px 0 0; font-family: var(--serif); font-size: clamp(37px, 6vw, 62px); line-height: .95; font-weight: 500; letter-spacing: -.04em; }
.love-card-message { margin: 18px 0 0; max-width: 420px; color: rgba(255,255,255,.87); font-family: var(--serif); font-size: clamp(18px, 2.6vw, 26px); line-height: 1.25; }
.love-card-from { margin-top: 23px; color: rgba(255,255,255,.65); font-size: 12px; }
.love-card-from strong { color: white; }
.preview-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.invite-result { display: none; }
.invite-result.active { display: block; }
.invite-paper {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(215,170,96,.35);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: var(--shadow-soft);
}
.invite-paper::before { content: ""; position: absolute; inset: 0; opacity: .42; pointer-events: none; background: url("../images/pattern-stars.svg") repeat; }
.invite-paper > * { position: relative; z-index: 1; }
.invite-brand { color: var(--rose); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.invite-paper h2 { margin: 14px 0 0; max-width: 800px; font-family: var(--serif); font-size: clamp(42px, 6vw, 72px); line-height: .98; letter-spacing: -.04em; font-weight: 500; }
.invite-intro { max-width: 740px; margin: 21px 0 0; color: var(--muted); font-family: var(--serif); font-size: 20px; }
.itinerary { display: grid; gap: 14px; margin-top: 34px; }
.day-card { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid rgba(7,17,31,.12); }
.day-number { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.day-card h3 { margin: 0; font-family: var(--serif); font-size: 26px; line-height: 1.1; font-weight: 500; }
.day-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.invite-signoff { margin-top: 35px; font-family: var(--serif); font-size: 22px; font-style: italic; }

.editorial-layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; gap: 70px; align-items: start; }
.article { font-family: var(--serif); font-size: 20px; line-height: 1.78; }
.article .lead { font-size: 27px; line-height: 1.5; color: var(--ink-2); }
.article h2 { margin: 58px 0 15px; font-size: 42px; line-height: 1.05; letter-spacing: -.03em; font-weight: 500; }
.article p { margin: 0 0 24px; }
.article blockquote { margin: 44px 0; padding: 0 0 0 28px; border-left: 3px solid var(--gold); color: var(--rose); font-size: 31px; line-height: 1.35; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { min-height: 620px; border-radius: var(--radius-lg); background: var(--ink) url("../images/photos/scene-souk.webp") center/cover; box-shadow: var(--shadow); }
.about-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(50px, 6vw, 82px); line-height: .95; letter-spacing: -.045em; font-weight: 500; }
.about-copy p { margin: 24px 0 0; color: var(--muted); }
.principles { display: grid; gap: 15px; margin-top: 32px; }
.principle { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.principle-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--rose); background: rgba(185,101,112,.1); font-family: var(--serif); font-size: 19px; }
.principle h3 { margin: 0; font-size: 15px; }
.principle p { margin: 4px 0 0; font-size: 13px; }

.notice { padding: 14px 16px; border: 1px solid rgba(215,170,96,.38); border-radius: 13px; color: #7a5b25; background: rgba(241,210,143,.22); font-size: 13px; }

.legal-copy code { padding: .08em .35em; border-radius: 6px; color: var(--ink); background: rgba(215,170,96,.14); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .82em; }
.external-link::after { content: "↗"; margin-left: 5px; font-size: .82em; }
.credit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.credit-card { overflow: hidden; display: grid; grid-template-columns: minmax(180px, .9fr) 1.1fr; min-height: 315px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.credit-photo { min-height: 100%; background-size: cover; background-position: center; transition: transform .5s var(--ease), filter .3s ease; }
.credit-photo:hover { filter: brightness(1.06); }
.credit-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 30px; }
.credit-scene { margin: 0; color: var(--rose); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.credit-copy h2 { margin: 9px 0 0; font-family: var(--serif); font-size: 32px; line-height: 1.05; font-weight: 500; }
.credit-copy p:not(.credit-scene) { margin: 13px 0 18px; color: var(--muted); font-size: 13px; }
.credits-notice { margin-top: 28px; }
.not-found-domain { position: relative; z-index: 1; margin-bottom: 38px; }
.not-found-domain .domain-inline { font-size: clamp(25px, 5vw, 48px); }
.empty-state { padding: 45px 24px; border: 1px dashed rgba(7,17,31,.2); border-radius: var(--radius); text-align: center; color: var(--muted); }

.site-footer { color: white; background: #050b12; }
.footer-main { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 78px 0 45px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 55px; }
.footer-brand .brand { color: white; }
.footer-domain-brand .brand-domain { font-size: clamp(23px, 2.5vw, 34px); }
.footer-brand p { max-width: 440px; margin: 22px 0 0; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-title { margin: 4px 0 17px; color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.63); font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 22px 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); font-size: 11px; }
.footer-bottom-links { display: flex; gap: 15px; }

.toast {
  position: fixed;
  z-index: 1300;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 17px;
  border-radius: 999px;
  color: white;
  background: rgba(7,17,31,.94);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  font-size: 13px;
  font-weight: 750;
  transition: opacity .25s ease, transform .25s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

.not-found { min-height: 100svh; display: grid; place-items: center; padding: calc(120px + var(--sale-bar-height)) 20px 60px; color: white; text-align: center; background: var(--ink) url("../images/photos/scene-desert.webp") center/cover; }
.not-found::before { content: ""; position: fixed; inset: 0; background: rgba(7,17,31,.63); }
.not-found-inner { position: relative; z-index: 1; max-width: 700px; }
.not-found-code { color: var(--gold-2); font-family: var(--serif); font-size: 150px; line-height: .7; }
.not-found h1 { margin: 30px 0 0; font-family: var(--serif); font-size: 48px; font-weight: 500; }
.not-found p { color: rgba(255,255,255,.7); }

@keyframes heroBreathe { from { transform: scale(1.035) translate3d(0,0,0); } to { transform: scale(1.075) translate3d(-.7%, -.5%, 0); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .site-nav a { padding-inline: 9px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { justify-self: start; width: auto; display: grid; grid-template-columns: auto 1px minmax(0, 1fr); gap: 18px; align-items: center; }
  .hero-aside-rule { width: 1px; height: 55px; margin: 0; }
  .action-grid { grid-template-columns: 1fr 1fr; }
  .action-card:last-child { grid-column: 1 / -1; min-height: 340px; }
  .gift-grid { grid-template-columns: 1fr 1fr; }
  .tool-layout { grid-template-columns: 1fr; }
  .panel-sticky { position: static; }
  .love-preview-wrap { min-height: auto; }
  .editorial-layout { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: calc(var(--sale-bar-height) + var(--nav-height)) 0 0 0;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 28px 20px 60px;
    background: rgba(7,17,31,.98);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-open .site-nav { transform: translateX(0); }
  .site-nav a { padding: 16px 18px; border-radius: 14px; font-family: var(--serif); font-size: 26px; }
  .site-nav .nav-cta { margin: 12px 0 0; text-align: center; font-family: var(--sans); font-size: 15px; }
  .section { padding: 84px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .feature-split { grid-template-columns: 1fr; min-height: 0; }
  .feature-visual { min-height: 540px; }
  .story-card, .story-card.large, .story-card.wide { grid-column: span 6; min-height: 430px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 520px; }
  .credit-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --sale-bar-height: 48px; --nav-height: 74px; }
  .nav-wrap { width: min(calc(100% - 28px), var(--max)); height: var(--nav-height); }
  .site-nav { top: var(--nav-height); }
  .brand-domain { font-size: 16.5px; }
  .brand { gap: 8px; }
  .hero { min-height: 880px; }
  .hero-media { background-position: 57% center; }
  .hero-orbit { width: 310px; height: 310px; right: -100px; top: 145px; }
  .hero-inner { width: min(calc(100% - 28px), var(--max)); padding: 150px 0 54px; }
  .hero-domain { font-size: clamp(45px, 14.2vw, 72px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-aside { grid-template-columns: 1fr; gap: 5px; padding: 17px 19px; }
  .hero-aside-rule { width: 100%; height: 1px; margin: 9px 0; }
  .scroll-cue { display: none; }
  .container, .page-hero-inner, .footer-main, .footer-bottom { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .section-title { font-size: 47px; }
  .action-grid { grid-template-columns: 1fr; }
  .action-card, .action-card:last-child { grid-column: auto; min-height: 390px; }
  .feature-visual { min-height: 440px; }
  .feature-floating-card { left: 14px; right: 14px; bottom: 14px; padding: 16px; }
  .feature-floating-card .btn { display: none; }
  .feature-copy-card { padding: 34px 25px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card, .story-card.large, .story-card.wide { grid-column: auto; min-height: 440px; }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-card { min-height: 230px; }
  .quote-band { padding: 92px 0; }
  .page-hero { min-height: 520px; }
  .page-hero.compact { min-height: 420px; }
  .page-hero-inner { padding: calc(130px + var(--sale-bar-height)) 0 54px; }
  .page-hero h1 { font-size: 56px; }
  .tool-layout { gap: 18px; }
  .panel-pad { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .love-preview-wrap { padding: 16px; }
  .love-card { border-radius: 20px; }
  .preview-actions .btn { flex: 1 1 44%; }
  .day-card { grid-template-columns: 1fr; gap: 5px; }
  .article { font-size: 18px; }
  .article .lead { font-size: 23px; }
  .article h2 { font-size: 34px; }
  .article blockquote { font-size: 25px; }
  .about-visual { min-height: 430px; }
  .credit-card { grid-template-columns: 1fr; }
  .credit-photo { min-height: 280px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}


@media (max-width: 390px) {
  .brand-domain { font-size: 14.5px; }
  .nav-wrap { width: min(calc(100% - 20px), var(--max)); }
  .domain-ribbon-inner { width: min(calc(100% - 24px), var(--max)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .domain-sale-banner, .site-header, .site-footer, .page-hero, .invite-form-panel, .invite-actions, .toast { display: none !important; }
  body { background: white; }
  .section { padding: 0; }
  .container { width: 100%; }
  .invite-result { display: block !important; }
  .invite-paper { border: 0; box-shadow: none; }
}


/* FromDubaiWithLove.com title styling */
.brand-domain,
.domain-inline { text-transform: none !important; }

/* Approved-message cards */
.message-choice-list { display: grid; gap: 9px; }
.message-option { position: relative; display: block; cursor: pointer; }
.message-option input { position: absolute; opacity: 0; pointer-events: none; }
.message-option span {
  display: block;
  padding: 14px 15px;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 13px;
  color: var(--muted);
  background: #fff;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s var(--ease);
}
.message-option:hover span { transform: translateY(-1px); border-color: rgba(215,170,96,.65); }
.message-option input:checked + span { color: var(--ink); border-color: var(--gold); background: rgba(215,170,96,.13); box-shadow: 0 0 0 3px rgba(215,170,96,.08); }
.message-option input:focus-visible + span { outline: 3px solid rgba(215,170,96,.22); outline-offset: 2px; }
.name-guidance,
.sharing-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.sharing-note { text-align: center; }
.recipient-summary { margin: 18px auto 0; color: rgba(255,255,255,.68); text-align: center; font-family: var(--serif); font-size: 18px; }
.selected-message-preview {
  margin: 2px 0 0;
  padding: 16px 17px;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: rgba(215,170,96,.1);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}

.recipient-only,
.invite-recipient-only { display: none !important; }

body.love-recipient-mode .creator-only { display: none !important; }
body.love-recipient-mode .recipient-only { display: block !important; }
body.love-recipient-mode .btn.recipient-only { display: inline-flex !important; }
body.love-recipient-mode .site-header,
body.invite-recipient-mode .site-header { background: rgba(7,17,31,.96); border-color: rgba(255,255,255,.1); }
body.love-recipient-mode .love-tool-section {
  min-height: 100svh;
  padding-top: calc(128px + var(--sale-bar-height));
  color: white;
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
}
body.love-recipient-mode .love-tool-section .tool-layout { display: block; width: min(100%, 760px); margin-inline: auto; }
body.love-recipient-mode .love-preview-column { max-width: 700px; margin-inline: auto; opacity: 1 !important; transform: none !important; }
body.love-recipient-mode .love-preview-wrap { min-height: auto; padding: clamp(18px, 4vw, 38px); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); }
body.love-recipient-mode .preview-actions { margin-top: 24px; }

/* Invitation presentation */
.invite-message {
  max-width: 780px;
  margin: 28px 0 0;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--gold);
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.35;
}
body.invite-recipient-mode .invite-creator-only { display: none !important; }
body.invite-recipient-mode .invite-recipient-only { display: flex !important; justify-content: center; }
body.invite-recipient-mode .invite-result { display: block; min-height: 100svh; padding-top: calc(128px + var(--sale-bar-height)); }
body.invite-recipient-mode .invite-paper { max-width: 980px; margin-inline: auto; }
body.invite-recipient-mode .after-invite-grid { max-width: 980px; margin-inline: auto; }

/* Scarce, content-led partner suggestions */
.after-invite-grid,
.suggestion-storyline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 18px;
  margin-top: 42px;
}
.after-invite-grid[hidden] {
  display: none !important;
}
.story-suggestion,
.featured-suggestion-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 9px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.story-suggestion:not(.story-suggestion-static):hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-suggestion strong,
.featured-suggestion-card strong { font-family: var(--serif); font-size: 29px; line-height: 1.08; font-weight: 500; }
.story-suggestion > span:not(.suggestion-label),
.featured-suggestion-copy > span:not(.suggestion-label):not(.featured-business-name):not(.text-link) { color: var(--muted); font-size: 13px; }
.suggestion-label { color: var(--rose); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.featured-suggestion[hidden] { display: none !important; }
.featured-suggestion-card { padding: 0; }
.featured-suggestion-photo { width: 100%; min-height: 190px; background-position: center; background-size: cover; }
.featured-suggestion-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; padding: 26px; }
.featured-business-name { color: var(--gold); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.story-suggestion-static {
  cursor: default;
}
.story-suggestion-static:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}
.featured-suggestion-link {
  align-self: flex-start;
}

.partnership-visual { background-image: url("../images/photos/scene-marina.webp"); }
.partnership-positions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.position-card { min-height: 330px; padding: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.position-number { color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.position-card h3 { margin: 72px 0 0; font-family: var(--serif); font-size: 37px; line-height: 1.05; font-weight: 500; }
.position-card p { margin: 16px 0 0; color: rgba(255,255,255,.65); }

@media (max-width: 760px) {
  .message-option span { font-size: 14px; }
  body.love-recipient-mode .love-tool-section,
  body.invite-recipient-mode .invite-result { padding-top: calc(104px + var(--sale-bar-height)); }
  .partnership-positions { grid-template-columns: 1fr; }
  .position-card { min-height: 270px; }
  .position-card h3 { margin-top: 42px; }
}


/* Text-only brand and concise name fields */
.brand { gap: 0; }
.name-field .name-input { width: min(100%, 300px); }
.article-more { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-family: var(--sans); font-size: 14px; }
.editorial-layout.editorial-single { grid-template-columns: minmax(0, 820px); justify-content: center; }

/* Invitation photograph with sender and recipient names */
.invite-cover {
  position: relative;
  min-height: clamp(310px, 48vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: calc(clamp(28px, 5vw, 60px) * -1) calc(clamp(28px, 5vw, 60px) * -1) 42px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius) var(--radius) 0 0;
  color: white;
  background: var(--ink) url("../images/photos/scene-creek.webp") center/cover;
  isolation: isolate;
}
.invite-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,17,31,.08) 8%, rgba(7,17,31,.18) 42%, rgba(7,17,31,.9) 100%);
}
.invite-cover-copy { width: 100%; }
.invite-cover-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: none;
}
.invite-cover-brand .domain-inline { font-size: 16px; letter-spacing: -.04em; }
.invite-cover h2 {
  margin: 18px 0 0;
  max-width: 900px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(44px, 7.2vw, 88px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 500;
  text-shadow: 0 4px 24px rgba(0,0,0,.28);
}

@media (max-width: 620px) {
  .brand-domain { font-size: 17.5px; }
  .brand { gap: 0; }
  .name-field .name-input { width: 100%; }
  .invite-cover { min-height: 360px; margin-bottom: 30px; }
  .invite-cover h2 { font-size: clamp(42px, 13vw, 62px); }
}

@media (max-width: 390px) {
  .brand-domain { font-size: 15.5px; }
}

/* August 2026 public-facing refinements */
.brand { gap: 0; }
.brand-domain { font-size: 22px; }
.footer-domain-brand .brand-domain { font-size: 23px; }
.love-card-brand { gap: 0; }
.form-group.compact-field { max-width: 330px; }
.name-input { max-width: 330px; }

.invite-paper {
  padding: 0;
  background: #fffaf2;
}
.invite-paper::before { display: none; }
.invite-paper > * { position: relative; z-index: 1; }
.invite-cover {
  position: relative;
  min-height: clamp(370px, 52vw, 570px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 5vw, 52px);
  overflow: hidden;
  color: white;
  background: var(--ink) url("../images/photos/scene-desert.webp") center/cover;
  isolation: isolate;
}
.invite-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,17,31,.28) 0%, rgba(7,17,31,.08) 35%, rgba(7,17,31,.88) 100%);
}
.invite-cover-brand { align-self: flex-start; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.invite-cover-brand .domain-inline { font-size: clamp(17px, 2.3vw, 23px); font-weight: 750; }
.invite-cover .domain-inline .domain-from { color: #fffaf2; }
.invite-cover .domain-inline .domain-dubai { color: var(--gold-2); }
.invite-cover .domain-inline .domain-with { color: #e49aa5; }
.invite-cover .domain-inline .domain-love { color: #76c9d0; }
.invite-cover .domain-inline .domain-com { color: var(--mist); }
.invite-cover-copy { max-width: 880px; text-shadow: 0 3px 24px rgba(0,0,0,.45); }
.invite-cover-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.invite-cover h2,
.invite-paper .invite-cover h2 {
  margin: 0;
  max-width: 900px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .92;
}
.invite-paper-body { padding: clamp(30px, 5vw, 60px); }
.invite-paper-body .invite-message { margin-top: 0; }

.editorial-layout.editorial-layout-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}
.article-more {
  margin-top: 42px !important;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--sans);
  font-size: 15px;
}
.article-more .text-link { font-weight: 850; }

@media (max-width: 620px) {
  .brand-domain { font-size: 18px; }
  .footer-domain-brand .brand-domain { font-size: 20px; }
  .form-group.compact-field,
  .name-input { max-width: 100%; }
  .invite-cover { min-height: 430px; padding: 25px 22px; }
  .invite-cover h2,
  .invite-paper .invite-cover h2 { font-size: clamp(42px, 13vw, 60px); }
  .invite-paper-body { padding: 28px 21px; }
}

@media (max-width: 390px) {
  .brand-domain { font-size: 16px; }
}

.partnership-email { margin-top: 14px; color: var(--muted); font-size: 13px; }

/* Final invitation-cover alignment */
.invite-cover {
  margin: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

@media (max-width: 620px) {
  .invite-cover {
    min-height: 350px;
    margin: 0;
    padding: 24px 20px;
  }

  .invite-cover h2,
  .invite-paper .invite-cover h2 {
    max-width: 100%;
    font-size: clamp(35px, 10.5vw, 43px);
    line-height: .97;
    letter-spacing: -.045em;
  }

  .invite-cover-brand .domain-inline {
    font-size: 15px;
  }
}

/* Clear, visible link sharing for Love Drops and invitations */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.share-link-panel {
  width: min(100%, 920px);
  margin: 18px auto 0;
}

.share-link-panel[hidden] { display: none !important; }

.share-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(7,17,31,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
}

.share-link-input {
  min-width: 0;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: 500 16px/1.4 var(--sans);
}

.share-link-input:focus-visible {
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(215,170,96,.28);
}

.share-link-copy {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--ink);
  font: 850 14px/1 var(--sans);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease;
}

.share-link-copy:hover { transform: translateY(-1px); background: var(--ink-2); }
.share-link-copy:focus-visible { outline: 3px solid rgba(215,170,96,.42); outline-offset: 2px; }

.gift-section-action { margin-top: 30px; }

@media (max-width: 620px) {
  .share-link-row { grid-template-columns: 1fr; }
  .share-link-copy { width: 100%; }
  .share-link-input { font-size: 14px; }
}


/* Invitation creator handoff */

body.invite-creator-result-mode .invite-builder-only { display: none !important; }
body.invite-creator-result-mode .site-header {
  background: rgba(7,17,31,.96);
  border-color: rgba(255,255,255,.1);
}
body.invite-creator-result-mode .invite-result { display: block; }
.invite-cover { scroll-margin-top: calc(92px + var(--sale-bar-height)); }

.invite-primary-controls {
  padding: 22px clamp(22px, 5vw, 60px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(246,240,230,.72);
}
.invite-primary-controls .button-row { margin-top: 0; }
.invite-primary-controls .share-link-panel,
.invite-secondary-share .share-link-panel {
  width: 100%;
  margin: 16px 0 0;
}
.invite-secondary-share {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}
.invite-secondary-share > .btn { min-width: 180px; }

@media (max-width: 620px) {
  .invite-cover { scroll-margin-top: calc(84px + var(--sale-bar-height)); }
  .invite-primary-controls { padding: 18px 20px; }
  .invite-primary-controls .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
  .invite-primary-controls .btn { min-height: 48px; padding-inline: 17px; }
  .invite-secondary-share > .btn { width: 100%; }
}

@media print {
  .invite-primary-controls,
  .invite-secondary-share { display: none !important; }
}

/* Mobile navigation, message choices, and invitation follow-on layout */
@media (max-width: 980px) {
  .site-header {
    overflow: visible;
  }

  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.nav-open .site-header {
    z-index: 1000;
    background: #07111f;
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav {
    position: absolute;
    inset: auto 0 auto 0;
    top: 100%;
    z-index: 1001;
    width: 100%;
    height: calc(100dvh - var(--sale-bar-height) - var(--nav-height));
    min-height: calc(100svh - var(--sale-bar-height) - var(--nav-height));
    padding: 28px 36px 54px;
    background: #07111f;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .35s var(--ease), opacity .2s ease, visibility 0s linear .35s;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
}

.message-choice-list {
  display: grid;
  gap: 12px;
}

.message-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}

.message-option:hover {
  transform: translateY(-1px);
  border-color: rgba(215,170,96,.65);
}

.message-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(215,170,96,.13);
  box-shadow: 0 0 0 3px rgba(215,170,96,.08);
}

.message-option input {
  position: static;
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  opacity: 1;
  pointer-events: auto;
  accent-color: var(--gold);
  cursor: pointer;
}

.message-option label {
  display: block;
  min-width: 0;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
}

.message-option input:checked + label {
  color: var(--ink);
}

.message-option input:focus-visible {
  outline: 3px solid rgba(215,170,96,.28);
  outline-offset: 2px;
}

.after-invite-grid {
  align-items: stretch;
}

.story-suggestion,
.featured-suggestion-card {
  min-width: 0;
}

.story-suggestion > *,
.featured-suggestion-copy > * {
  margin: 0;
}

.story-suggestion h3,
.featured-suggestion-copy h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}

.suggestion-description,
.featured-suggestion-description {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.story-suggestion .text-link,
.featured-suggestion-copy .text-link {
  margin-top: 4px;
}

@media (max-width: 620px) {
  .site-nav {
    top: 100%;
    height: calc(100dvh - 74px);
    min-height: calc(100svh - 74px);
    padding: 24px 24px 44px;
  }

  .message-option {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 14px;
  }

  .message-option input {
    width: 18px;
    height: 18px;
  }

  .message-option label {
    font-size: 15px;
    line-height: 1.5;
  }

  .after-invite-grid,
  .suggestion-storyline {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .story-suggestion,
  .featured-suggestion-card {
    min-height: 0;
    border-radius: 20px;
  }

  .story-suggestion {
    gap: 10px;
    padding: 24px 22px;
  }

  .featured-suggestion-card {
    padding: 0;
  }

  .featured-suggestion-photo {
    min-height: 180px;
  }

  .featured-suggestion-copy {
    gap: 10px;
    padding: 24px 22px;
  }

  .story-suggestion h3,
  .featured-suggestion-copy h3 {
    font-size: 27px;
    line-height: 1.12;
  }

  .suggestion-description,
  .featured-suggestion-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .share-link-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
  }

  .share-link-input {
    padding: 11px 10px;
    font-size: 14px;
  }

  .share-link-copy {
    width: auto;
    min-width: 82px;
    padding-inline: 16px;
  }
}

/* Ready-to-send sharing context */


.share-link-copy { white-space: nowrap; }

@media (max-width: 480px) {
  .share-link-row { grid-template-columns: 1fr; }
  .share-link-copy { width: 100%; }
}


/* Domain acquisition notice */
.domain-sale-banner {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  height: var(--sale-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(90deg, #f4d99d, var(--gold-2));
  border-bottom: 1px solid rgba(7,17,31,.14);
  box-shadow: 0 3px 14px rgba(2,8,15,.08);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .015em;
  text-align: center;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.domain-sale-banner:hover { background: #fff1c9; }
.domain-sale-banner:focus-visible {
  outline: 3px solid white;
  outline-offset: -4px;
}
.domain-sale-mobile { display: none; }
.domain-sale-arrow {
  flex: 0 0 auto;
  font-size: 1.15em;
  transition: transform .2s var(--ease);
}
.domain-sale-banner:hover .domain-sale-arrow { transform: translateX(3px); }

@media (max-width: 620px) {
  .domain-sale-banner {
    gap: 6px;
    padding-inline: 12px;
    font-size: 13px;
  }
  .domain-sale-desktop { display: none; }
  .domain-sale-mobile { display: inline; }
}

@media (max-width: 360px) {
  .domain-sale-banner { font-size: 12px; }
}
