:root {
  --ink: #171716;
  --muted: #5f6268;
  --paper: #f7f6f2;
  --white: #ffffff;
  --gold: #d7af55;
  --gold-dark: #a77d25;
  --charcoal: #242423;
  --blue: #2d6f86;
  --line: rgba(23, 23, 22, 0.14);
  --shadow: 0 24px 70px rgba(23, 23, 22, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(16px, 5vw, 68px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.header[data-elevated="true"] {
  background: rgba(18, 18, 17, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 120px;
  height: auto;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.6);
}

.brand span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.lang button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lang button.active {
  color: var(--ink);
  background: var(--white);
}

.call {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(215, 175, 85, 0.34);
}

.call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 68px) 44px;
  color: var(--white);
  background: var(--ink);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.68) 43%, rgba(10, 10, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-bottom: 170px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f1cf79;
}

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

h1 {
  margin: 0;
  max-width: 820px;
  font-size: 5.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.58rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

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

.btn.light {
  color: var(--ink);
  background: var(--white);
}

.btn.outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  color: var(--white);
  background: var(--charcoal);
}

.quick {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 68px);
  bottom: 34px;
  left: clamp(18px, 5vw, 68px);
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.9fr;
  max-width: 1150px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 18, 17, 0.76);
  backdrop-filter: blur(18px);
}

.quick div {
  min-width: 0;
  padding: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quick div:first-child {
  border-left: 0;
}

.quick span,
.contact-grid span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick strong {
  display: block;
  font-size: 1rem;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof div {
  min-width: 0;
  padding: 34px clamp(18px, 5vw, 68px);
  background: var(--white);
}

.proof strong {
  color: var(--gold-dark);
  font-size: 4rem;
  line-height: 0.95;
}

.proof p {
  max-width: 340px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.section {
  padding: 104px clamp(18px, 5vw, 68px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.copy p:not(.eyebrow),
.section-head p:not(.eyebrow),
.service-detail p,
.visit-copy dd,
.proof-section p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.media-pair {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.media-pair img,
.visit > img,
.contact > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-pair img:first-child {
  min-height: 430px;
}

.services {
  background: #eeece6;
}

.section-head {
  max-width: 880px;
  margin-bottom: 34px;
}

.service-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.tabs button {
  min-height: 76px;
  padding: 18px;
  border: 0;
  color: var(--ink);
  background: #f9fbfb;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.tabs button.active {
  color: var(--white);
  background: var(--charcoal);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(28px, 5vw, 60px);
}

#service-kicker {
  color: var(--gold-dark);
  font-weight: 950;
}

.service-detail p {
  margin: 14px 0 0;
}

.service-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding: 14px 14px 14px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 780;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.inline-link {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--blue);
  font-weight: 950;
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  padding: 104px clamp(18px, 5vw, 68px);
}

.visit-copy {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
}

.visit-copy .eyebrow {
  color: #f1cf79;
}

.visit-copy dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.visit-copy dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.visit-copy dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.proof-section {
  background: #f7f8fa;
}

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

.proof-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(23, 23, 22, 0.08);
}

.proof-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.proof-grid a {
  color: var(--blue);
  font-weight: 900;
}

.review-card {
  display: grid;
  align-content: center;
}

.review-card strong {
  color: var(--gold-dark);
  font-size: 3rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 104px clamp(18px, 5vw, 68px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-grid a {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(23, 23, 22, 0.08);
}

.contact-grid span {
  color: var(--muted);
}

.contact-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 940px;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .quick,
  .proof,
  .intro,
  .service-shell,
  .service-detail,
  .visit,
  .proof-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick {
    right: 18px;
    left: 18px;
  }

  .quick div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick div:first-child {
    border-top: 0;
  }

  .media-pair,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header {
    min-height: 72px;
    padding-inline: 12px;
  }

  .brand img {
    width: 96px;
  }

  .brand span {
    display: none;
  }

  .lang button {
    min-width: 36px;
  }

  .call {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 1060px;
    padding-inline: 16px;
  }

  .hero-content {
    padding-bottom: 390px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

  .proof strong {
    font-size: 2.8rem;
  }

  .section,
  .visit,
  .contact {
    padding: 64px 16px;
  }

  footer {
    display: block;
  }
}

