@font-face {
  font-family: "Cormorant Garamond Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("assets/cormorant-garamond-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("assets/cormorant-garamond-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/manrope-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/manrope-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111615;
  --paper: #f5f5ef;
  --muted-dark: #b9bfb9;
  --muted-light: #565d57;
  --accent: #c5d0b1;
  --line-on-dark: rgb(245 245 239 / 24%);
  --line-on-light: rgb(17 22 21 / 23%);
  --font-display: "Cormorant Garamond Variable", Georgia, serif;
  --font-body: "Manrope Variable", Arial, sans-serif;
  --page-width: 1440px;
  --gutter: 72px;
  --gap: 24px;
  --section-gap: 96px;
  --header-height: 104px;
  --control-height: 48px;
  --control-radius: 24px;
  --text-body: 16px;
  --text-interface: 14px;
  --text-caption: 12px;
  --text-card: 40px;
  --text-heading: 64px;
  --text-hero: 112px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-size: var(--text-interface);
}

.skip-link:focus {
  top: 0.5rem;
}

.wrap {
  width: min(100%, var(--page-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
}

.wordmark {
  font-size: 1.7rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  padding: 0 1.35rem;
  border: 1px solid var(--paper);
  border-radius: var(--control-radius);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--text-interface);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.site-header {
  position: relative;
  z-index: 10;
}

.header-grid {
  height: var(--header-height);
  align-items: center;
}

.header-grid .wordmark {
  grid-column: 1 / 7;
}

.header-grid .button {
  grid-column: 7 / 13;
  justify-self: end;
}

.site-header::after {
  content: "";
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  height: 1px;
  background: var(--line-on-dark);
}

.hero {
  padding: 48px 0 var(--section-gap);
}

.hero-grid {
  align-items: start;
}

.eyebrow {
  grid-column: 1 / 6;
  grid-row: 1;
  align-self: start;
  padding-top: 10px;
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.hero h1 {
  grid-column: 8 / 13;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.brand-statement {
  display: flex;
  flex-direction: column;
  grid-column: 1 / 8;
  grid-row: 2;
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.lead {
  grid-column: 8 / 13;
  grid-row: 2;
  align-self: end;
  max-width: 22rem;
  color: var(--muted-dark);
}

.services {
  color: var(--ink);
  background: var(--paper);
  padding: var(--section-gap) 0;
}

.services-grid {
  align-items: start;
}

.service {
  position: relative;
  min-width: 0;
}

.service {
  grid-column: span 4;
}

.service + .service::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--gap) / -2);
  width: 1px;
  background: var(--line-on-light);
}

.service h2 {
  font-family: var(--font-display);
  font-size: var(--text-card);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.service p {
  margin-top: 16px;
  max-width: 18rem;
  color: var(--muted-light);
}

.contact {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--line-on-dark);
}

.contact-grid {
  align-items: end;
}

.contact h2 {
  grid-column: 1 / 8;
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  grid-column: 8 / 13;
  align-items: flex-start;
  gap: 24px;
}

.email {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.email:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--line-on-dark);
}

.footer-grid {
  align-items: end;
}

.copyright,
.studio {
  font-size: var(--text-caption);
  line-height: 1.5;
  color: var(--muted-dark);
}

.copyright {
  grid-column: 1 / 6;
}

.studio {
  display: grid;
  grid-column: 8 / 13;
  justify-items: start;
  gap: 4px;
}

.studio-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 40px;
    --section-gap: 80px;
    --text-hero: 96px;
    --text-heading: 52px;
  }

  .hero h1,
  .lead {
    grid-column: 7 / 13;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
    --section-gap: 64px;
    --header-height: 82px;
    --text-hero: 88px;
    --text-heading: 44px;
    --text-card: 40px;
  }

  .wordmark {
    font-size: 1.5rem;
  }

  .header-grid .wordmark {
    grid-column: 1 / 7;
  }

  .header-grid .button {
    grid-column: 7 / 13;
  }

  .hero {
    padding-top: 32px;
  }

  .eyebrow,
  .brand-statement,
  .hero h1,
  .lead,
  .service,
  .contact h2,
  .contact-panel,
  .copyright,
  .studio {
    grid-column: 1 / 13;
  }

  .eyebrow {
    grid-row: 1;
  }

  .brand-statement {
    grid-row: 2;
    margin-top: 28px;
  }

  .hero h1 {
    grid-row: 3;
    margin-top: 32px;
  }

  .lead {
    grid-row: 4;
    align-self: start;
    max-width: none;
    margin-top: 16px;
  }

  .service + .service::before {
    display: none;
  }

  .service + .service {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line-on-light);
  }

  .service p {
    max-width: none;
  }

  .contact-grid {
    row-gap: 32px;
  }

  .contact-panel {
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .footer-grid {
    row-gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
