/* Public website styles. */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap");

:root {
  --cream: #f6efdf;
  --orange: #ee6e49;
  --brown: #2a1912;
  --green: #2f533f;
  --line: rgba(42, 25, 18, 0.22);
  font-family: "DM Sans", sans-serif;
  color: var(--brown);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; }

.page { width: min(1320px, calc(100% - 48px)); margin: auto; }

nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; text-decoration: none; font-size: 1.13rem; }
.stamp { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); font-family: Fraunces, serif; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-right a { font-size: 0.88rem; text-decoration: none; }
.nav-right a:hover, .nav-right a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5vw;
  padding: 90px 0 50px;
  position: relative;
}

.overline { font-size: 0.77rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
h1, h2, .serif { font-family: Fraunces, Georgia, serif; }
h1 { max-width: 800px; margin: 22px 0 30px; font-size: clamp(4rem, 8vw, 8.2rem); line-height: 0.91; letter-spacing: -0.055em; font-weight: 500; }
h1 em { color: var(--orange); font-weight: 600; }
h2 { margin: 0; font-size: clamp(3rem, 5.6vw, 5.7rem); line-height: 0.98; letter-spacing: -0.045em; font-weight: 500; }
.lead { max-width: 620px; margin: 0; font-size: clamp(1.1rem, 2vw, 1.36rem); line-height: 1.55; }

.hero-card {
  align-self: center;
  min-height: 450px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--green);
  color: var(--cream);
  border-radius: 160px 160px 10px 10px;
}

.hero-mark { min-height: 170px; padding-top: 24px; display: grid; place-items: center; }
.hero-mark img { display: block; width: min(210px, 65%); height: auto; }
.hero-card p { max-width: 300px; margin: 0; line-height: 1.5; font-size: 0.96rem; }
.card-link { display: inline-block; margin-top: 15px; color: #ddd8c9; font-size: 0.88rem; text-underline-offset: 4px; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--brown); }

.promise {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6vw;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.promise-copy > p { margin: 32px 0 48px; max-width: 680px; font-size: 1.2rem; line-height: 1.65; }
.ways { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.way { padding: 25px 25px 25px 0; border-bottom: 1px solid var(--line); }
.way:nth-child(odd) { border-right: 1px solid var(--line); }
.way:nth-child(even) { padding-left: 25px; }
.way h3 { margin: 0 0 10px; font-size: 1.1rem; }
.way p { margin: 0; color: #725f54; line-height: 1.5; }
.promise-cta { margin-top: 38px; display: flex; align-items: center; gap: 24px; }
.promise-cta p { margin: 0; max-width: 390px; color: #725f54; font-size: 0.95rem; line-height: 1.5; }

.page-intro {
  padding: 100px 0 80px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6vw;
}

.page-intro h1 { max-width: 920px; margin-top: 20px; font-size: clamp(3.8rem, 7vw, 7rem); }
.page-intro-copy { align-self: end; }
.page-intro-copy p { max-width: 650px; margin: 0; font-size: 1.18rem; line-height: 1.65; }
.content-section { padding-bottom: 120px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { min-height: 310px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-number { color: var(--orange); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; }
.service h3 { margin: 55px 0 14px; font: 500 1.75rem/1.1 Fraunces, serif; }
.service p { margin: 0; color: #725f54; line-height: 1.58; }
.service-options { margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; color: #725f54; font-size: 0.9rem; line-height: 1.45; }
.service-options li + li { margin-top: 9px; }
.service-options li::before { content: "— "; color: var(--orange); }
.services-cta { margin-top: 38px; display: flex; align-items: center; gap: 24px; }
.services-cta p { margin: 0; color: #725f54; font-size: 0.95rem; }

.band { background: var(--orange); }
.band-inner { width: min(1320px, calc(100% - 48px)); margin: auto; padding: 110px 0; }
.band h2 { max-width: 900px; }
.process { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid rgba(42, 25, 18, 0.35); }
.process article { min-height: 220px; padding: 25px 30px 0 0; border-right: 1px solid rgba(42, 25, 18, 0.35); }
.process article:not(:first-child) { padding-left: 30px; }
.process article:last-child { border: 0; }
.process .number { font: 600 0.76rem/1 "DM Sans", sans-serif; letter-spacing: 0.1em; }
.process h3 { margin: 40px 0 12px; font: 500 1.85rem/1 Fraunces, serif; }
.process p { margin: 0; line-height: 1.55; }

.note {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  border-top: 1px solid var(--line);
}

.portrait {
  min-height: 420px;
  padding: 25px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #e9dfcd;
  background-size: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portrait .monogram { font: 600 clamp(5rem, 10vw, 9rem)/1 Fraunces, serif; color: var(--green); }
.portrait small { max-width: 220px; line-height: 1.5; }
.note-copy { align-self: center; }
.note-copy blockquote { margin: 24px 0 34px; font: 500 clamp(2rem, 4vw, 4.3rem)/1.08 Fraunces, serif; letter-spacing: -0.035em; }
.note-copy p { max-width: 680px; line-height: 1.65; font-size: 1.08rem; }
.note-copy p + p { margin-top: 18px; }

.toolbox {
  margin-bottom: 120px;
  padding: clamp(45px, 7vw, 90px);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6vw;
  background: var(--green);
  color: var(--cream);
  border-radius: 8px;
}

.toolbox h2 { max-width: 780px; }
.toolbox-copy > p { max-width: 680px; margin: 32px 0 45px; color: #ddd8c9; font-size: 1.17rem; line-height: 1.65; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(246, 239, 223, 0.3); }
.principle { padding: 22px 22px 0 0; }
.principle:not(:first-child) { padding-left: 22px; border-left: 1px solid rgba(246, 239, 223, 0.3); }
.principle strong { display: block; margin-bottom: 8px; color: #ff9675; font: 500 1.25rem/1.1 Fraunces, serif; }
.principle span { color: #c7c3b7; font-size: 0.88rem; line-height: 1.45; }

footer { background: var(--green); color: var(--cream); }
.footer-inner { width: min(1320px, calc(100% - 48px)); margin: auto; padding: 100px 0 35px; }
footer h2 { max-width: 950px; }
footer h2 em { color: #ff8c69; }
footer .button { margin-top: 42px; }
.footer-base { margin-top: 110px; padding-top: 25px; border-top: 1px solid rgba(246, 239, 223, 0.28); display: flex; justify-content: space-between; gap: 30px; font-size: 0.78rem; }

@media (max-width: 1050px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .page, .band-inner, .footer-inner { width: min(100% - 30px, 1320px); }
  .nav-right { gap: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-card { width: min(420px, 100%); justify-self: end; }
  .promise, .page-intro, .toolbox, .note { grid-template-columns: 1fr; }
  .page-intro-copy { margin-top: 15px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .process article, .process article:not(:first-child) { min-height: auto; padding: 25px 0 35px; border-right: 0; border-bottom: 1px solid rgba(42, 25, 18, 0.35); }
  .process article:last-child { border-bottom: 0; }
  .process h3 { margin-top: 25px; }
  .portrait { width: min(430px, 100%); }
}

@media (max-width: 600px) {
  nav { padding: 20px 0; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
  .nav-right { width: 100%; justify-content: space-between; gap: 12px; }
  .nav-right a { font-size: 0.84rem; }
  h1 { font-size: 3.25rem; }
  .hero { min-height: auto; }
  .hero-card { min-height: 370px; border-radius: 120px 120px 8px 8px; }
  .ways { grid-template-columns: 1fr; }
  .way, .way:nth-child(odd), .way:nth-child(even) { padding: 22px 0; border-right: 0; }
  .promise-cta, .services-cta { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service { min-height: auto; }
  .service h3 { margin-top: 35px; }
  .toolbox { padding-inline: 24px; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle:not(:first-child) { padding: 20px 0; border-left: 0; border-bottom: 1px solid rgba(246, 239, 223, 0.3); }
  .principle:last-child { border-bottom: 0; }
  .footer-base { flex-direction: column; }
}

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