:root {
  --ink: #1a2228;
  --ink-2: #2a343c;
  --paper: #e8e4dc;
  --paper-2: #d4cfc4;
  --brass: #c9a227;
  --brass-dim: #a8841c;
  --steel: #8a949c;
  --line: rgba(26, 34, 40, 0.14);
  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.8, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.5;
}
body.is-splash { overflow: hidden; }
body.is-rtl { direction: rtl; }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }

.boot {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-content: center; gap: 8px;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.boot.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.boot__brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 12vw, 88px);
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: var(--brass);
}
.boot__line, .boot__pct {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.rail {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(232, 228, 220, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.rail__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-right: auto;
}
.rail__lang {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 6px 10px;
  min-width: 44px;
  cursor: pointer;
}
.rail__menu {
  position: absolute;
  right: clamp(16px, 4vw, 40px);
  top: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--ink);
  max-height: 60vh;
  overflow: auto;
  z-index: 50;
}
.rail__menu li {
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
}
.rail__menu li:hover,
.rail__menu li[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}
.rail__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0;
  cursor: pointer;
  place-items: center;
  gap: 6px;
}
.rail__burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
}

.drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px clamp(16px, 4vw, 40px) 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.drawer a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 40px) 32px;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  animation: mediaIn 1.2s var(--ease) both;
}
@keyframes mediaIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: none; }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(26, 34, 40, 0.88) 0%, rgba(26, 34, 40, 0.55) 42%, rgba(26, 34, 40, 0.18) 100%),
    linear-gradient(180deg, rgba(26, 34, 40, 0.25) 0%, rgba(26, 34, 40, 0.72) 100%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  animation: rise 0.8s 0.15s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.hero__brand {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 16vw, 120px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.hero h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  max-width: 14ch;
  color: var(--paper);
}
.lead {
  margin: 0 0 22px;
  font-size: 17px;
  max-width: 38ch;
  color: var(--ink-2);
}
.hero .lead { color: rgba(232, 228, 220, 0.82); }
.hero__meta {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  animation: rise 0.8s 0.35s var(--ease) both;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 42s linear infinite;
}
.marquee__track span {
  flex: none;
  padding: 0 28px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 32px);
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--ink);
}
.marquee__track span::after {
  content: "·";
  margin-left: 28px;
  color: var(--brass);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: none;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--ink-2); }
.btn:active { transform: translateY(1px); }

.how, .accept, .quote, .faq {
  padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 40px);
}
.sec__k {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dim);
}
.how h2, .accept h2, .quote h2, .faq h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
  max-width: 16ch;
}

.how__list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.how__list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  animation: rise 0.6s var(--ease) both;
}
.how__list li:nth-child(2) { animation-delay: 0.08s; }
.how__list li:nth-child(3) { animation-delay: 0.16s; }
.how__n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--brass);
}
.how__list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}
.how__list span { color: var(--ink-2); }

.accept {
  background: var(--ink);
  color: var(--paper);
}
.accept .sec__k { color: var(--brass); }
.accept .lead { color: var(--steel); }
.accept__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  border-top: 1px solid rgba(232, 228, 220, 0.2);
  padding-top: 28px;
}
.names {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(232, 228, 220, 0.25);
}
.names li {
  padding: 16px 12px 16px 0;
  border-bottom: 1px solid rgba(232, 228, 220, 0.18);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--paper);
}
.names li em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
}
.accept__col h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brass);
}
.accept__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accept__col li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 228, 220, 0.12);
  font-size: 15px;
}

.quote {
  position: relative;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(26, 34, 40, 0.04) 11px,
      rgba(26, 34, 40, 0.04) 12px
    ),
    var(--paper-2);
}
.quote__rail {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  background: repeating-linear-gradient(
    180deg,
    var(--ink) 0 8px,
    transparent 8px 16px
  );
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
}
.quote__form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.quote__form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quote__form input,
.quote__form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: #fff;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.quote__form .btn { width: 100%; margin-top: 4px; }
.quote__photos {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}
.quote__photos-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quote__photos-hint {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
}
.quote__photos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.quote__shot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 140px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px dashed var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.quote__shot--cam {
  border-style: solid;
  background: var(--ink);
  color: var(--paper);
}
.quote__shot input {
  /* iOS: never display:none — breaks label open */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.01;
  font-size: 16px;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
}
.quote__clear {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.quote__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.quote__thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #fff;
}
.quote__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote__thumb button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.quote__msg {
  margin: 0;
  font-size: 14px;
  color: var(--brass-dim);
}

.faq__list {
  margin-top: 28px;
  max-width: 720px;
}
.faq__list details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq__list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: var(--brass-dim);
}
.faq__list details[open] summary::before { content: "–"; }
.faq__list p {
  margin: 8px 0 4px 1.2em;
  color: var(--ink-2);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding: 24px clamp(16px, 4vw, 40px);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--steel);
}
.foot span:first-child {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .rail__burger { display: grid; }
  .drawer:not([hidden]) { display: flex; }
  .hero {
    min-height: 100svh;
    align-content: end;
    padding-top: 48px;
  }
  .hero__media img { object-position: 78% center; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(26, 34, 40, 0.35) 0%, rgba(26, 34, 40, 0.88) 55%, rgba(26, 34, 40, 0.94) 100%);
  }
  .hero h1 { max-width: 18ch; }
  .names { grid-template-columns: 1fr; }
  .accept__grid { grid-template-columns: 1fr; gap: 24px; }
  .quote__inner { grid-template-columns: 1fr; gap: 28px; }
  .quote__form input,
  .quote__form select { font-size: 16px; }
  .how__list li { grid-template-columns: 56px 1fr; }
}

@media (max-width: 520px) {
  .hero__brand { font-size: 56px; }
  .marquee__track span { padding: 0 18px; font-size: 20px; }
  .marquee__track span::after { margin-left: 18px; }
}
