:root {
  --ink: #17221f;
  --ink-soft: #53605c;
  --forest: #102d2a;
  --forest-light: #1a413c;
  --cream: #f5f2e9;
  --paper: #fcfbf7;
  --white: #ffffff;
  --copper: #95502f;
  --line: #d9ddd7;
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 60px rgba(17, 39, 35, 0.09);
  --radius: 3px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible {
  outline: 3px solid #ed8d56;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--white);
}

.site-header {
  position: relative;
  z-index: 10;
  color: var(--white);
  background: var(--forest);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.wordmark {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wordmark span {
  color: #db9670;
}

.brand-line {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-color: #e2a27d;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background-color: var(--forest);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-position: center;
  background-size: 92px 92px;
}

.hero-grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.7fr);
  align-items: stretch;
  gap: clamp(64px, 9vw, 140px);
}

.hero-copy {
  align-self: center;
  padding-block: 96px 110px;
}

.eyebrow,
.section-label {
  margin-bottom: 25px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e2a27d;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7vw, 6.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #e2a27d;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button span {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 0;
}

.button-primary {
  color: var(--forest);
  background: var(--white);
}

.button-primary:hover {
  background: #f0d6c5;
}

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

.hero-principle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 105px clamp(34px, 4vw, 64px);
  border-left: 1px solid var(--line-dark);
}

.principle-number {
  position: absolute;
  top: 52px;
  left: clamp(34px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
}

.hero-principle p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.philosophy {
  background: var(--cream);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.philosophy h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 500;
}

.philosophy-copy {
  padding-top: 10px;
  border-top: 2px solid var(--copper);
}

.philosophy-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.philosophy-copy p:last-child {
  margin-bottom: 0;
}

.focus {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1fr minmax(280px, 0.56fr);
  gap: 60px;
  align-items: end;
}

.section-heading h2,
.process h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 500;
}

.section-heading p:last-child {
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.focus-card:hover {
  background: var(--cream);
}

.focus-card > span,
.step-number {
  display: block;
  margin-bottom: 58px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.focus-card h3 {
  min-height: 2.25em;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 600;
}

.focus-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.55;
}

.process {
  color: var(--white);
  background: var(--forest);
}

.process .section-label {
  color: #e2a27d;
}

.process h2 {
  max-width: 670px;
  margin-bottom: 70px;
  color: var(--white);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  position: relative;
  min-height: 270px;
  padding: 30px 28px 15px;
  border-right: 1px solid var(--line-dark);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  z-index: 2;
  top: -21px;
  right: -17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest);
  background: #e2a27d;
  border-radius: 50%;
  font-size: 1rem;
}

.process .step-number {
  margin-bottom: 62px;
  color: #e2a27d;
}

.process-list h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.3fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.about-grid > .section-label {
  margin-top: 12px;
}

.about h2 {
  margin-bottom: 28px;
}

.about h2 + p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.5;
}

.contact {
  background: var(--paper);
}

.contact-panel {
  display: grid;
  padding: clamp(44px, 7vw, 82px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 10vw, 140px);
  color: var(--white);
  background: var(--forest-light);
  box-shadow: var(--shadow);
}

.contact .section-label {
  color: #e2a27d;
}

.contact h2 {
  max-width: 650px;
  margin-bottom: 27px;
  color: var(--white);
}

.contact h2 + p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contact-details p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-details strong {
  color: var(--white);
  font-size: 1.15rem;
}

.email-link {
  margin-bottom: 30px;
  color: #f1b28d;
  font-weight: 700;
  text-underline-offset: 4px;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--white);
  text-decoration-thickness: 2px;
}

.button-light {
  color: var(--forest);
  background: var(--white);
}

.button-light:hover {
  background: #f0d6c5;
}

.site-footer {
  padding-block: 35px;
  color: var(--ink-soft);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding-bottom: 70px;
  }

  .hero-principle {
    min-height: 220px;
    padding: 55px 0 55px 120px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .principle-number {
    top: 66px;
    left: 0;
  }

  .philosophy-grid,
  .section-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    gap: 50px;
  }

  .section-heading,
  .contact-panel {
    gap: 42px;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(2)::after {
    display: none;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .header-inner {
    min-height: auto;
    padding-block: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 24px;
    row-gap: 0;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding-block: 72px 64px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.7rem);
  }

  .hero-principle {
    min-height: auto;
    padding: 46px 0 46px 82px;
  }

  .principle-number {
    top: 52px;
    font-size: 3rem;
  }

  .section {
    padding-block: 78px;
  }

  .focus-grid,
  .process-list,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 0;
    padding: 24px;
  }

  .focus-card > span {
    margin-bottom: 32px;
  }

  .focus-card h3 {
    min-height: 0;
  }

  .process-list li,
  .process-list li:first-child {
    min-height: auto;
    padding: 30px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li:not(:last-child)::after {
    display: none;
  }

  .process .step-number {
    margin-bottom: 35px;
  }

  .about-grid {
    gap: 20px;
  }

  .contact-panel {
    padding: 36px 27px;
  }

  .email-link {
    overflow-wrap: anywhere;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
