:root {
  --burgundy: #570714;
  --burgundy-dark: #3b030d;
  --beige: #d1cbbb;
  --ink: #24120f;
  --serif: "Italiana", Georgia, serif;
  --sans: "Readex Pro", Arial, sans-serif;
  --page-gutter: clamp(24px, 4.25vw, 72px);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--burgundy); }
body { margin: 0; min-width: 320px; background: var(--burgundy); font-family: var(--sans); color: var(--beige); }
a { color: inherit; }
svg { display: block; }

.hero {
  min-height: 100vh;
  display: grid;
  overflow: hidden;
}

.main-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(560px, 47.4%) minmax(0, 52.6%);
}

.burgundy-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
  background:
    radial-gradient(circle at 26% 36%, rgba(255,255,255,.035), transparent 31%),
    linear-gradient(145deg, var((--burgundy)), var(--burgundy) 58%, #570714);
}

.site-header {
  height: clamp(94px, 12vh, 124px);
  display: flex;
  align-items: center;
  padding: 0 var(--page-gutter);
}

.brand {
  display: inline-flex;
  width: clamp(128px, 10vw, 184px);
  text-decoration: none;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-copy {
  min-height: calc(100% - clamp(94px, 12vh, 124px));
  padding: clamp(18px, 3.2vh, 36px) var(--page-gutter) clamp(36px, 4.5vh, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(4.35rem, 7.15vw, 8.15rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.035em;
}

.divider {
  width: 76px;
  height: 1px;
  margin: clamp(28px, 4vh, 42px) 0 clamp(22px, 3vh, 30px);
  background: currentColor;
  opacity: .82;
}

.intro {
  margin: 0;
  max-width: 560px;
  font-size: clamp(.98rem, 1.1vw, 1.18rem);
  font-weight: 300;
  line-height: 1.65;
}

.location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: clamp(30px, 4.4vh, 43px);
  font-size: .96rem;
  font-weight: 300;
}

.location svg, .contact-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-button {
  width: fit-content;
  min-width: 242px;
  min-height: 58px;
  margin-top: clamp(26px, 3.5vh, 35px);
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(209,203,187,.78);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.contact-button:hover, .contact-button:focus-visible,
.social-links a:hover, .social-links a:focus-visible {
  color: var(--burgundy);
  background: var(--beige);
  outline: none;
}
.contact-button:hover { transform: translateY(-2px); }

.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(209,203,187,.72);
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.social-links a:hover { transform: translateY(-2px); }
.social-links svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links .solid-dot { fill: currentColor; stroke: none; }

.visual-panel {
  position: relative;
  min-width: 0;
  background-color: #d8cdb7;
  background-image: url("kfd-architecture.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 34%;
  background: var(--burgundy);
  clip-path: polygon(0 0, 100% 0, 0 70%);
  pointer-events: none;
}

.company-name {
  position: absolute;
  top: clamp(36px, 5.3vh, 56px);
  right: var(--page-gutter);
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(.74rem, .85vw, .9rem);
  font-weight: 400;
  white-space: nowrap;
}


@media (max-width: 1180px) {
  .main-stage { grid-template-columns: minmax(500px, 48%) minmax(0, 52%); }
  h1 { font-size: clamp(4rem, 7.6vw, 6.8rem); }
}

@media (max-width: 900px) {
  .hero { grid-template-rows: auto auto; overflow: visible; }
  .main-stage { grid-template-columns: 1fr; }
  .burgundy-panel { min-height: min(780px, 100svh); }
  .visual-panel { min-height: clamp(430px, 70vw, 620px); background-position: 50% center; }
  .visual-panel::before { display: none; }
  .company-name { top: 30px; }
  .hero-copy { min-height: auto; padding-top: 34px; }
  h1 { font-size: clamp(4.6rem, 14vw, 7.5rem); }
}

@media (max-width: 600px) {
  :root { --page-gutter: clamp(22px, 7vw, 34px); }
  .burgundy-panel { min-height: auto; }
  .site-header { height: 92px; }
  .brand { width: 126px; }
  .hero-copy { padding-top: 14px; padding-bottom: 42px; }
  h1 { font-size: clamp(3.8rem, 20vw, 5.6rem); line-height: .93; }
  .divider { width: 62px; margin: 28px 0 22px; }
  .intro { font-size: .96rem; }
  .intro br { display: none; }
  .location { margin-top: 28px; }
  .contact-button { width: 100%; min-width: 0; }
  .social-links { width: 100%; gap: 10px; }
  .social-links a { flex: 1 1 0; width: auto; height: 56px; }
  .visual-panel { min-height: 390px; background-position: 56% center; }
  .company-name { display: none; }
  .site-footer {
    min-height: 102px;
    padding-top: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 3.65rem; }
  .social-links svg { width: 21px; height: 21px; }
}

@media (max-height: 760px) and (min-width: 901px) {
  .site-header { height: 88px; }
  .hero-copy { min-height: calc(100% - 88px); padding-top: 8px; padding-bottom: 24px; }
  h1 { font-size: clamp(3.9rem, 6.7vw, 6.7rem); }
  .divider { margin: 24px 0 18px; }
  .location { margin-top: 24px; }
  .contact-button { margin-top: 22px; min-height: 54px; }
  .social-links { margin-top: 12px; }
  .social-links a { width: 52px; height: 52px; }
}

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