:root {
  --color-background: #faf8f5;
  --color-card: #ffffff;
  --color-text: #1b1b1b;
  --color-text-soft: #5f6368;
  --color-divider: #e9e5df;
  --color-soft-section: #f6f3ee;
  --color-gold: #b58a56;
  --color-gold-hover: #a37744;
  --color-gold-light: #d6b07a;
  --color-navy: #24374a;
  --color-footer: #181614;
  --color-footer-text: #b7b0a7;
  --color-success: #4e7d5b;
  --shadow-card: 0 12px 40px rgba(20, 20, 20, 0.06);
  --shadow-button: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --radius-phone: 42px;
  --content-max: 1440px;
  --content-width: 1280px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 140px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
}

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

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

.site-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 11%, rgba(181, 138, 86, 0.18), transparent 25%),
    linear-gradient(180deg, #fffefa 0%, var(--color-background) 58%, var(--color-soft-section) 100%);
}

.site-header {
  min-height: 74px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 300px;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
  padding: 0 var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.09em;
  font-weight: 500;
}

.brand-mark {
  width: 44px;
  height: 44px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, var(--color-gold-hover), var(--color-gold-light));
  transform: skewX(-29deg);
}

.brand-mark::before,
.brand-mark::after {
  left: 5px;
  right: 5px;
  height: 10px;
}

.brand-mark::before {
  top: 7px;
}

.brand-mark::after {
  bottom: 7px;
}

.brand-mark span {
  inset: 10px 15px;
}

.site-nav,
.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 15px;
  font-weight: 500;
}

.header-actions {
  justify-content: flex-end;
  gap: var(--space-3);
  font-size: 15px;
  font-weight: 500;
}

.button {
  min-height: 48px;
  border: 2px solid #d8d1c9;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-card);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: var(--shadow-button);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #f4efe8;
  transform: translateY(-1px);
}

.button-gold {
  color: #fff;
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.button-gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

.button-dark {
  color: #fff;
  background: #090a10;
  border-color: #090a10;
}

.button-on-dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-full {
  width: 100%;
}

.section-grid,
.process-grid,
.trust-strip {
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(600px, 1.14fr);
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-3) 0 var(--space-2);
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--color-gold-hover);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 690px;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.05;
}

h1 span {
  color: var(--color-gold);
}

.hero-lede {
  max-width: 620px;
  margin: var(--space-2) 0 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.46;
}

.hero-actions {
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 680px;
  margin-top: var(--space-4);
}

.promise,
.trust-strip article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.promise {
  font-size: 14px;
  line-height: 1.25;
}

.line-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(181, 138, 86, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.68);
}

.production-console {
  min-height: 500px;
  display: grid;
  grid-template-columns: 250px minmax(260px, 1fr) 220px;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.console-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: var(--space-2);
  font-size: 14px;
}

.console-z {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-gold);
  font-weight: 600;
}

.console-card {
  padding: var(--space-2);
  border: 1px solid var(--color-divider);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.console-card + .console-card {
  margin-top: 12px;
}

.console-label {
  margin: 0 0 12px;
  color: #353232;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-list {
  margin: 0;
}

.brief-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
}

.brief-list dt {
  color: var(--color-text-soft);
}

.brief-list dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}

.mini-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 32px;
  gap: 7px;
}

.mini-strip img,
.approved-frame img {
  width: 100%;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mini-strip span {
  display: grid;
  place-items: center;
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  color: var(--color-gold);
  background: var(--color-card);
  font-size: 22px;
}

.approved-frame {
  position: relative;
}

.approved-frame img {
  height: 92px;
}

.approved-frame span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-gold);
}

.phone-preview {
  align-self: stretch;
  padding: 9px;
  border-radius: var(--radius-phone);
  background: #070707;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.phone-screen {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 34px;
  background: #111;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.65));
}

.duration,
.phone-screen p,
.playbar {
  position: absolute;
  z-index: 2;
}

.duration {
  top: 16px;
  left: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 13px;
}

.phone-screen p {
  left: 32px;
  right: 32px;
  bottom: 72px;
  color: #fff;
  font-size: 17px;
  line-height: 1.26;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.playbar {
  left: 32px;
  right: 32px;
  bottom: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
}

.playbar span {
  display: block;
  width: 44%;
  height: 100%;
  background: #fff;
}

.right-column {
  align-self: center;
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 10px 26px;
  font-size: 13px;
}

.status-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.status-list .complete::before {
  content: "✓";
  display: grid;
  place-items: center;
  color: var(--color-gold);
  font-size: 10px;
}

.status-list .active::before {
  box-shadow: 0 0 0 5px rgba(181, 138, 86, 0.14);
}

.format-label {
  margin: 0 0 12px;
  font-size: 13px;
}

.format-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: var(--space-3);
  text-align: center;
  color: var(--color-text-soft);
  font-size: 12px;
}

.format-options span::before {
  content: "";
  display: block;
  width: 36px;
  height: 42px;
  margin: 0 auto 7px;
  border: 1px solid #d8d1c9;
  border-radius: 6px;
  background: var(--color-card);
}

.format-options .selected {
  color: var(--color-gold);
}

.format-options .selected::before {
  background: #111;
  border-color: #111;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
  padding: var(--space-2) 0 0;
}

.process-card {
  overflow: hidden;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-input);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.process-image {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.2));
}

.process-image span {
  position: absolute;
  left: 12px;
  bottom: -16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-gold-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #261b13;
  font-size: 19px;
  font-weight: 500;
}

.process-copy {
  padding: 22px var(--space-2) var(--space-2);
}

.process-copy h2 {
  font-family: var(--font-body);
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-copy p {
  min-height: 96px;
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.4;
}

.process-copy a {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-gold-hover);
  font-size: 14px;
  font-weight: 500;
}

.cinematic-cta {
  max-width: var(--content-width);
  min-height: 112px;
  display: grid;
  grid-template-columns: 190px minmax(220px, 0.9fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-2) auto 0;
  overflow: hidden;
  border-radius: var(--radius-input);
  color: #fff;
  background: var(--color-footer);
}

.cinematic-cta > img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.cinematic-cta h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 500;
}

.cinematic-cta p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.cta-actions {
  gap: var(--space-2);
  flex-wrap: wrap;
  padding-right: var(--space-3);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-2) 0;
}

.trust-strip article {
  min-height: 84px;
  padding: 0 var(--space-3);
  border-right: 1px solid var(--color-divider);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.trust-strip p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.32;
}

.site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: 0;
  padding: 0 var(--space-5);
  color: var(--color-footer-text);
  background: var(--color-footer);
  font-size: 13px;
}

.footer-mark .brand-mark {
  width: 38px;
  height: 38px;
}

.site-footer nav {
  display: flex;
  gap: var(--space-3);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .production-console,
  .cinematic-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: var(--space-4) var(--space-3) var(--space-2);
  }

  .production-console {
    max-width: 760px;
    width: 100%;
    justify-self: center;
  }

  .phone-preview {
    max-width: 380px;
    width: 100%;
    justify-self: center;
  }

  .process-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .cinematic-cta {
    padding: var(--space-3);
  }

  .cinematic-cta > img {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: auto;
    padding: var(--space-2);
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 25px;
  }

  .header-actions {
    justify-content: space-between;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .promise-list,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: var(--space-3) var(--space-2);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .production-console {
    padding: var(--space-1);
  }

  .phone-screen {
    min-height: 430px;
  }

  .process-grid,
  .trust-strip {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-2) 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: var(--space-3) var(--space-2);
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
