@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src:
    url("fonts/CormorantGaramond-wght.ttf") format("truetype-variations"),
    local("Cormorant Garamond");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: block;
  src:
    url("fonts/SourceSans3-wght.ttf") format("truetype-variations"),
    local("Source Sans 3");
}

:root {
  --ink: #e7e0d7;
  --paper: #0e0d0c;
  --muted: #b8afa5;
  --line: #312b26;
  --charcoal: #0e0d0c;
  --cream: #e7e0d7;
  --accent: #c6a47f;
  --accent-strong: #e7c79f;
  --max: 1120px;
  --page-gutter: clamp(1.5rem, 5vw, 2rem);
}

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

html {
  background: var(--paper);
}

body {
  min-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

main {
  flex: 1;
}

.home-main {
  display: flex;
  align-items: center;
}

a {
  color: inherit;
  text-decoration-color: rgba(140, 79, 50, 0.5);
  text-underline-offset: 0.22em;
}

a:hover {
  color: #fff4e6;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--cream);
  text-decoration: none;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon:hover {
  color: #fff4e6;
}

.social-icon.inline {
  width: 1.15rem;
  height: 1.15rem;
  vertical-align: -0.2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.hero-about {
  align-self: stretch;
  display: flex;
  align-items: center;
  max-width: 360px;
  padding-top: clamp(1rem, 3vw, 2rem);
}

.hero-about h2 {
  margin-bottom: 0.85rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-about p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.hero-about .button {
  margin-top: 1.25rem;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 6em;
  font-size: clamp(4.7rem, 10.8vw, 9.8rem);
  letter-spacing: 0.095em;
  line-height: 0.91;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

p {
  margin: 0 0 1rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: #fff4e6;
  border-color: var(--accent-strong);
  color: var(--charcoal);
}

.button.secondary {
  background: transparent;
  color: var(--cream);
}

.button.secondary:hover {
  background: rgba(231, 224, 215, 0.08);
}

.content-band {
  border-top: 1px solid var(--line);
  background: #151311;
}

.content-band > * {
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

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

.page-header {
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.page-header h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
  text-transform: none;
}

.contact-section {
  display: flex;
  align-items: center;
  min-height: calc(100dvh - 9rem);
  border-top: 1px solid var(--line);
  background: #151311;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.8fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
  width: min(100% - (var(--page-gutter) * 2), 880px);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.contact-layout article {
  max-width: 420px;
}

.contact-layout h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.contact-layout p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-layout a:not(.social-icon) {
  color: var(--cream);
}

.contact-layout article h2 + p + h2 {
  margin-top: 1.6rem;
}

.contact-methods {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
}

.instagram-link .social-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.prose,
.policy-list,
.service-list {
  max-width: 850px;
}

.prose h2,
.policy-list h2,
.service-list h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.policy-list article,
.service-list article {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.policy-list article:first-child,
.service-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1.5rem;
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: 1.2rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.legal-header {
  padding: clamp(2rem, 5vw, 3rem) 0 1rem;
}

.legal-header .eyebrow {
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.legal-header h1 {
  max-width: 720px;
  font-family: inherit;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.legal-band > * {
  padding: 1.5rem 0 clamp(2.5rem, 5vw, 4rem);
}

.legal-text {
  max-width: 820px;
  font-size: 0.96rem;
  line-height: 1.58;
}

.legal-text article {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(231, 224, 215, 0.14);
}

.legal-text article:first-child {
  border-top: 0;
}

.legal-text h2 {
  margin: 0 0 0.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.legal-text p {
  margin-bottom: 0.7rem;
}

@media (max-width: 760px) {
  :root {
    --page-gutter: clamp(1.25rem, 6vw, 1.75rem);
  }

  .site-header,
  .hero,
  .grid.two,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 1.15rem 0;
  }

  .nav {
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .hero {
    gap: clamp(2rem, 8vw, 3rem);
    padding: clamp(3rem, 11vw, 4.5rem) 0 clamp(5rem, 15vw, 7rem);
  }

  .hero-about {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-about p {
    max-width: 31rem;
  }

  .contact-section {
    align-items: flex-start;
    min-height: auto;
  }

  .contact-layout {
    width: min(100% - (var(--page-gutter) * 2), var(--max));
    gap: 2.4rem;
    padding: clamp(3rem, 11vw, 4.5rem) 0;
  }

  h1 {
    max-width: 9.2em;
    font-size: clamp(3.45rem, 18.5vw, 6.4rem);
    letter-spacing: 0.075em;
    line-height: 0.94;
  }

  .button {
    min-height: 2.7rem;
    padding: 0.66rem 0.95rem;
  }

  .legal-header {
    padding: 2rem 0 0.75rem;
  }

  .legal-band > * {
    padding: 1rem 0 3rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0 1.35rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

@media (min-width: 761px) and (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: clamp(2.75rem, 5vw, 4.5rem);
  }

  h1 {
    font-size: clamp(5.6rem, 10.2vw, 8.4rem);
    letter-spacing: 0.08em;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.15rem;
  }

  .nav {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 4.6rem);
    letter-spacing: 0.06em;
  }

  .hero-about p,
  .contact-layout p,
  .legal-text {
    font-size: 0.94rem;
  }

  .contact-layout h2 {
    font-size: 1.8rem;
  }
}
