:root {
  --white: #ffffff;
  --clean-white: #fbf7f4;
  --soft-white: #f8f2ed;
  --ink: #080808;
  --ink-soft: #34302d;
  --muted: #6d625b;
  --crimson: #8b0015;
  --dark-crimson: #5e000e;
  --gold: #cba24a;
  --bronze: #a76524;
  --gold-pale: #e8d7ae;
  --line: rgba(139, 0, 21, 0.16);
  --gold-line: rgba(203, 162, 74, 0.26);
  --shadow: 0 16px 44px rgba(8, 8, 8, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--clean-white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(203, 162, 74, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--white) 0%, var(--clean-white) 58%, var(--white) 100%);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.announcement,
.site-header,
main,
.site-footer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  color: var(--clean-white);
  background: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(203, 162, 74, 0.12);
}

.brand {
  display: grid;
  width: 112px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-rule {
  width: 78px;
  height: 1px;
  margin: -1px 0 4px;
  background: var(--gold-soft, #d6b766);
}

.brand-sub {
  color: var(--ink);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 44px);
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.join-pill {
  display: inline-flex;
  min-width: 160px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 5px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 8px 20px rgba(94, 0, 14, 0.16);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.icon-link {
  display: grid;
  width: 26px;
  height: 44px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 47%, rgba(251, 247, 244, 0.2) 64%, rgba(8, 8, 8, 0.02) 100%),
    var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 30px 56px 42px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb span:last-child {
  color: var(--bronze);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.screens-heading h2,
.cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.98;
}

.hero h1 em {
  color: var(--dark-crimson);
  font-style: italic;
}

.hero h1 span {
  color: var(--bronze);
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.58em;
  font-weight: 300;
  vertical-align: 0.08em;
}

.hero-rule {
  width: 64px;
  height: 1px;
  margin: 28px 0 22px;
  background: var(--bronze);
}

.hero-text {
  max-width: 505px;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.primary-btn,
.outline-btn,
.interest-form button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-btn {
  min-width: 278px;
  padding: 0 26px;
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 12px 28px rgba(139, 0, 21, 0.18);
}

.outline-btn {
  min-width: 178px;
  padding: 0 26px;
  border: 1px solid rgba(139, 0, 21, 0.52);
  color: var(--dark-crimson);
  background: rgba(255, 255, 255, 0.76);
}

.hero-media {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 44%, rgba(203, 162, 74, 0.38), transparent 10rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(8, 8, 8, 0.92) 38%, #050403 100%);
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  right: 7%;
  top: 18%;
  width: min(300px, 36vw);
  min-height: 330px;
  border: 1px solid rgba(203, 162, 74, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(320px, 46vw);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.36));
  transform: translateX(-8vw);
}

.feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: -30px 36px 38px;
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.feature-strip article {
  display: grid;
  min-height: 190px;
  justify-items: center;
  padding: 30px 20px 24px;
  text-align: center;
}

.feature-strip article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.2);
}

.feature-strip h2 {
  margin: 18px 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.feature-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  color: var(--bronze);
}

.phone-icon::before {
  position: absolute;
  inset: 3px 11px;
  border: 1.8px solid currentColor;
  border-radius: 5px;
  content: "";
}

.phone-icon::after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.sparkle-icon::before,
.sparkle-icon::after {
  position: absolute;
  content: "";
}

.sparkle-icon::before {
  inset: 7px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.sparkle-icon::after {
  left: 13px;
  top: 19px;
  width: 15px;
  height: 8px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg);
}

.flash-icon::before {
  position: absolute;
  left: 13px;
  top: 2px;
  width: 15px;
  height: 34px;
  background: currentColor;
  clip-path: polygon(58% 0, 7% 53%, 43% 53%, 32% 100%, 93% 39%, 57% 39%);
  content: "";
}

.bell-icon::before {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 22px;
  height: 24px;
  border: 1.8px solid currentColor;
  border-radius: 14px 14px 8px 8px;
  content: "";
}

.bell-icon::after {
  position: absolute;
  left: 17px;
  bottom: 5px;
  width: 8px;
  height: 3px;
  border-radius: 0 0 8px 8px;
  border-bottom: 1.8px solid currentColor;
  content: "";
}

.path-icon::before {
  position: absolute;
  left: 12px;
  top: 5px;
  width: 18px;
  height: 27px;
  border: 1.8px solid currentColor;
  border-radius: 50% 50% 55% 55%;
  content: "";
  transform: rotate(45deg);
}

.path-icon::after {
  position: absolute;
  left: 18px;
  top: 12px;
  width: 7px;
  height: 7px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
  content: "";
}

.clock-icon::before {
  position: absolute;
  inset: 6px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  content: "";
}

.clock-icon::after {
  position: absolute;
  left: 21px;
  top: 13px;
  width: 8px;
  height: 10px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  content: "";
}

.screens-section {
  padding: 18px 30px 44px;
  background: linear-gradient(180deg, rgba(251, 247, 244, 0) 0%, rgba(251, 247, 244, 0.9) 100%);
}

.screens-heading {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(280px, 560px);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.screens-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
}

.screens-heading p {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2.1vw, 28px);
  align-items: start;
}

.phone-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.phone-card img {
  width: min(100%, 156px);
  aspect-ratio: 130 / 286;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(8, 8, 8, 0.16));
}

.phone-card h3 {
  min-height: 28px;
  margin: 20px 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.phone-card p {
  max-width: 190px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) minmax(360px, 520px);
  gap: 28px;
  align-items: center;
  min-height: 176px;
  margin: 8px 36px 40px;
  padding: 28px 34px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.9) 55%, rgba(5, 4, 3, 0.74)),
    url("assets/crops/cta-brush-band.png") right center / cover no-repeat,
    #050403;
}

.cta-band::before {
  position: absolute;
  inset: -80px auto auto -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 162, 74, 0.28), transparent 68%);
  content: "";
}

.cta-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(203, 162, 74, 0.78);
  border-radius: 50%;
  color: var(--gold);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
}

.cta-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.cta-copy h2 {
  max-width: 640px;
}

.cta-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--clean-white);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

.legal-micro {
  margin-top: 7px !important;
  color: rgba(251, 247, 244, 0.72) !important;
  font-size: 12px !important;
  letter-spacing: 0.03em;
}

.interest-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  gap: 12px;
  align-self: center;
  min-width: 0;
}

.interest-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.interest-form input {
  min-width: 0;
  height: 54px;
  border: 1px solid rgba(251, 247, 244, 0.24);
  border-radius: 5px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 300;
}

.interest-form input::placeholder {
  color: rgba(251, 247, 244, 0.72);
}

.interest-form button {
  min-width: 278px;
  border: 0;
  padding: 0 24px;
  color: var(--white);
  background: var(--crimson);
  cursor: default;
}

.site-footer {
  display: grid;
  grid-template-columns: 210px 1fr 330px;
  gap: 46px;
  padding: 36px 36px 26px;
  background: rgba(251, 247, 244, 0.96);
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-brand .city {
  margin-top: 16px;
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.newsletter {
  padding-left: 28px;
  border-left: 1px solid rgba(203, 162, 74, 0.26);
}

.newsletter form {
  position: relative;
  display: flex;
  width: min(100%, 300px);
  height: 44px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.16);
  border-radius: 5px;
  background: var(--white);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 54px 0 16px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 300;
}

.newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  color: var(--white);
  background: var(--dark-crimson);
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
}

.legal nav {
  display: flex;
  gap: 22px;
}

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

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 26px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .feature-strip article:nth-child(4) {
    border-left: 0;
  }

  .feature-strip article:nth-child(n + 4) {
    border-top: 1px solid rgba(203, 162, 74, 0.2);
  }

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

  .cta-band {
    grid-template-columns: 80px 1fr;
  }

  .interest-form {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 210px 1fr;
  }

  .newsletter {
    grid-column: 1 / -1;
    padding: 28px 0 0;
    border-top: 1px solid rgba(203, 162, 74, 0.26);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .announcement {
    min-height: 40px;
    font-size: 11px;
    line-height: 1.4;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 16px 16px;
  }

  .brand-main {
    font-size: 38px;
  }

  .brand-sub {
    font-size: 8px;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .join-pill {
    min-width: 112px;
    height: 40px;
    padding: 0 12px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .icon-link {
    display: none;
  }

  .main-nav {
    flex: 0 0 100%;
    gap: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.07em;
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 26px 18px 30px;
  }

  .breadcrumb {
    margin-bottom: 24px;
    gap: 7px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media::before {
    inset: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0) 40%);
  }

  .hero-media::after {
    right: 8%;
    top: 15%;
    width: 56vw;
    min-height: 250px;
  }

  .hero-media img {
    width: min(295px, 72vw);
    transform: translateX(-8vw);
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin: 0 16px 34px;
  }

  .feature-strip article {
    min-height: 0;
    padding: 24px 22px;
  }

  .feature-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(203, 162, 74, 0.2);
  }

  .screens-section {
    padding: 0 16px 36px;
  }

  .screens-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .screens-heading h2 {
    font-size: 38px;
  }

  .screens-heading p {
    font-size: 16px;
  }

  .phone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }

  .phone-card img {
    width: min(100%, 132px);
  }

  .phone-card h3 {
    font-size: 11px;
  }

  .phone-card p {
    font-size: 14px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    margin: 0 16px 34px;
    padding: 26px 22px;
  }

  .cta-mark {
    width: 68px;
    height: 68px;
  }

  .interest-form {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .interest-form button {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 16px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .newsletter {
    grid-column: auto;
  }

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

  .legal nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
