:root {
  --bg: #0d0d0f;
  --surface: #17171a;
  --surface-2: #1e1e22;
  --ink: #f5f3ef;
  --ink-mid: #c4bfb5;
  --ink-mute: #8b877f;
  --rule: #2a2a2e;
  --red: #f0523d;
  --red-deep: #c93e2b;
  --blue: #0099e5;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
}
p {
  margin: 0;
  color: var(--ink-mute);
  text-align: center;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,15,0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}
.head-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand span {
  display: block;
  color: var(--ink-mute);
  font-size: 13px;
  text-align: center;
}
.brand strong {
  display: block;
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}
nav a,
.nav-drop {
  text-decoration: none;
  color: var(--ink-mid);
}
nav a:hover,
.nav-drop:hover,
.has-dropdown.open .nav-drop,
.has-dropdown:focus-within .nav-drop { color: var(--ink); }
.nav-drop {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.62;
  margin-top: 2px;
}
.has-dropdown {
  position: relative;
}
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 90;
  min-width: 230px;
  transform: translateX(-50%) translateY(6px);
  display: grid;
  gap: 2px;
  padding: 18px 10px 10px;
  border: 1px solid rgba(245,243,239,0.14);
  border-radius: 8px;
  background: rgba(13,13,15,0.98);
  box-shadow: 0 18px 50px rgba(0,0,0,0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
}
.dropdown-panel a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  text-align: center;
}
.dropdown-panel a:hover {
  background: var(--surface);
}
.dropdown-panel span {
  color: var(--ink-mute);
  font-size: 12px;
  line-height: 1.35;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}
.btn:hover { background: var(--red-deep); }
.btn-quiet {
  background: transparent;
  border: 1px solid rgba(245,243,239,0.28);
}
.hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(13,13,15,0.18) 0%, rgba(13,13,15,0.58) 48%, rgba(13,13,15,0.92) 100%),
    linear-gradient(to top, rgba(13,13,15,0.96), rgba(13,13,15,0.62));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 930px;
  padding: 72px 28px 58px;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.hero .eyebrow {
  color: var(--ink);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}
h1 {
  font-size: clamp(42px, 7vw, 84px);
  max-width: 13ch;
}
.lead {
  max-width: 64ch;
  color: var(--ink-mid);
  font-size: 17px;
}
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
section {
  padding: 64px 28px;
  text-align: center;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 24px;
}
h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  max-width: 18ch;
}
.section-copy {
  max-width: 68ch;
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
  width: 100%;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 18px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 0;
  text-align: center;
}
.card h3 { font-size: 26px; }
.image-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  display: grid;
}
.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.image-card div {
  padding: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.band {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.quote-form {
  width: min(100%, 760px);
  display: grid;
  gap: 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.budget-field {
  border: 1px solid rgba(245,243,239,0.14);
  border-radius: 8px;
  background: rgba(13,13,15,0.42);
  padding: 18px;
}
.budget-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
}
.money-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  flex: 0 0 auto;
}
.money-icon svg {
  width: 16px;
  height: 16px;
}
.field-note {
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  text-align: center;
}
textarea {
  min-height: 96px;
  resize: vertical;
}
.modal-open {
  overflow: hidden;
}
.mail-confirm[hidden] {
  display: none;
}
.mail-confirm {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5,5,7,0.78);
  backdrop-filter: blur(10px);
}
.confirm-panel {
  width: min(100%, 470px);
  border: 1px solid rgba(245,243,239,0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #1b1b1f 0%, #121214 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  padding: 30px;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}
.confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
}
.confirm-icon svg {
  width: 24px;
  height: 24px;
}
.confirm-panel h2 {
  max-width: none;
  font-size: 32px;
}
.confirm-panel p {
  max-width: 34ch;
  color: var(--ink-mid);
}
footer {
  padding: 40px 28px;
  text-align: center;
  color: var(--ink-mute);
}
footer a {
  color: var(--ink-mid);
  text-decoration: none;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 940px) {
  .head-row {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .field-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .head-row { padding: 16px 20px; }
  nav { gap: 14px; font-size: 13px; }
  .has-dropdown {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 8px;
  }
  .dropdown-panel {
    position: static;
    width: min(100%, 320px);
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: 0;
  }
  .dropdown-panel::before {
    display: none;
  }
  .has-dropdown:hover .dropdown-panel,
  .has-dropdown.open .dropdown-panel {
    display: grid;
    transform: none;
  }
  .dropdown-panel a {
    padding: 7px 10px;
    color: var(--ink-mid);
  }
  .hero { min-height: 62vh; }
  section { padding: 52px 20px; }
  .image-card img { height: 190px; }
  .quote-form { padding: 22px 18px; }
}
