:root {
  --black: #111111;
  --ink: #1c1a17;
  --charcoal: #2a2926;
  --soft-black: #171614;
  --cream: #f6f1e7;
  --paper: #fffaf0;
  --muted: #7b756c;
  --gold: #c7a15c;
  --gold-dark: #8b6a2f;
  --line: rgba(199, 161, 92, 0.32);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(145deg, #f3d893, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-weight: 700;
}

.brand-name {
  display: grid;
  line-height: 1.1;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
}

.brand-name small {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(255, 250, 240, 0.84);
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--paper);
  background: rgba(199, 161, 92, 0.18);
  outline: none;
}

.header-cta,
.btn,
.number-pill,
.contact-card,
.service-card a {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  padding: 11px 16px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: #e2bf73;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--paper);
}

.nav-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.76)),
    radial-gradient(circle at 80% 20%, rgba(199, 161, 92, 0.26), transparent 35%),
    var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.44;
}

.hero-bg span {
  position: absolute;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: rotate(45deg);
}

.hero-bg span:nth-child(1) {
  width: 330px;
  height: 330px;
  right: 8%;
  top: 12%;
}

.hero-bg span:nth-child(2) {
  width: 210px;
  height: 210px;
  right: 20%;
  bottom: 10%;
}

.hero-bg span:nth-child(3) {
  width: 140px;
  height: 140px;
  left: 8%;
  bottom: 14%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 94px 0 76px;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.attention-strip h2,
.contact h2,
.commitment h2 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

.btn-primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e2bf73;
}

.btn-secondary {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(199, 161, 92, 0.18);
}

.hero-panel {
  padding: 30px;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topline {
  width: 72px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
  border-radius: 999px;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  line-height: 1.08;
}

.quick-contact {
  display: grid;
  gap: 10px;
  margin: 26px 0 18px;
}

.quick-contact a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.52);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.quick-contact a::after {
  content: "WhatsApp";
  color: var(--gold);
  font-size: 0.82rem;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  transform: translateX(4px);
  border-color: var(--gold);
  outline: none;
}

.panel-note {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.attention-strip {
  color: var(--paper);
  background: linear-gradient(90deg, var(--gold-dark), #332814 62%, var(--black));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.attention-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0;
}

.attention-strip h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.attention-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.number-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.number-pill:hover,
.number-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  color: var(--black);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(42, 41, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(42, 41, 38, 0.08);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--black);
  background: rgba(199, 161, 92, 0.25);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.service-card h3,
.wide-service h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-card p,
.wide-service p,
.commitment p,
.contact p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--black);
  outline: none;
}

.wide-service {
  margin-top: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(42, 41, 38, 0.94)),
    var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-service h3 {
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.wide-service p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
}

.matter-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matter-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--black);
  background: rgba(199, 161, 92, 0.14);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
}

.commitment {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.82)),
    radial-gradient(circle at 80% 20%, rgba(199, 161, 92, 0.22), transparent 28%),
    var(--black);
}

.commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: center;
}

.commitment h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.commitment p {
  max-width: 690px;
  color: rgba(255, 250, 240, 0.76);
}

.commitment-stat {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.commitment-stat span {
  display: block;
  color: var(--gold);
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 700;
}

.commitment-stat p {
  margin: -24px 0 0;
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.contact h2 {
  color: var(--black);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 2px;
  padding: 20px;
  color: var(--black);
  background: var(--cream);
  border: 1px solid rgba(42, 41, 38, 0.12);
  border-radius: 8px;
}

.contact-card.highlighted {
  border-color: var(--line);
  background: rgba(199, 161, 92, 0.16);
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  outline: none;
}

.contact-card span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 250, 240, 0.76);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin: 0 0 4px;
  color: var(--paper);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 250, 240, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
  outline: none;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-2px);
  background: #e2bf73;
  outline: none;
}

.fallback-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  color: var(--paper);
  background: var(--black);
}

.fallback-page h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 4rem);
}

.reveal {
  transition: transform 520ms ease, opacity 520ms ease;
}

.reveal.pending {
  transform: translateY(18px);
}

.reveal.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .contact-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

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

  .attention-layout,
  .wide-service,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .commitment-stat {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1120px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero-grid {
    padding: 62px 0 48px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  .hero-actions,
  .attention-numbers {
    display: grid;
    width: 100%;
  }

  .btn,
  .number-pill {
    width: 100%;
  }

  .hero-panel,
  .wide-service,
  .service-card {
    padding: 22px;
  }

  .section {
    padding: 68px 0;
  }

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

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}
