:root {
  color-scheme: light;
  --ink: #14282d;
  --muted: #526266;
  --line: rgba(20, 40, 45, 0.14);
  --paper: #f8f3ea;
  --white: #fffdf8;
  --gold: #b78a44;
  --max: 68rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding-block: 0.25rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

main {
  animation: enter 400ms ease-out both;
}

.home-hero,
.page-intro,
.section {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  min-height: 34rem;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.hero-image {
  min-height: 24rem;
  border: 1px solid rgba(183, 138, 68, 0.32);
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.18), rgba(248, 243, 234, 0.8)),
    url("brand-texture.png") center / cover no-repeat;
}

.page-intro {
  padding-block: clamp(4rem, 10vw, 7rem) clamp(2rem, 6vw, 4rem);
}

.section {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 9vw, 6.7rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.lede {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 3rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--ink);
}

.rows {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: minmax(12rem, 0.5fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-row {
  grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr) minmax(9rem, 0.32fr);
}

.price-row strong {
  font-size: 1rem;
  text-align: right;
}

.contact-section {
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.contact-section p,
.note {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.email-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-family: Georgia, "Times New Roman", serif;
  text-decoration-color: rgba(183, 138, 68, 0.55);
  text-underline-offset: 0.28rem;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--gold);
}

.button:focus-visible,
.email-link:focus-visible,
.site-nav a:focus-visible,
.brand-mark:focus-visible {
  outline: 3px solid rgba(183, 138, 68, 0.24);
  outline-offset: 4px;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 48rem) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 3rem;
  }

  .hero-image {
    min-height: 16rem;
  }

  .row,
  .price-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .price-row strong {
    text-align: left;
  }
}

@media (max-width: 30rem) {
  .site-header,
  .home-hero,
  .page-intro,
  .section {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .button {
    width: 100%;
  }
}
