:root {
  --shell-yellow: #ffd500;
  --shell-red: #d71920;
  --ink: #191919;
  --muted: #666;
  --line: #e6e0d5;
  --paper: #fffaf0;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand small,
.hero-panel span,
footer span { display: block; color: var(--muted); }

nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

nav a { text-decoration: none; }

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .92) 0%, rgba(255, 247, 215, .9) 44%, rgba(255, 213, 0, .75) 100%),
    radial-gradient(circle at 84% 18%, rgba(215, 25, 32, .2), transparent 20rem);
}

.hero-copy { max-width: 760px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--shell-red);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.letterline strong {
  display: inline-block;
  font-size: 1.28em;
  font-weight: 900;
}

h1, h2 { margin: 0; line-height: 1.05; letter-spacing: 0; }

h1 { font-size: clamp(3rem, 8vw, 6.8rem); }

h2 { font-size: clamp(2rem, 4vw, 3.8rem); }

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-facts span {
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fff;
  font-weight: 900;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--shell-red);
  border-color: var(--shell-red);
  color: var(--white);
}

.button.secondary { background: var(--shell-yellow); }

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-visual > img {
  width: 100%;
  height: min(56vw, 520px);
  min-height: 360px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.hero-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .14);
}

.hero-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hero-card strong,
.hero-card span { display: block; }

.hero-card span { color: var(--muted); }

.image-disclaimer {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -38px;
  margin: 0;
  color: #555;
  font-size: .86rem;
  font-weight: 700;
}

.section {
  padding: clamp(44px, 7vw, 96px) clamp(18px, 6vw, 88px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.location-card {
  min-height: 290px;
  padding: 0 0 22px;
  overflow: hidden;
  text-align: left;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.location-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 6px solid var(--shell-yellow);
}

.location-card span,
.location-card strong,
.location-card em {
  margin-left: 20px;
  margin-right: 20px;
}

.location-card span { display: block; margin-top: 18px; color: var(--muted); font-weight: 700; }
.location-card strong { display: block; margin-top: 10px; font-size: 1.45rem; }
.location-card em { display: block; margin-top: 12px; color: var(--muted); font-style: normal; }
.location-card.is-active { border-color: var(--shell-red); box-shadow: inset 0 0 0 4px var(--shell-yellow); }

.rotation-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 6px solid var(--shell-red);
  background: #fff;
  font-weight: 800;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  background: #fff;
}

.form-intro p:last-child { max-width: 420px; font-size: 1.1rem; }

.form-note,
.submit-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 5px solid var(--shell-red);
  background: #fff7d7;
  color: var(--ink);
  font-weight: 800;
}

.submit-note {
  background: #fffdf8;
  border-color: var(--shell-yellow);
  color: var(--muted);
}

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

label,
fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  font-weight: 800;
}

fieldset {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend { padding: 0 8px; font-weight: 900; }

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfc7bc;
  border-radius: 6px;
  font: inherit;
  background: #fffdf8;
}

textarea { resize: vertical; }

.wide { grid-column: 1 / -1; }

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checks label,
.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.checks input,
.consent input {
  width: 20px;
  min-height: 20px;
}

.consent a { color: var(--shell-red); }

.benefits {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 32px;
  background: var(--ink);
  color: #fff;
}

.benefits p { color: #f6e9ca; font-size: 1.1rem; }
.benefits ul { margin: 0; padding-left: 20px; font-size: 1.1rem; }
.benefits li { margin: 0 0 12px; }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(18px, 6vw, 88px);
  background: var(--shell-yellow);
  border-top: 8px solid var(--shell-red);
}

.legal-links {
  display: inline-flex;
  gap: 14px;
  font-weight: 900;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) clamp(18px, 5vw, 48px);
  background: #fff;
}

.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.legal-page h2 { margin-top: 32px; font-size: clamp(1.5rem, 3vw, 2.3rem); }
.legal-page p,
.legal-page li { font-size: 1.05rem; }

.legal-note {
  padding: 14px 16px;
  border-left: 6px solid var(--shell-red);
  background: #fff7d7;
  font-weight: 800;
}

@media (max-width: 820px) {
  .topbar { align-items: flex-start; }
  nav { display: none; }
  .hero,
  .hero-visual,
  .form-section,
  .benefits { grid-template-columns: 1fr; }
  .location-grid,
  .application-form,
  .checks { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: auto; }
  .hero-visual > img { min-height: 280px; height: 360px; }
  .image-disclaimer { position: static; margin-top: 8px; }
  h1 { font-size: 3.4rem; }
}
