:root {
  --bg: #0d0d0d;
  --surface: #131313;
  --surface-2: #1a1919;
  --line: #2a2a2a;
  --line-strong: #4e4639;
  --text: #e5e2e1;
  --muted: #9b9693;
  --faint: #6f6a67;
  --gold: #e9c176;
  --gold-dark: #412d00;
  --coral: #ffb4ab;
  --green: #c4c9b1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
}

a {
  color: inherit;
}

.sample-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(233, 193, 118, 0.05), transparent 360px),
    var(--bg);
}

.sample-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(14px);
}

.sample-header-inner,
.sample-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.sample-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-icon {
  position: relative;
  width: 34px;
  height: 48px;
  border: 1px solid var(--gold);
  transform: rotate(-10deg);
  flex: 0 0 auto;
}

.brand-icon::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 46px;
  height: 1px;
  background: var(--coral);
  transform: rotate(45deg);
}

.brand-type {
  display: flex;
  flex-direction: column;
  font-family: Newsreader, Georgia, serif;
  font-size: 18px;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-type span:last-child {
  color: var(--gold);
}

.top-cta,
.primary-cta,
.secondary-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid var(--gold);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.top-cta,
.secondary-cta {
  color: var(--gold);
  background: transparent;
}

.top-cta:hover,
.secondary-cta:hover {
  background: var(--gold);
  color: var(--gold-dark);
}

.primary-cta {
  background: var(--gold);
  color: var(--gold-dark);
}

.primary-cta:hover {
  background: #d8b86f;
}

.hero {
  padding: 78px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: center;
}

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

h1,
h2,
h3,
.serif {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
}

h1 {
  font-size: 64px;
  line-height: 1.02;
  font-style: italic;
  margin: 0;
  max-width: 820px;
}

.lead {
  max-width: 690px;
  color: #c2bebc;
  font-size: 18px;
  line-height: 1.7;
  margin: 28px 0 0;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  margin-top: 44px;
  max-width: 820px;
}

.meta-item {
  background: var(--surface);
  padding: 18px;
}

.meta-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.meta-value {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.phone-wrap {
  justify-self: end;
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iphone-device {
  position: relative;
  width: min(100%, 342px);
  aspect-ratio: 9 / 19.35;
  border-radius: 48px;
  padding: 10px;
  background:
    linear-gradient(145deg, #666 0%, #171717 18%, #050505 54%, #3b3b3b 100%);
  border: 1px solid #4a4a4a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.55);
}

.iphone-button {
  position: absolute;
  width: 3px;
  border-radius: 99px;
  background: #3a3a3a;
}

.iphone-button-left {
  left: -3px;
  top: 118px;
  height: 70px;
}

.iphone-button-right {
  right: -3px;
  top: 152px;
  height: 88px;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid #111;
  background:
    radial-gradient(circle at top left, rgba(233, 193, 118, 0.12), transparent 34%),
    linear-gradient(180deg, #111, #030303 72%);
}

.iphone-statusbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 28px;
  color: #f2efea;
  font-size: 12px;
  font-weight: 800;
}

.dynamic-island {
  position: absolute;
  left: 50%;
  top: 9px;
  z-index: 4;
  width: 92px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ios-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(16px);
}

.ios-back {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.ios-avatar {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #242424;
  border: 1px solid rgba(233, 193, 118, 0.5);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.ios-contact,
.ios-subtitle {
  display: block;
}

.ios-contact {
  color: #f2efea;
  font-size: 13px;
  font-weight: 800;
}

.ios-subtitle {
  color: #8f8a87;
  font-size: 10px;
  margin-top: 2px;
}

.ios-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px 84px;
}

.ios-bubble {
  max-width: 82%;
  width: fit-content;
  border-radius: 20px 20px 20px 6px;
  padding: 11px 13px;
  color: #ede9e6;
  font-size: 13px;
  line-height: 1.42;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ios-bubble.gold {
  margin-left: auto;
  border-radius: 20px 20px 6px 20px;
  background: var(--gold);
  color: var(--gold-dark);
  border-color: var(--gold);
}

.message-title {
  display: block;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-indicator {
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 110px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.72);
}

.phone-proof-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  border: 1px solid var(--line-strong);
  color: var(--gold);
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.section.alt {
  background: #101010;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-style: italic;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.persona-card,
.memo-card,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--surface);
}

.persona-card {
  padding: 30px;
  margin-top: 36px;
}

.persona-grid,
.memo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.persona-card h2 {
  margin: 0 0 24px;
  font-size: 34px;
  font-style: italic;
}

.field-label {
  display: block;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.field-copy {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.route-list {
  display: grid;
  gap: 22px;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.route-copy {
  padding: 28px;
}

.route-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.route-card h3 {
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
  font-style: italic;
}

.address {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.route-move {
  color: #d0cbc8;
  line-height: 1.68;
  margin: 22px 0 0;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.intel-box {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-frame {
  width: 100%;
  min-height: 100%;
  height: 360px;
  border: 0;
  border-left: 1px solid var(--line);
  filter: grayscale(1) contrast(0.95);
}

.memo-grid {
  margin-top: 30px;
}

.memo-card {
  padding: 26px;
}

.memo-card h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 26px;
  font-style: italic;
}

.memo-card ul,
.memo-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.memo-card li + li {
  margin-top: 10px;
}

.wide-card {
  grid-column: span 2;
}

.full-card {
  grid-column: 1 / -1;
}

.quote-panel {
  border-left: 1px solid var(--gold);
  padding-left: 24px;
  color: #cfc9c5;
  font-family: Newsreader, Georgia, serif;
  font-size: 30px;
  line-height: 1.35;
  font-style: italic;
}

.cta-panel {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  font-style: italic;
}

.cta-panel p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 0;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  padding: 34px 24px;
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .route-card,
  .persona-grid,
  .memo-grid {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    justify-self: stretch;
    max-width: 430px;
  }

  .meta-grid,
  .intel-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 300px;
  }

  .wide-card {
    grid-column: auto;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .sample-header-inner,
  .sample-container {
    width: min(100% - 32px, 1280px);
  }

  .brand-type {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 36px;
  }

  .hero {
    padding-top: 52px;
  }

  .iphone-device {
    width: min(100%, 318px);
  }

  .route-copy,
  .memo-card,
  .persona-card,
  .cta-panel {
    padding: 22px;
  }
}
