:root {
  --paper: #f5f0e6;
  --ink: #302e2f;
  --muted: #6f6a66;
  --orange: #e85f2c;
  --white: #fffdf8;
  --line: rgba(48, 46, 47, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  content: "";
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.one-page {
  width: calc(100% - 60px);
  max-width: 1540px;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(80px, 13.6vh, 150px) 0 28px;
  display: flex;
  flex-direction: column;
}
main { flex: 0 0 auto; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(350px, .92fr) minmax(610px, 1.08fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}
.contact-title { padding-top: 2px; }
.eyebrow {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 26px; height: 2px; margin: 0 14px 3px 0; background: var(--orange); }
h1 {
  margin: 0;
  font-size: clamp(60px, 5.2vw, 84px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .93;
}
h1 em { color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.contact-card {
  position: relative;
  min-height: 450px;
  padding: 62px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 13px 13px 0 var(--ink);
}
.contact-corner { position: absolute; top: -1px; left: -1px; border-top: 39px solid var(--orange); border-right: 39px solid transparent; }
.contact-label { margin: 0 0 33px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links > a {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding .2s ease;
}
.contact-links > a:hover, .contact-links > a:focus-visible { padding-left: 7px; color: var(--orange); }
.contact-icon { width: 43px; height: 43px; display: grid; place-items: center; color: var(--orange); border: 1px solid var(--orange); border-radius: 50%; }
.contact-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.contact-links small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-links strong { font-size: clamp(22px, 1.9vw, 27px); }
address { margin: 29px 0 12px; color: var(--muted); font-size: 14px; font-style: normal; font-weight: 700; }
.map-link { color: var(--orange); border-bottom: 1px solid var(--orange); font-size: 12px; font-weight: 800; }

.company-data {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.company-data > div { min-height: 108px; padding: 27px 30px 30px 0; }
.company-data > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.company-data span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.company-data strong { font-size: 15px; }
footer {
  min-height: 102px;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  padding-bottom: 5px;
  border-top: 1px solid var(--line);
}
.footer-brand { justify-self: start; display: inline-flex; align-items: center; gap: 20px; }
.brand-logo { position: relative; display: inline-flex; align-items: baseline; color: var(--ink); font-size: 27px; font-weight: 700; letter-spacing: -.085em; line-height: 1; }
.brand-logo::after { content: ""; position: absolute; width: 56px; height: 2px; left: 50%; bottom: -9px; transform: translateX(-50%); background: var(--orange); }
.brand-logo b { color: var(--orange); font-style: italic; font-weight: 800; }
.brand-logo small { margin-left: 10px; font-size: .72em; font-weight: 700; letter-spacing: -.05em; }
.brand-person { padding-left: 20px; display: flex; flex-direction: column; line-height: 1.06; border-left: 1px solid var(--orange); }
.brand-person strong { font-size: 13px; }
.brand-person em { margin-top: 5px; color: var(--orange); font-family: Georgia, serif; font-size: 12px; }
footer > p { margin: 0; color: var(--muted); font-size: 10px; }
.to-top { justify-self: end; font-size: 11px; font-weight: 800; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 1050px) {
  .one-page { width: calc(100% - 40px); padding-top: 70px; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .contact-card { max-width: 760px; width: 100%; }
  .company-data { margin-top: 75px; }
  footer { margin-top: 100px; }
}

@media (max-width: 680px) {
  .one-page { width: calc(100% - 30px); padding-top: 52px; }
  h1 { font-size: clamp(52px, 16vw, 72px); }
  .contact-card { min-height: 0; padding: 50px 25px 36px; box-shadow: 8px 8px 0 var(--ink); }
  .contact-label { padding-left: 10px; }
  .contact-links strong { font-size: clamp(18px, 6vw, 24px); }
  .company-data { grid-template-columns: 1fr; }
  .company-data > div, .company-data > div + div { min-height: 0; padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  footer { padding: 38px 0 8px; grid-template-columns: 1fr auto; align-items: center; row-gap: 35px; }
  .brand-person { display: none; }
  footer > p { grid-column: 1 / -1; grid-row: 2; }
}

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