:root {
  --ink: #101214;
  --muted: #5d6368;
  --line: #d8dce0;
  --paper: #f5f4f0;
  --white: #ffffff;
  --gold: #b18a44;
  --teal: #2c6f73;
  --clay: #8d5545;
  --forest: #1f3436;
  --shadow: 0 22px 70px rgba(17, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 245, 239, 0.96);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 1px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 31px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle,
.menu-button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lang-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  font-weight: 700;
}

.lang-toggle span:first-child {
  color: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 38px;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  z-index: 19;
  display: none;
  padding: 18px 34px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.76), rgba(16, 18, 20, 0.1) 58%, rgba(16, 18, 20, 0.46)),
    linear-gradient(0deg, rgba(16, 18, 20, 0.62), rgba(16, 18, 20, 0) 44%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, 0.08) 70px 71px),
    linear-gradient(118deg, transparent 0 54%, rgba(177, 138, 68, 0.26) 54% 55%, transparent 55%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #263b3f 0%, #111416 52%, #3c3426 100%);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-media span {
  position: absolute;
  right: max(24px, calc((100% - 1120px) / 2));
  bottom: 156px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.82), rgba(17, 19, 15, 0.3) 54%, rgba(17, 19, 15, 0.5)),
    linear-gradient(0deg, rgba(17, 19, 15, 0.75), rgba(17, 19, 15, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1120px, calc(100% - 48px));
  margin: 96px auto 150px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 12vw, 156px);
  font-weight: 400;
  line-height: 0.92;
}

.hero-lede {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
}

.button.secondary {
  color: var(--ink);
}

.button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.hero-strip {
  position: absolute;
  right: max(24px, calc((100% - 1120px) / 2));
  bottom: 30px;
  left: max(24px, calc((100% - 1120px) / 2));
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-strip div {
  min-height: 104px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 400;
}

.hero-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

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

.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 44px;
  align-items: end;
  max-width: none;
}

.section-heading.split > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-card h3,
.business-list h3,
.portfolio-tile strong,
.insight-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.feature-card p,
.business-intro p,
.business-list p,
.insight-list p,
.contact-content p {
  color: var(--muted);
  font-size: 16px;
}

.lead-card {
  grid-row: span 2;
  display: grid;
  grid-template-rows: minmax(280px, 0.9fr) auto;
  gap: 34px;
  min-height: 560px;
}

.lead-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 18, 20, 0.78), rgba(31, 52, 54, 0.48)),
    linear-gradient(90deg, rgba(177, 138, 68, 0.24) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #243a3d, #111416 58%, #806840);
  background-size: auto, 74px 74px, 74px 74px, auto, auto;
}

.lead-visual::before,
.lead-visual::after {
  position: absolute;
  content: "";
}

.lead-visual::before {
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lead-visual::after {
  right: 12%;
  bottom: 0;
  width: 34%;
  height: 72%;
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  transform: skewX(-12deg);
}

.lead-visual span {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lead-copy {
  align-self: end;
}

.topic {
  display: block;
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  font-weight: 800;
}

.image-card {
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  gap: 28px;
  padding: 0;
  overflow: hidden;
}

.image-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 18, 20, 0.16), rgba(16, 18, 20, 0.66)),
    linear-gradient(90deg, rgba(44, 111, 115, 0.42) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.36) 0 1px, transparent 1px),
    linear-gradient(135deg, #edf0ed, #9aa9a5 46%, #24383b);
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.image-visual::before,
.image-visual::after {
  position: absolute;
  content: "";
}

.image-visual::before {
  inset: 24% 18%;
  border: 1px solid rgba(255, 255, 255, 0.54);
  transform: skewX(-16deg);
}

.image-visual::after {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 62%;
  background: rgba(17, 20, 21, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}
.image-visual span,
.contact-media span {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-visual span {
  color: rgba(255, 255, 255, 0.92);
}

.image-card div {
  padding: 0 34px 34px;
}

.business {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: var(--white);
}

.business-layout {
  display: grid;
  grid-template-columns: 0.33fr 1fr;
  gap: 34px;
  align-items: start;
}

.business-intro {
  position: sticky;
  top: 106px;
  padding: 28px;
  background: var(--forest);
  color: var(--white);
}

.business-intro h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.business-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.business-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.business-list article {
  display: grid;
  grid-template-columns: 86px 1fr minmax(220px, 0.55fr);
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.business-list span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.business-list p {
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portfolio-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.portfolio-tile:hover {
  background: var(--ink);
  color: var(--white);
}

.portfolio-tile span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-tile strong {
  font-size: clamp(22px, 2.2vw, 31px);
}

.insights {
  padding-top: 54px;
}

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

.insight-list article {
  min-height: 320px;
  padding: 30px;
  background: var(--white);
}

.insight-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  min-height: 620px;
  background: var(--ink);
  color: var(--white);
}

.contact-media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.08), rgba(16, 18, 20, 0.46)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 24% 28%, rgba(177, 138, 68, 0.28), transparent 26%),
    linear-gradient(135deg, #1f3436, #101214 58%, #594933);
  background-position: center;
  background-size: cover;
}

.contact-media::before,
.contact-media::after {
  position: absolute;
  content: "";
}

.contact-media::before {
  inset: 16% 20% 18% 12%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-media::after {
  right: 14%;
  bottom: -8%;
  width: 34%;
  height: 78%;
  background: rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  transform: skewX(-14deg);
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
}

.contact-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.contact dl {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
}

.contact dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact dd {
  margin: 4px 0 0;
  font-size: 22px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 38px 42px;
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--ink);
}

.footer nav {
  display: flex;
  gap: 18px;
  color: var(--ink);
  font-weight: 700;
}

.footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 23px;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: block;
    width: 40px;
    height: 38px;
  }

  .mobile-panel {
    top: 76px;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 76px;
  }

  .hero-content {
    align-self: auto;
    width: min(100% - 36px, 1120px);
    margin: 88px auto 30px;
  }

  .hero-media span {
    display: none;
  }

  .hero-strip,
  .feature-grid,
  .section-heading.split,
  .business-layout,
  .insight-list,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100% - 36px, 1120px);
    margin: 0 auto 44px;
  }

  .hero-strip div {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .lead-card {
    min-height: 430px;
  }

  .lead-visual {
    min-height: 240px;
  }

  .business-intro {
    position: static;
  }

  .business-list article {
    grid-template-columns: 60px 1fr;
  }

  .business-list p {
    grid-column: 2;
  }

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

  .contact-media {
    min-height: 360px;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .lang-toggle {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 36px, 1120px);
    margin-top: 74px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 86px);
  }

  .hero-lede {
    font-size: 25px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 36px, 1180px);
  }

  .feature-card,
  .portfolio-tile,
  .insight-list article {
    min-height: auto;
  }

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

  .business-list article {
    grid-template-columns: 1fr;
  }

  .business-list p {
    grid-column: auto;
  }

  .contact dd {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
}











@media (max-width: 430px) {
  .site-header {
    padding: 0 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    max-width: 180px;
    font-size: 12px;
  }

  .hero-content {
    margin-top: 64px;
  }

  .eyebrow {
    font-size: 10px;
    line-height: 1.65;
  }

  .hero h1 {
    font-size: clamp(50px, 20vw, 72px);
  }

  .hero-lede {
    font-size: 22px;
    line-height: 1.28;
  }

  .hero-strip strong {
    font-size: 38px;
  }
}


