:root {
  --cream: #fbf8f1;
  --navy: #073b57;
  --red: #df302b;
  --gold: #f5b91d;
  --muted: #415866;
  --line: #d9dfdc;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
}

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

.landing-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0 max(32px, calc((100vw - 1382px) / 2));
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 55%, #f5faf8 100%);
}

.corner-shape {
  position: absolute;
  width: 390px;
  height: 390px;
  right: -170px;
  top: -105px;
  border-radius: 50%;
  background: rgba(247, 236, 191, .42);
}

.landing-header {
  height: 85px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
  border-bottom: 1px solid var(--line);
}

.landing-logo {
  width: 122px;
  height: 65px;
  display: flex;
  align-items: center;
}

.landing-logo img {
  width: 122px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #64727a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.coming-soon i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(245,185,29,.13);
  animation: status-blink 1.8s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(245,185,29,.13);
  }
  50% {
    opacity: .35;
    box-shadow: 0 0 0 10px rgba(245,185,29,0);
  }
}

.landing-hero {
  min-height: calc(100vh - 133px);
  position: relative;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
  padding-bottom: 45px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  transform: translateY(-5px);
}

.overline {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .23em;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 4.55vw, 86px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -.045em;
}

.hero-copy h1 em {
  color: var(--red);
  font-weight: inherit;
  font-style: normal;
}

.intro {
  margin: 34px 0 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.intro strong { color: var(--navy); }

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--gold);
  font-size: 12px;
}

.benefits b { color: #314854; }

.contact-button {
  width: 222px;
  min-height: 53px;
  margin-top: 31px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(223,48,43,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-button span { font-size: 22px; font-weight: 400; }
.contact-button:hover { transform: translateY(-3px); box-shadow: 0 19px 34px rgba(223,48,43,.23); }

.hero-art {
  position: absolute;
  z-index: 2;
  right: -5px;
  top: 50%;
  width: 610px;
  height: 715px;
  transform: translateY(-48%);
}

.art-circle {
  position: absolute;
  width: 570px;
  height: 570px;
  left: 0;
  top: 35px;
  border: 1px solid #d7e5e5;
  border-radius: 50%;
  background: rgba(226, 242, 242, .48);
  animation: circle-breathe 5s ease-in-out infinite;
}

.art-circle-inner {
  position: absolute;
  inset: 39px;
  border: 2px dashed rgba(223,48,43,.28);
  border-radius: 50%;
  animation: circle-rotate 14s linear infinite;
}

.art-circle-inner::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(245,185,29,.25), 0 4px 10px rgba(7,59,87,.18);
  transform: translateX(-50%);
}

@keyframes circle-breathe {
  0%, 100% {
    background: rgba(226, 242, 242, .42);
    box-shadow: 0 0 0 0 rgba(223,48,43,0);
  }
  50% {
    background: rgba(226, 242, 242, .64);
    box-shadow: 0 0 45px 8px rgba(223,48,43,.06);
  }
}

@keyframes circle-rotate {
  to { transform: rotate(360deg); }
}

.hero-art img {
  position: absolute;
  z-index: 3;
  width: 590px;
  max-height: 690px;
  right: -4px;
  bottom: -5px;
  object-fit: contain;
  filter: drop-shadow(0 25px 20px rgba(27,53,60,.11));
  animation: cart-float 3.8s ease-in-out infinite;
}

@keyframes cart-float {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 9px; }
}

.landing-footer {
  height: 48px;
  position: absolute;
  z-index: 5;
  left: max(32px, calc((100vw - 1382px) / 2));
  right: max(32px, calc((100vw - 1382px) / 2));
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #84939a;
  font-size: 9px;
  letter-spacing: .08em;
}

.landing-footer p { margin: 0; }

@media (max-width: 1100px) {
  .landing-shell { padding-inline: 38px; }
  .landing-hero { grid-template-columns: 55% 45%; }
  .hero-copy h1 { font-size: 59px; }
  .hero-art { width: 500px; height: 610px; right: -70px; }
  .art-circle { width: 475px; height: 475px; }
  .hero-art img { width: 485px; }
  .desktop-break { display: none; }
  .intro { max-width: 560px; }
  .landing-footer { left: 38px; right: 38px; }
}

@media (max-width: 760px) {
  .landing-shell { min-height: 100svh; padding: 0 22px 72px; overflow-y: auto; }
  .corner-shape { width: 250px; height: 250px; right: -125px; top: -100px; }
  .landing-header { height: 75px; }
  .landing-logo, .landing-logo img { width: 105px; }
  .coming-soon { font-size: 9px; }
  .landing-hero { min-height: auto; display: flex; flex-direction: column; align-items: stretch; padding: 66px 0 20px; }
  .hero-copy { transform: none; text-align: center; }
  .overline { margin-bottom: 18px; font-size: 10px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 62px); }
  .intro { margin: 25px auto 20px; font-size: 14px; line-height: 1.7; }
  .benefits { justify-content: center; gap: 10px 18px; }
  .contact-button { margin-top: 27px; }
  .hero-art { position: relative; width: 100%; height: 430px; right: auto; top: auto; margin-top: 15px; transform: none; }
  .art-circle { width: min(92vw, 390px); height: min(92vw, 390px); left: 50%; top: 15px; transform: translateX(-50%); }
  .hero-art img { width: min(105vw, 440px); right: 50%; bottom: -5px; transform: translateX(50%); }
  .landing-footer { position: relative; height: auto; left: auto; right: auto; bottom: auto; padding: 18px 0 0; gap: 12px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
