@font-face {
  font-family: "Montserrat";
  src: url("montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #171817;
  --paper: #f4f1ea;
  --focus: #257b70;
  --gutter: clamp(24px, 5.4vw, 100px);
}

* { box-sizing: border-box; }
html { min-width: 280px; background: var(--paper); }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: min(1440px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
a { color: inherit; }
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 6px;
}
.skip-link {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.masthead { flex-shrink: 0; padding-block: 32px; }
.brand { display: block; width: clamp(230px, 26vw, 370px); height: auto; }
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  flex: 1 0 auto;
  min-height: 660px;
  background: var(--paper);
  color: var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(244, 241, 234, .98) 25%, rgba(244, 241, 234, .85) 36%, rgba(244, 241, 234, .08) 55%, transparent 65%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content { padding-block: clamp(72px, 9vw, 134px); }
h1 {
  max-width: 580px;
  margin: 0 0 36px;
  font-size: clamp(44px, 4.25vw, 64px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
h1 span { display: block; }
.message {
  max-width: 525px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.025em;
  text-wrap: pretty;
}
.message span { display: block; }
.message span + span { margin-top: 18px; }
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 66px;
  margin-top: 40px;
  padding: 18px 34px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.contact-button svg { flex: 0 0 auto; }
.contact-button:hover { color: var(--ink); background: var(--paper); }
.contact-button:focus-visible { outline-color: var(--ink); }
.footer { flex-shrink: 0; padding-block: 22px; border-top: 1px solid rgba(23, 24, 23, .35); }
.contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: clamp(14px, 1.18vw, 18px);
  font-style: normal;
  line-height: 1.5;
}
.contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}
.contact-details a:hover { text-decoration: underline; }
.phone { white-space: nowrap; }

@media (max-width: 1100px) and (min-width: 981px) {
  .hero { min-height: 610px; }
  h1 { max-width: 450px; }
  .message { max-width: 410px; }
  .hero-content { padding-block: 90px; }
  .hero::after { background: linear-gradient(90deg, var(--paper) 0%, rgba(244, 241, 234, .98) 32%, rgba(244, 241, 234, .85) 44%, transparent 68%); }
}

@media (max-width: 980px) {
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; }
  .hero::after { display: none; }
  .hero-content { order: 0; padding-block: 56px; }
  .hero-photo {
    position: static;
    order: 1;
    z-index: auto;
    height: auto;
    aspect-ratio: 1774 / 887;
    object-fit: contain;
    object-position: center;
  }
  h1 { font-size: clamp(34px, 7.3vw, 66px); }
  .message { max-width: 650px; font-size: 18px; }
  .contact-details { justify-content: flex-start; gap: 4px 32px; }
  .contact-details > span { flex-basis: 100%; }
}

@media (max-width: 520px) {
  .masthead { padding-block: 22px; }
  .brand { width: min(248px, 100%); }
  .hero-content { padding-block: 44px; }
  h1 { margin-bottom: 24px; font-size: clamp(29px, 7.4vw, 39px); line-height: 1.05; }
  .message { font-size: 16px; line-height: 1.65; letter-spacing: -.02em; }
  .message span + span { margin-top: 10px; }
  .contact-button { min-height: 58px; margin-top: 28px; padding: 16px 26px; font-size: 17px; }
  .hero-photo { height: 240px; aspect-ratio: auto; object-fit: cover; object-position: right center; }
  .footer { padding-block: 20px 26px; }
  .contact-details { flex-direction: column; align-items: flex-start; gap: 2px; font-size: 14px; }
  .contact-details > span { flex-basis: auto; margin-top: 8px; }
}

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