/* Bespoke styles for the public marketing pages (home + contact). Not part of the
   Tailwind build — loaded only by PublicLayout, alongside the compiled /styles.css. */

.landing {
  --white: #ffffff;
  --paper: #f2f4f7;
  --ink: #1e2530;
  --grey: #5b6472;
  --grey-soft: #98a1ad;
  --line: rgba(30, 50, 80, 0.14);
  --accent: #3a5a9b;
  --accent-bright: #4d7bd6;
}

.landing {
  background: var(--paper);
  color: var(--ink);
  font-family: "Plex Sans", ui-sans-serif, system-ui, sans-serif;
  min-height: 100dvh;
}
.landing .stage {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.landing h1,
.landing h2 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
  text-wrap: balance;
}
.landing p {
  margin: 0;
}
.landing a {
  color: inherit;
}

/* ---------- brand bar ---------- */
.landing .brand-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 24px 30px;
  border-bottom: 1px solid var(--line);
}
.landing .brand-name {
  font-family: "Arial Rounded MT Bold", "Arial Rounded MT", "Arial Rounded", Arial, sans-serif;
  font-size: clamp(2.1rem, 3.7vw, 4.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #152a5e;
  text-shadow: 0 2px 2px rgba(10, 15, 30, 0.4), 0 12px 22px rgba(10, 15, 30, 0.4);
  margin: 0;
  text-align: center;
  text-decoration: none;
}

.landing .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.15s ease;
}
.landing .back-link:hover {
  color: var(--accent);
}

/* ---------- split hero (home page) ---------- */
.landing .split {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  position: relative;
}
.landing .split::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 15%, var(--line) 85%, transparent);
}
@media (max-width: 900px) {
  .landing .split {
    display: block;
  }
  .landing .split::after {
    display: none;
  }
}

.landing .left {
  min-width: 0;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4.5vw, 64px);
  gap: 20px;
}
.landing .eyebrow {
  font-family: "Plex Mono", monospace;
  font-size: clamp(1.5rem, 5.4cqw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  text-align: center;
  color: var(--accent);
}
.landing .slogan {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 8cqw, 4.4rem);
  color: var(--ink);
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}
.landing .materials-line {
  font-family: "Plex Mono", monospace;
  font-size: clamp(1rem, 2.7cqw, 1.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent);
}

.landing .trunk-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
.landing .medallion {
  position: relative;
  width: min(280px, 45vw);
  aspect-ratio: 1 / 1;
  border-radius: 11%;
  overflow: hidden;
  border: 4px solid var(--accent-bright);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 26px 40px rgba(20, 30, 50, 0.4));
}
.landing .medallion img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 55%;
}

.landing .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.95em 1.4em;
  border-radius: 7px;
  cursor: pointer;
  background: linear-gradient(180deg, #35353b, #222226);
  color: var(--white);
  border: 1px solid #17171a;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 2px 3px rgba(15, 15, 17, 0.35),
    0 10px 16px -6px rgba(20, 22, 28, 0.4),
    0 20px 32px -12px rgba(20, 22, 28, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.landing .btn:hover {
  background: linear-gradient(180deg, #3d3d44, #28282c);
  transform: translateY(-1px);
}
.landing .btn:active {
  transform: translateY(8px) scale(0.93);
  transition: transform 0.06s ease-out, box-shadow 0.06s ease-out, background 0.15s ease;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.55), 0 1px 1px rgba(15, 15, 17, 0.3);
}

/* ---------- right / product window ---------- */
.landing .right {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4.5vw, 64px);
}
.landing .window {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 640px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px -28px rgba(20, 30, 50, 0.28);
}
.landing .window__label {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  font-family: "Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(20, 24, 32, 0.55);
  padding: 5px 9px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.landing .slides {
  position: absolute;
  inset: 0;
}
.landing .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 6s ease;
  pointer-events: none;
}
.landing .slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.landing .slide__surface {
  position: absolute;
  inset: 0;
}
.landing .slide__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.landing .slide__info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 22px 22px;
  background: linear-gradient(to top, rgba(10, 12, 17, 0.78), transparent 75%);
}
.landing .slide__name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: #f7f9fc;
}
.landing .slide__desc {
  margin-top: 4px;
  font-size: 0.88rem;
  color: #c6ccd6;
  max-width: 34ch;
}
.landing .slide__meta {
  display: inline-block;
  margin-top: 10px;
  font-family: "Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.landing .surf-greyoak {
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 26px),
    repeating-linear-gradient(100deg, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px 13px),
    linear-gradient(120deg, #8b929c, #565d68 55%, #6d7480);
}
.landing .surf-steel {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 3px),
    linear-gradient(160deg, #82868a, #4c4f52 60%, #6a6d70);
}
.landing .surf-acrylic {
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(150, 180, 235, 0.14), transparent 55%),
    linear-gradient(150deg, #262a30, #0e1013 70%);
}
.landing .surf-slate {
  background:
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px),
    linear-gradient(140deg, #3c4044, #1b1d1f 65%);
}
.landing .surf-navy {
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.2) 0 2px, transparent 3px) 0 0/14px 14px,
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.16) 0 2px, transparent 3px) 0 0/18px 18px,
    linear-gradient(135deg, #3d5580, #182338 65%);
}

.landing .win-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 24, 32, 0.5);
  color: #e8ecf2;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.landing .win-nav:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: rgba(20, 24, 32, 0.68);
}
.landing .win-prev {
  left: 14px;
}
.landing .win-next {
  right: 14px;
}

.landing .dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.landing .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.landing .dot.is-active {
  background: var(--accent-bright);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .landing .trunk-wrap {
    flex: none;
    padding: 32px 0;
  }
  .landing .right {
    padding-top: 0;
  }
  .landing .window {
    height: min(96vw, 420px);
  }
}

/* ---------- contact page ---------- */
.landing .content {
  flex: 1;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 5vw, 64px) 24px 64px;
}
.landing .content > * {
  width: 100%;
  max-width: 640px;
}
.landing .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.landing .contact-eyebrow {
  font-family: "Plex Mono", monospace;
  font-size: clamp(1rem, 2.7cqw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: var(--accent);
}
.landing .lede {
  margin-top: 14px;
  text-align: center;
  color: var(--grey);
  font-size: 1.05rem;
}
.landing .info-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.landing .info-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.landing .info-label {
  font-family: "Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-soft);
  flex: none;
}
.landing .info-value {
  font-size: 1.05rem;
  text-align: right;
  text-decoration: none;
}
.landing .info-value.link:hover {
  color: var(--accent);
}
.landing .form-title {
  margin-top: 48px;
  font-family: "Plex Mono", monospace;
  font-size: clamp(1rem, 2.7cqw, 1.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  color: var(--accent);
}
.landing form.inquiry-form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.landing .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.landing .field--full {
  grid-column: 1 / -1;
}
.landing .field label {
  font-family: "Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.landing .field input,
.landing .field select,
.landing .field textarea {
  font: inherit;
  font-family: "Plex Sans", sans-serif;
  font-size: 0.94rem;
  padding: 0.7em 0.85em;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.landing .field textarea {
  resize: vertical;
  min-height: 96px;
}
.landing .field input:focus,
.landing .field select:focus,
.landing .field textarea:focus {
  outline: 2px solid var(--accent-bright);
  outline-offset: 1px;
}
.landing form.inquiry-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--accent);
  border-color: var(--accent);
}
.landing form.inquiry-form .btn:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}
@media (max-width: 520px) {
  .landing form.inquiry-form {
    grid-template-columns: 1fr;
  }
}
.landing .flash {
  margin-top: 16px;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
}
.landing .flash.success {
  background: #ecfdf5;
  color: #065f46;
}
.landing .flash.error {
  background: #fef2f2;
  color: #991b1b;
}
