:root {
  color-scheme: light;
  --ink: #161512;
  --soft-ink: #3b3831;
  --muted: #756f63;
  --paper: #f7f1e8;
  --paper-2: #efe8dc;
  --cream: #fffaf2;
  --line: rgba(22, 21, 18, 0.14);
  --forest: #30483b;
  --sage: #6e8b68;
  --gold: #b99b64;
  --rose: #a7685a;
  --shadow: 0 26px 70px rgba(22, 21, 18, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img,
picture {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  align-items: center;
  color: var(--cream);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 22px 36px;
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    padding 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 28px;
  backdrop-filter: blur(20px);
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-weight: 650;
  gap: 10px;
  min-height: 40px;
}

.brand-mark {
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(255, 250, 242, 0.55);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.72rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: currentColor;
  min-height: 40px;
  padding: 9px 14px;
}

.site-nav a:hover {
  background: rgba(255, 250, 242, 0.18);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(22, 21, 18, 0.07);
}

.nav-action {
  border: 1px solid currentColor;
}

.hero {
  background: var(--ink);
  color: var(--cream);
  min-height: 90vh;
  overflow: hidden;
  padding: 136px 36px 28px;
  position: relative;
}

.hero picture,
.hero img,
.hero-scrim {
  inset: 0;
  position: absolute;
}

.hero img {
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  width: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(16, 15, 12, 0.88), rgba(16, 15, 12, 0.46) 44%, rgba(16, 15, 12, 0.08)),
    linear-gradient(180deg, rgba(16, 15, 12, 0.28), rgba(16, 15, 12, 0.14) 55%, rgba(16, 15, 12, 0.68));
}

.hero-content {
  max-width: 690px;
  min-height: 55vh;
  padding-top: 54px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.hero h1,
.intro-grid h2,
.rhythm-copy h2,
.inquiry-copy h2,
.quiet-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: 5.2rem;
  margin-top: 14px;
  max-width: 620px;
}

.hero-copy {
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.18rem;
  margin: 22px 0 0;
  max-width: 500px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  min-width: 148px;
  padding: 13px 20px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 250, 242, 0.56);
  color: var(--cream);
}

.button-ghost:hover {
  background: rgba(255, 250, 242, 0.12);
}

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.hero-strip {
  align-items: center;
  border-top: 1px solid rgba(255, 250, 242, 0.22);
  bottom: 0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 36px;
  max-width: 780px;
  position: absolute;
  right: 36px;
  z-index: 1;
}

.hero-strip span {
  color: rgba(255, 250, 242, 0.82);
  min-height: 74px;
  padding: 24px 20px 20px 0;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 94px 36px;
}

.intro-section {
  padding-bottom: 58px;
  padding-top: 42px;
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  margin-top: 18px;
}

.intro-grid h2,
.rhythm-copy h2,
.inquiry-copy h2,
.quiet-page h1 {
  font-size: 3.45rem;
}

.intro-grid p,
.rhythm-list p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.service-section {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.service-card {
  background: rgba(255, 250, 242, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 28px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(185, 155, 100, 0.54);
  box-shadow: 0 18px 38px rgba(22, 21, 18, 0.08);
  transform: translateY(-2px);
}

.service-number {
  color: var(--rose);
  display: block;
  font-size: 0.78rem;
  font-weight: 780;
  margin-bottom: 70px;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

.service-card p {
  color: var(--muted);
  margin: 14px 0 0;
}

.format-section {
  padding-top: 22px;
}

.format-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.format-tile {
  align-content: space-between;
  background: var(--forest);
  border-radius: 8px;
  color: var(--cream);
  display: grid;
  min-height: 230px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.format-tile::before {
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.2), rgba(255, 250, 242, 0) 48%);
  content: "";
  inset: 0;
  position: absolute;
}

.format-tile:nth-child(2) {
  background: #49362f;
}

.format-tile:nth-child(3) {
  background: #202c31;
}

.format-tile:nth-child(4) {
  background: #574d38;
}

.format-tile span,
.format-tile small {
  position: relative;
  z-index: 1;
}

.format-tile span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  line-height: 1.05;
}

.format-tile small {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.88rem;
}

.rhythm-section {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
}

.rhythm-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rhythm-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 25px 0;
}

.rhythm-list span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.inquiry-section {
  align-items: start;
  background: var(--cream);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(340px, 1fr);
  padding: 92px max(36px, calc((100vw - 1180px) / 2 + 36px));
}

.inquiry-copy {
  position: sticky;
  top: 108px;
}

.inquiry-copy h2 {
  margin-top: 14px;
}

.inquiry-copy p:last-child {
  margin-top: 18px;
  max-width: 360px;
}

.inquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 26px;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 740;
}

input,
select,
textarea {
  appearance: none;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(22, 21, 18, 0.18);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 12px 13px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fffdf8;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 155, 100, 0.18);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -4px 0 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 116px;
  padding: 28px 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 250, 242, 0.76);
}

.footer-links a:hover {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quiet-page {
  align-content: center;
  display: grid;
  gap: 20px;
  min-height: 100vh;
  padding: 36px;
}

.quiet-page p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 4rem;
  }

  .intro-grid,
  .rhythm-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .intro-grid h2,
  .rhythm-copy h2,
  .inquiry-copy h2,
  .quiet-page h1 {
    font-size: 2.82rem;
  }

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

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    padding: 16px 18px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    font-size: 0.9rem;
    min-height: 36px;
    padding: 7px 9px;
  }

  .wordmark span:last-child {
    max-width: 108px;
  }

  .hero {
    min-height: 84vh;
    padding: 116px 20px 0;
  }

  .hero img {
    object-position: 67% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(16, 15, 12, 0.88), rgba(16, 15, 12, 0.34)),
      linear-gradient(180deg, rgba(16, 15, 12, 0.18), rgba(16, 15, 12, 0.78));
  }

  .hero-content {
    min-height: 49vh;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 3rem;
    max-width: 330px;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 320px;
  }

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

  .hero-strip {
    grid-template-columns: 1fr;
    left: 20px;
    position: relative;
    right: auto;
  }

  .hero-strip span {
    min-height: 45px;
    padding: 12px 0;
  }

  .section {
    padding: 68px 20px;
  }

  .intro-grid h2,
  .rhythm-copy h2,
  .inquiry-copy h2,
  .quiet-page h1 {
    font-size: 2.35rem;
  }

  .service-section,
  .format-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .format-tile {
    min-height: 210px;
  }

  .rhythm-list li {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .inquiry-section {
    gap: 28px;
    padding: 68px 20px;
  }

  .inquiry-form {
    box-shadow: none;
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 20px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
