html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
}

/* Typography refinements */
h1, h2, h3 {
  letter-spacing: -0.022em;
}
h1 { letter-spacing: -0.03em; }

/* Soft separators instead of cards everywhere */
.hairline {
  border-top: 1px solid rgba(243, 236, 225, 0.07);
}

/* Buttons — minimal, premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: #ff7913;
  color: #0d0d10;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  background: transparent;
  color: #f3ece1;
  border-color: rgba(243, 236, 225, 0.18);
}
.btn-secondary:hover {
  border-color: rgba(243, 236, 225, 0.45);
}
.btn-ghost {
  background: transparent;
  color: #a39e94;
  padding: 0.35rem 0;
}
.btn-ghost:hover { color: #f3ece1; }

/* Cards — only used sparingly now, soft and warm */
.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(243, 236, 225, 0.06);
  border-radius: 1.25rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.card-quiet {
  background: transparent;
  border: none;
}
a.card:hover,
.card.is-link:hover {
  border-color: rgba(243, 236, 225, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

/* Inputs — flat, calm */
.input,
.textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(243, 236, 225, 0.14);
  border-radius: 0;
  padding: 0.75rem 0;
  color: #f3ece1;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.input::placeholder,
.textarea::placeholder { color: rgba(163, 158, 148, 0.55); }
.input:focus,
.textarea:focus {
  outline: none;
  border-bottom-color: #ff7913;
}
.textarea { min-height: 96px; resize: vertical; }
.label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a39e94;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

/* Media */
audio { width: 100%; }

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #0a0a0d;
}
.video-frame iframe,
.video-frame .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a39e94;
  font-size: 1rem;
  letter-spacing: -0.005em;
}

/* Quiet links */
.link-quiet {
  color: #a39e94;
  transition: color 0.2s ease;
}
.link-quiet:hover { color: #f3ece1; }

/* Section helper */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a39e94;
}

/* Optional checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  color: #f3ece1;
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.checkbox:hover { color: #ffffff; }
.checkbox span { display: inline-block; }
.checkbox input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  margin: 0;
  padding: 0;
  width: 1.35rem !important;
  height: 1.35rem !important;
  min-width: 1.35rem;
  min-height: 1.35rem;
  border: 2px solid #ff7913 !important;
  border-radius: 0.35rem;
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0.85rem 0.85rem;
  display: inline-block;
  position: relative;
  top: 0.1rem;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}
.checkbox input[type="checkbox"]:hover {
  background-color: rgba(255, 121, 19, 0.12);
}
.checkbox input[type="checkbox"]:checked {
  background-color: #ff7913 !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230d0d10' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.2 3.2L13 4.8'/%3E%3C/svg%3E");
}
.checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(255, 121, 19, 0.6);
  outline-offset: 2px;
}

/* Honeypot */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
