:root {
  --bg: #f7f4ef;
  --text: #2f3733;
  --text-soft: #4c5651;
  --text-softer: #5b645e;
  --text-muted: #7c857f;
  --text-mute: #9aa39b;
  --sage: #7d9184;
  --sage-dark: #5f7268;
  --border: #e3ded4;
  --white: #ffffff;
  --error: #a8705f;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: Karla, Helvetica, sans-serif;
  --mono: ui-monospace, Menlo, monospace;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

input, textarea, button {
  font-family: inherit;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hidden {
  display: none !important;
}

/* Layout helpers */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.kicker {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.placeholder-img {
  border-radius: 4px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #e7e3d9 0 12px, #ded9cd 12px 24px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.placeholder-img span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #8a8375;
  background: rgba(247, 244, 239, 0.85);
  padding: 7px 12px;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--sage);
  padding: 15px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.btn--outline {
  color: var(--sage-dark);
  background: none;
  border: 1px solid #cdd4ca;
}

.btn--outline:hover {
  border-color: var(--sage);
  color: var(--text);
}

.link-underline {
  font-size: 15px;
  color: var(--sage-dark);
  border-bottom: 1px solid #c8d0c7;
  padding-bottom: 3px;
}

.link-underline:hover {
  border-bottom-color: var(--sage);
  color: var(--text);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand__name {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand__role {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.nav__link {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav__link:hover {
  color: var(--text);
}

.nav__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  display: none;
}

.nav__link.is-active .nav__dot {
  display: block;
}

.nav__cta {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--sage);
  padding: 11px 22px;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--sage-dark);
  color: var(--white);
}

main {
  flex: 1;
}

/* Home */
.hero {
  padding-top: 76px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.hero__content {
  animation: fadeUp 0.7s ease both;
}

.hero__eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.hero__lead {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-softer);
  max-width: 46ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  animation: fadeUp 0.7s 0.1s ease both;
}

.section {
  padding-top: 96px;
}

.section-split {
  border-top: 1px solid var(--border);
  padding-top: 52px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
}

.section-split .kicker {
  margin: 0;
}

.lead-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.45;
  font-weight: 400;
  color: #37403b;
  text-wrap: pretty;
}

.body-text {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-softer);
  max-width: 60ch;
}

.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-box__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.2;
  text-wrap: pretty;
}

.cta-box__text {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-softer);
  max-width: 48ch;
}

.cta-box__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

/* Generic page header */
.page-header {
  padding-top: 76px;
  padding-bottom: 0;
}

.page-title {
  margin: 0;
  max-width: 22ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.12;
}

.page-title--wide {
  max-width: 24ch;
}

.page-subtitle {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-subtitle--lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-softer);
}

/* About page */
.page-body {
  padding-top: 76px;
  padding-bottom: 96px;
}

.about-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 116px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-sidebar .placeholder-img {
  aspect-ratio: 3 / 4;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card__label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.info-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.info-card__link {
  font-size: 14.5px;
  color: var(--sage-dark);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-content h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
}

.about-content p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.85;
  color: #4f5854;
  max-width: 66ch;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Breath page */
.breath-hero {
  background: #e9eef0;
  border-bottom: 1px solid #dbe2e4;
}

.breath-hero__inner {
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.breath-hero .kicker {
  color: #8d9ba1;
}

.breath-hero__image {
  aspect-ratio: 5 / 4;
}

.breath-hero__image {
  border-radius: 4px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #dde5e8 0 12px, #d3dde1 12px 24px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.breath-hero__image span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #7e8b90;
  background: rgba(255, 255, 255, 0.85);
  padding: 7px 12px;
  border-radius: 2px;
}

.breath-section {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
}

.breath-section--first {
  padding-top: 76px;
}

.breath-section .kicker {
  margin: 0;
}

.breath-section p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.85;
  color: #4f5854;
  max-width: 66ch;
}

.breath-section p:last-child {
  margin-bottom: 0;
}

.placeholder-note {
  margin: 20px 0 0;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-mute);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: baseline;
}

.step__num {
  font-family: var(--mono);
  font-size: 11px;
  color: #9fb4bd;
}

.step__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
}

.step__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-softer);
  max-width: 60ch;
}

.breath-cta {
  padding-top: 72px;
  padding-bottom: 96px;
}

.breath-cta__inner {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.breath-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
}

.breath-cta p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-softer);
  max-width: 50ch;
}

.breath-cta .btn {
  white-space: nowrap;
}

/* Blog */
.article-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.article-row {
  background: var(--bg);
  padding: 34px 4px;
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  gap: 32px;
  align-items: baseline;
  color: var(--text);
}

.article-row:hover {
  background: var(--white);
  color: var(--text);
}

.article-date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-mute);
}

.article-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.25;
}

.article-excerpt {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-softer);
  max-width: 60ch;
}

.article-tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98a398;
  text-align: right;
}

/* Contact */
.contact-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.success-box {
  padding: 36px 8px;
  text-align: center;
}

.success-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef0ea;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 20px;
}

.success-box h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
}

.success-box p {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-softer);
  max-width: 40ch;
}

.success-box .btn--outline {
  margin-top: 26px;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: 999px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field__label small {
  text-transform: none;
  letter-spacing: 0;
  color: #a3aba4;
}

.field input,
.field textarea {
  font-size: 16px;
  color: var(--text);
  background: #fbfaf7;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  outline: none;
}

.field textarea {
  line-height: 1.65;
  resize: vertical;
  font-family: var(--sans);
}

.field input:focus,
.field textarea:focus {
  border: 1px solid var(--sage);
  background: var(--white);
}

.field__error {
  font-size: 13px;
  color: var(--error);
  display: none;
}

.field.has-error .field__error {
  display: block;
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--error);
}

.form-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hp-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--error);
}

.form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form button[type="submit"] {
  align-self: flex-start;
  font-size: 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-block__label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.info-block a {
  font-size: 16.5px;
  color: var(--text);
  border-bottom: 1px solid #dbd6cc;
  padding-bottom: 8px;
}

.info-block a:hover {
  border-bottom-color: var(--sage);
  color: var(--text);
}

.info-block p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-soft);
}

.info-block p.small {
  font-size: 15px;
  color: var(--text-muted);
}

.contact-info .placeholder-img {
  aspect-ratio: 4 / 3;
  padding: 14px;
}

/* Footer */
.site-footer {
  background: #eef0ea;
  border-top: 1px solid #e2e6dd;
  margin-top: auto;
}

.footer-inner {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand__name {
  font-family: var(--serif);
  font-size: 21px;
}

.footer-brand__role {
  font-size: 14px;
  color: #6f7873;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14.5px;
  color: var(--text-soft);
}

.footer-col span {
  font-size: 14.5px;
  color: #6f7873;
}

/* Responsive */
@media (max-width: 860px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero,
  .section-split,
  .about-grid,
  .breath-hero__inner,
  .breath-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    position: static;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-tag {
    text-align: left;
  }

  .hero__title {
    font-size: 40px;
  }

  .page-title {
    font-size: 38px;
  }
}
