:root {
  --ink: #f9f4ed;
  --muted: #cbb9a8;
  --orange: #ff6a00;
  --orange-soft: #ff8a2a;
  --brown-950: #170903;
  --brown-900: #241006;
  --brown-850: #2b1509;
  --brown-800: #351b0c;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 106, 0, 0.18), transparent 29rem),
    radial-gradient(circle at 85% 10%, rgba(255, 138, 42, 0.12), transparent 30rem),
    linear-gradient(145deg, var(--brown-950), var(--brown-900) 48%, #120602);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(var(--max), calc(100% - 36px));
  margin: 22px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 14px;
  z-index: 20;
  border: 1px solid var(--line);
  background: rgba(23, 9, 3, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand img {
  width: 168px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover, .nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 88px 0 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.07rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #1a0902;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  box-shadow: 0 14px 34px rgba(255, 106, 0, 0.23);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 40% 20%, rgba(255, 106, 0, 0.18), transparent 22rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mark-wrap {
  min-height: 250px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.17);
  border: 1px solid rgba(255,255,255,0.09);
}

.mark-wrap img {
  width: min(100%, 510px);
  object-fit: contain;
}

.pronunciation {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pronunciation span, .contact-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pronunciation strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  letter-spacing: -0.045em;
}

.pronunciation p, .service-card p, .about-panel p, .contact-copy p, .contact-card p, .trust-strip span {
  color: var(--muted);
  line-height: 1.7;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
}

.trust-strip div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.052);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 44px;
  padding: 98px 0 24px;
}

.section-intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--panel-strong);
  border-color: rgba(255, 106, 0, 0.35);
}

.service-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.about-panel {
  margin-top: 74px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.about-panel p {
  font-size: 1.03rem;
}

.contact-section {
  padding: 94px 0;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 42px;
  align-items: start;
}

.contact-copy p { max-width: 680px; }

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.contact-card a {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  word-break: break-word;
}

.contact-card a:hover { color: var(--orange-soft); }
.contact-card hr {
  margin: 10px 0 20px;
  border: 0;
  border-top: 1px solid var(--line);
}
.contact-card p { margin-bottom: 0; }

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p { margin-bottom: 0; }
.site-footer a { color: var(--ink); }

@media (max-width: 920px) {
  .hero, .split, .about-panel, .contact-section { grid-template-columns: 1fr; }
  .hero { padding-top: 66px; min-height: auto; }
  .section-intro { position: static; }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
    flex-direction: column;
  }
  .nav { width: 100%; justify-content: space-between; }
  .nav a { padding-inline: 8px; }
  .service-grid, .trust-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .about-panel, .contact-card, .hero-card { padding: 24px; }
  .mark-wrap { min-height: 180px; }
  .site-footer { flex-direction: column; }
}
