:root {
  --black: #111111;
  --color-black: #111111;
  --ink: #1b1b1b;
  --gray: #2b2b2b;
  --muted: #66625d;
  --line: #dedbd2;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --red: #a11b1b;
  --color-red: #a11b1b;
  --red-dark: #7f0e0e;
  --gold: #c7a247;
  --color-gold: #c7a247;
  --max: 1180px;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: .65rem .9rem;
  background: var(--paper);
  color: var(--black);
  border: 2px solid var(--gold);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 82px;
  padding: .95rem clamp(1rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: clamp(246px, 27vw, 420px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(.55rem, 1.5vw, 1.15rem);
  font-size: .92rem;
}

.primary-nav a,
.mobile-nav a {
  text-decoration: none;
}

.primary-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold);
}

.primary-nav a {
  transition: color .2s ease;
}

.nav-strong {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  transition: border-color .2s ease, color .2s ease;
}

.nav-strong:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  color: var(--black);
  background: var(--paper);
  font: inherit;
}

.menu-lines {
  display: grid;
  gap: 4px;
}

.menu-lines span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero picture,
.hero picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .68) 48%, rgba(0, 0, 0, .2)), linear-gradient(0deg, rgba(0, 0, 0, .7), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5.2rem, 11vw, 9.8rem) 0 clamp(3rem, 6vw, 5.8rem);
  color: #fff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-top: .78rem;
  background: currentColor;
  opacity: .75;
}

.hero .eyebrow,
.managed .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 6.45rem);
  line-height: .96;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 .45rem;
  font-size: 1.14rem;
  line-height: 1.2;
}

.hero-claim {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  font-weight: 820;
  line-height: 1.22;
}

.hero-copy {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-red {
  background: var(--red);
  color: #fff;
}

.button-red:hover {
  background: var(--red-dark);
}

.button-light {
  background: #fff;
  color: var(--black);
}

.button-dark {
  background: rgba(17, 17, 17, .86);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
}

.button-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin: clamp(3.2rem, 6.8vw, 5.7rem) 0 0;
  padding: 0;
  background: rgba(255, 255, 255, .18);
}

.hero-facts div {
  padding: 1.15rem;
  background: rgba(17, 17, 17, .7);
}

.hero-facts dt {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: .25rem 0 0;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5.2rem, 10vw, 9rem) 0;
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(2.7rem, 6vw, 4.8rem);
}

.section-intro p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.15rem;
}

.problem-section {
  background: var(--paper);
}

.problem-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.problem-grid article {
  min-height: 142px;
  padding: 1.35rem 1.35rem 1.45rem;
  border-left: 4px solid var(--red);
  border-top: 1px solid rgba(199, 162, 71, .48);
  background: var(--soft);
  font-size: 1.13rem;
  font-weight: 750;
}

.solve-line {
  position: relative;
  margin: clamp(3.6rem, 8vw, 6.2rem) 0 clamp(.6rem, 2vw, 1.4rem);
  padding-top: 1.35rem;
  color: var(--red);
  font-size: clamp(2.7rem, 6.5vw, 6.45rem);
  font-weight: 900;
  line-height: .96;
}

.solve-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(220px, 52vw);
  height: 2px;
  background: var(--gold);
}

.services {
  border-top: 1px solid var(--line);
}

.service-grid article {
  position: relative;
  min-height: 245px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-grid article:hover {
  border-color: rgba(199, 162, 71, .72);
  box-shadow: 0 18px 38px rgba(17, 17, 17, .08);
  transform: translateY(-2px);
}

.service-number {
  display: inline-block;
  margin: 1.3rem 0 1.35rem;
  color: var(--gold);
  font-size: 1.04rem;
  font-weight: 900;
}

.service-icon {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 162, 71, .9);
  border-radius: 50%;
  position: relative;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  background: var(--black);
}

.service-icon::before {
  width: 18px;
  height: 1px;
  top: 21px;
  left: 12px;
  background: var(--gold);
}

.service-icon::after {
  width: 1px;
  height: 18px;
  top: 12px;
  left: 21px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.managed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 700px;
  color: #fff;
  background: var(--black);
}

.managed-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.managed-copy {
  align-self: center;
  padding: clamp(3rem, 6vw, 6.2rem);
}

.managed-copy p {
  color: rgba(255, 255, 255, .82);
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.package-row article {
  min-height: 154px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, .035);
}

.package-row p {
  margin: 0;
}

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

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  background: transparent;
}

.why-list p {
  position: relative;
  margin: 0;
  padding: 1.25rem 1.25rem 1.25rem 2.8rem;
  border: 1px solid var(--line);
  background: var(--soft);
  font-weight: 750;
}

.why-list p::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.55rem;
  width: .55rem;
  height: .55rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.philosophy-line {
  max-width: 860px;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding-top: 1.15rem;
  border-top: 2px solid var(--gold);
  color: var(--black);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
}

.partners {
  border-top: 1px solid var(--line);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.logo-grid span {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 1.25rem 1rem;
  border: 1px solid var(--line);
  color: var(--gray);
  background: linear-gradient(180deg, #fff, #f8f8f5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.logo-grid span:hover {
  border-color: rgba(199, 162, 71, .8);
  box-shadow: inset 0 0 0 1px rgba(199, 162, 71, .18), 0 14px 30px rgba(17, 17, 17, .06);
  transform: translateY(-2px);
}

.partner-logo {
  position: relative;
}

.partner-logo::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.partner-logo::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 22px;
  height: 1px;
  background: var(--gold);
  opacity: .75;
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--black);
  color: #fff;
}

.about-panel,
.contact-panel {
  padding: clamp(3rem, 6vw, 6.4rem);
}

.about-panel {
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.about-panel p,
.contact-panel p {
  color: rgba(255, 255, 255, .82);
}

.about-panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.about-panel p {
  max-width: 700px;
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

address {
  display: grid;
  gap: .55rem;
  margin-top: 1.8rem;
  font-style: normal;
}

address a {
  color: #fff;
  font-weight: 850;
  text-decoration-color: var(--gold);
}

.contact-phone {
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  text-decoration-thickness: 2px;
}

.contact-mail {
  width: fit-content;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

address span {
  color: rgba(255, 255, 255, .8);
}

.site-footer {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  color: #fff;
  background: #070707;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .9fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
}

.site-footer p,
.site-footer h2 {
  margin: 0;
}

.site-footer h2 {
  margin-bottom: .85rem;
  color: var(--gold);
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, .78);
}

.footer-brand {
  display: inline-flex;
  width: min(260px, 62vw);
  margin-bottom: 1.25rem;
  padding: .55rem .75rem;
  background: #fff;
  border-radius: var(--radius);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.site-footer nav {
  display: grid;
  gap: .4rem;
}

.site-footer a {
  color: #fff;
  text-decoration-color: rgba(199, 162, 71, .6);
}

.site-footer a:hover {
  color: var(--gold);
}

.mobile-quickbar {
  display: none;
}

.legal-page {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.legal-page h1 {
  color: var(--black);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.legal-box {
  margin-top: 2rem;
  padding: 1.2rem;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.legal-page h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-page h3 {
  margin: 1.7rem 0 .4rem;
  font-size: 1.24rem;
}

.legal-page h4,
.legal-page h5 {
  margin: 1.35rem 0 .35rem;
  font-size: 1.05rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page li + li {
  margin-top: .25rem;
}

.legal-page section {
  padding-top: .35rem;
  border-top: 1px solid var(--line);
}

.legal-page a {
  color: var(--red);
  font-weight: 750;
}

.not-found {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.not-found h1 {
  color: var(--black);
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav[data-open="true"] {
    display: grid;
    position: fixed;
    z-index: 19;
    top: 76px;
    left: 0;
    right: 0;
    padding: .75rem 1rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
  }

  .mobile-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-weight: 760;
  }

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

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

@media (max-width: 820px) {
  body {
    padding-bottom: 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 5.4rem;
  }

  .section {
    padding: clamp(4.2rem, 13vw, 6rem) 0;
  }

  .section-intro {
    margin-bottom: 2.3rem;
  }

  .hero-facts,
  .problem-grid,
  .service-grid,
  .managed,
  .why-list,
  .about-contact,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    max-width: none;
  }

  .managed-copy {
    order: -1;
    padding: clamp(2.4rem, 10vw, 4rem);
  }

  .package-row {
    grid-template-columns: 1fr;
  }

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

  .about-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .about-panel,
  .contact-panel {
    padding: clamp(2.4rem, 10vw, 4rem);
  }

  .mobile-quickbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 21;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .mobile-quickbar a {
    display: grid;
    place-items: center;
    min-height: 58px;
    color: #fff;
    font-size: .92rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-quickbar a + a {
    border-left: 1px solid rgba(255, 255, 255, .14);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    width: min(205px, 54vw);
  }

  .mobile-nav[data-open="true"] {
    top: 68px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-claim {
    font-size: 1.12rem;
  }

  .contact-phone {
    font-size: 2rem;
  }

  .problem-grid article,
  .service-grid article {
    min-height: auto;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
