:root {
  --ink: #101114;
  --muted: #62666f;
  --line: #e8e1d8;
  --paper: #faf7f1;
  --panel: #ffffff;
  --soft: #f1ebe1;
  --gold: #bd8840;
  --gold-dark: #7f5522;
  --teal: #087a83;
  --charcoal: #0d0e10;
  --shadow: 0 28px 80px rgba(20, 20, 20, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0, var(--paper) 500px, #f3eee5 100%);
  background-size: 64px 64px, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  height: 1em;
  width: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-sprite {
  display: none;
}

.site-header {
  background: var(--charcoal);
  z-index: 20;
}

.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.topbar-inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 1540px;
  min-height: 64px;
  padding: 0 42px;
}

.contact-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  white-space: nowrap;
}

.contact-link svg {
  color: var(--gold);
}

.contact-link:nth-child(2) svg,
.domain-link svg {
  color: var(--teal);
}

.hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 241, 0.8)),
    linear-gradient(90deg, rgba(189, 136, 64, 0.12), transparent 42%);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  margin: 0 auto;
  max-width: none;
  min-height: clamp(520px, 64vh, 700px);
  padding: 54px max(42px, calc((100vw - 1540px) / 2 + 42px)) 64px;
  position: relative;
}

.hero-content {
  justify-self: center;
  max-width: 720px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 30px;
}

.brand-mark span {
  background: var(--charcoal);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 9px 14px;
}

.brand-mark a {
  border-bottom: 1px solid rgba(127, 85, 34, 0.35);
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 900;
  padding-bottom: 2px;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 5.4vw, 92px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 720;
  line-height: 1.26;
  max-width: 700px;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  box-shadow: 0 18px 34px rgba(189, 136, 64, 0.28);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.05);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
}

.hero-logo {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  justify-self: center;
  padding: 34px;
  position: relative;
  width: min(510px, 100%);
}

.hero-logo img {
  filter: none;
  margin: 0 auto;
  mix-blend-mode: multiply;
  width: 100%;
}

.hero-logo span {
  background: var(--charcoal);
  border-radius: 999px;
  bottom: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  left: 50%;
  padding: 9px 16px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.service-strip {
  background: var(--charcoal);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  padding: 1px;
}

.strip-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border-right: 0;
  display: flex;
  font-size: 17px;
  font-weight: 850;
  gap: 12px;
  justify-content: center;
  min-height: 94px;
  padding: 20px;
  text-align: center;
}

.strip-item svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.intro-section,
.faq-section,
.contact-section {
  margin: 0 auto;
  max-width: 1320px;
  padding: 96px 42px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 3vw, 56px);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.intro-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.06);
  min-height: 250px;
  padding: 34px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.intro-grid article:hover {
  border-color: rgba(185, 135, 53, 0.45);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.1);
  transform: translateY(-2px);
}

.intro-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.faq-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.faq-section > .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1236px;
  padding: 0 42px;
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 280px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 42px;
}

.faq-tabs {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.08);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 4px;
  padding: 12px;
  position: sticky;
  top: 154px;
}

.faq-tabs a {
  border-radius: 6px;
  color: #333;
  font-size: 15px;
  font-weight: 850;
  padding: 12px 14px;
}

.faq-tabs a:hover,
.faq-tabs a:focus-visible {
  background: #fff;
  color: var(--gold-dark);
  outline: 0;
}

.faq-groups {
  display: grid;
  gap: 34px;
}

.faq-group {
  scroll-margin-top: 170px;
}

.faq-group h3 {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  overflow: clip;
}

details[open] {
  background: #fff;
  border-color: rgba(189, 136, 64, 0.5);
  box-shadow: 0 18px 45px rgba(16, 18, 20, 0.07);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  list-style: none;
  padding: 22px 58px 22px 24px;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  align-items: center;
  background: #f5efe6;
  border-radius: 50%;
  content: "+";
  display: flex;
  font-size: 24px;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

details[open] summary::after {
  content: "-";
}

details p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  padding: 20px 24px 24px;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  padding-top: 76px;
}

.contact-actions {
  align-items: flex-start;
  flex-direction: column;
}

.contact-actions a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 18px;
  font-weight: 850;
  gap: 10px;
}

.contact-actions svg {
  color: var(--gold);
}

.email-panel {
  background:
    linear-gradient(145deg, #111214, #08090a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 38px;
  position: relative;
}

.email-panel::before {
  background: linear-gradient(90deg, var(--gold), var(--teal));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.panel-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.email-panel h3 {
  color: #fff;
  font-size: clamp(28px, 2.5vw, 42px);
  margin-bottom: 0;
}

.email-panel p {
  color: #d2d2d2;
  font-size: 17px;
  margin-bottom: 0;
}

.email-display {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: clamp(18px, 2.2vw, 31px);
  font-weight: 900;
  gap: 14px;
  line-height: 1.15;
  padding: 20px;
  word-break: break-word;
}

.email-display svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.copy-email {
  width: fit-content;
}

.copy-note {
  color: #c9c9c9;
  font-size: 14px;
  margin: -4px 0 0;
}

.footer {
  align-items: center;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px 42px;
}

.footer img {
  background: #fff;
  border-radius: 6px;
  height: 62px;
  object-fit: contain;
  padding: 4px;
  width: 152px;
}

.footer p {
  color: #d7d7d7;
  margin: 0;
  max-width: 720px;
  text-align: right;
}

@media (max-width: 980px) {
  .topbar-inner {
    justify-content: center;
  }

  .contact-link {
    font-size: 15px;
  }

  .topbar-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    gap: 32px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 22px 60px;
  }

  .hero-content {
    justify-self: start;
  }

  .hero-logo {
    max-width: 430px;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .faq-section,
  .contact-section {
    padding: 70px 22px;
  }

  .faq-section {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-section > .section-heading,
  .faq-layout {
    padding-left: 22px;
    padding-right: 22px;
  }

  .intro-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .faq-tabs {
    display: flex;
    overflow-x: auto;
    position: static;
  }

  .faq-tabs a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    min-height: 68px;
    overflow: visible;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .contact-link {
    font-size: 12px;
    min-height: 34px;
    padding: 7px 11px;
  }

  .domain-link {
    display: none;
  }

  .hero {
    min-height: 640px;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero-logo {
    background: transparent;
    border: 0;
    bottom: 22px;
    box-shadow: none;
    opacity: 0.16;
    padding: 0;
    position: absolute;
    right: -54px;
    width: 260px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    font-size: 16px;
    min-height: 52px;
    width: 100%;
  }

  .service-strip,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    justify-content: flex-start;
    min-height: 72px;
    text-align: left;
  }

  summary {
    font-size: 17px;
    padding-left: 18px;
  }

  details p {
    font-size: 16px;
    padding-left: 18px;
  }

  .email-panel {
    padding: 24px;
  }

  .copy-email {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 22px;
  }

  .footer p {
    text-align: left;
  }
}
