:root {
  --paper: #f7f4ee;
  --paper-soft: #fffaf2;
  --ink: #1d2521;
  --muted: #69736e;
  --line: #ded6ca;
  --emerald: #00995f;
  --deep-green: #173f35;
  --aubergine: #5b2b46;
  --clay: #b47758;
  --wood: #d6a15c;
  --shadow: 0 24px 60px rgba(39, 34, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--paper-soft);
  background: linear-gradient(to bottom, rgba(18, 24, 21, 0.72), rgba(18, 24, 21, 0));
}

.brand {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  color: #bcebd5;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.92;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) clamp(32px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 24, 21, 0.78), rgba(17, 24, 21, 0.36) 42%, rgba(17, 24, 21, 0.1)),
    linear-gradient(0deg, rgba(17, 24, 21, 0.56), rgba(17, 24, 21, 0));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-panel {
  max-width: 720px;
  color: var(--paper-soft);
  transform: translateY(-5vh);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--emerald);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .hero-name {
  color: #bcebd5;
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: none;
}

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

h1 {
  max-width: 620px;
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  line-height: 1.5;
}

.hero-intro {
  max-width: 540px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.16rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.42;
  text-align: left;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 6px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  border-color: var(--paper-soft);
  background: var(--paper-soft);
  color: var(--deep-green);
}

.button.secondary {
  color: var(--paper-soft);
}

.section-grid,
.about,
.split-section,
.services,
.prices,
.publications,
.contact {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.about-media {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.92fr 0.74fr;
  gap: 14px;
  align-items: end;
}

.image-stack.single-image {
  display: block;
}

.about-portrait-frame {
  position: sticky;
  top: 110px;
  max-width: 500px;
  margin: 0;
}

.image-stack img {
  height: clamp(360px, 52vw, 620px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack.single-image img {
  position: relative;
  z-index: 1;
  height: clamp(390px, 46vw, 520px);
  object-position: center 34%;
}

.image-stack img:last-child {
  height: clamp(280px, 38vw, 470px);
  margin-bottom: -36px;
}

.image-stack.single-image img:last-child {
  height: clamp(390px, 46vw, 520px);
  margin-bottom: 0;
}

.copy p {
  color: var(--muted);
  font-size: 1.03rem;
  text-align: justify;
}

.about-more {
  width: 100%;
  margin-top: clamp(28px, 5vw, 54px);
}

.about-more summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 48px 12px 16px;
  cursor: pointer;
  color: var(--deep-green);
  background: rgba(255, 250, 242, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
  list-style: none;
}

.about-more summary::-webkit-details-marker {
  display: none;
}

.about-more summary::after {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(23, 63, 53, 0.18);
  border-radius: 50%;
  content: "";
  color: var(--aubergine);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 2px, 2px 10px;
  transform: translateY(-50%);
}

.about-more[open] summary {
  border-color: rgba(23, 63, 53, 0.22);
  background: var(--paper-soft);
}

.about-more[open] summary::after {
  background-size: 10px 2px, 0 0;
}

.about-more div {
  padding-top: 8px;
}

.about > .about-more {
  padding: 0;
}

.about > .about-more div {
  max-width: 920px;
}

.about > .about-more p {
  color: var(--muted);
  font-size: 1rem;
  text-align: justify;
}

.subheading {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.milestone-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  align-items: start;
}

.milestones {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.milestones div {
  display: grid;
  grid-template-columns: minmax(68px, max-content) 1fr;
  gap: 8px;
  padding: 9px 12px;
  background: var(--paper-soft);
  font-size: 0.94rem;
  line-height: 1.35;
}

.milestones strong {
  color: var(--aubergine);
}

.milestone-more {
  margin-top: 12px;
}

.milestone-more summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 48px 12px 16px;
  cursor: pointer;
  color: var(--deep-green);
  background: rgba(255, 250, 242, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
  list-style: none;
}

.milestone-more summary::-webkit-details-marker {
  display: none;
}

.milestone-more summary::after {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(23, 63, 53, 0.18);
  border-radius: 50%;
  content: "";
  color: var(--aubergine);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 2px, 2px 10px;
  transform: translateY(-50%);
}

.milestone-more[open] summary {
  border-color: rgba(23, 63, 53, 0.22);
  background: var(--paper-soft);
}

.milestone-more[open] summary::after {
  background-size: 10px 2px, 0 0;
}

.publication-more summary {
  border-color: rgba(0, 153, 95, 0.26);
  border-left: 4px solid var(--emerald);
  background: linear-gradient(90deg, rgba(0, 153, 95, 0.1), rgba(255, 250, 242, 0.82));
  color: var(--deep-green);
  font-weight: 600;
}

.publication-more summary::after {
  border-color: rgba(0, 153, 95, 0.28);
  color: var(--emerald);
  background-color: rgba(255, 250, 242, 0.72);
}

.publication-more[open] summary {
  border-color: rgba(0, 153, 95, 0.34);
  background: linear-gradient(90deg, rgba(0, 153, 95, 0.14), var(--paper-soft));
}

.milestone-more .milestones {
  margin-top: 10px;
}

.publication-mini-list {
  display: grid;
  gap: 1px;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: var(--line);
}

.publication-mini-list a,
.publication-mini-list p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 0;
  padding: 10px 12px;
  background: var(--paper-soft);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.32;
  text-decoration: none;
}

.publication-mini-list a:hover {
  color: var(--deep-green);
}

.publication-mini-list span {
  color: var(--aubergine);
  font-weight: 800;
}

.services {
  background: var(--paper-soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.services-heading {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.services-heading .section-brand {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-brand {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.section-brand small {
  color: var(--emerald);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.services-heading h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}

.service-accordion {
  display: grid;
  gap: 12px;
}

.service-accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.service-accordion summary,
.service-row {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 18px 62px 18px 24px;
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.16;
  list-style: none;
}

.service-accordion summary {
  cursor: pointer;
}

.service-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  color: var(--aubergine);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  transform: translateY(-50%);
}

.service-accordion details[open] summary {
  border-bottom: 1px solid var(--line);
}

.service-accordion details[open] summary::after {
  background-size: 12px 2px, 0 0;
}

.service-accordion details > div {
  max-width: 900px;
  padding: 22px 24px 26px;
}

.service-accordion p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-accordion p:last-child {
  margin-bottom: 0;
}

.service-note {
  display: grid;
  gap: 6px;
  max-width: 360px;
  margin-top: 18px;
  border-left: 3px solid var(--emerald);
  padding-left: 14px;
  color: var(--muted);
}

.service-note strong {
  color: var(--deep-green);
}

.process-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3eadf;
}

.process-band img {
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
}

.process-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.process-band a {
  color: var(--deep-green);
  font-weight: 800;
}

.publications {
  background: var(--deep-green);
  color: var(--paper-soft);
}

.prices {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.price-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-row {
  display: grid;
  align-content: space-between;
  gap: 8px;
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper-soft);
}

.price-row span,
.price-row strong,
.price-row em {
  color: var(--ink);
}

.price-row span {
  color: var(--deep-green);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.price-row strong {
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.price-row em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 750;
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.blog-card {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 8px;
  padding: 24px;
  color: var(--paper-soft);
  text-decoration: none;
  background: rgba(255, 250, 242, 0.06);
}

.blog-card span,
.blog-card em {
  color: #c6e4d7;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.12;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.contact-title {
  color: var(--deep-green);
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.contact-box {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: var(--aubergine);
  color: var(--paper-soft);
  box-shadow: var(--shadow);
}

.contact-box a {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.28rem);
  text-decoration: none;
}

.post-page {
  min-height: 100vh;
  padding: clamp(32px, 6vw, 72px);
  background: var(--paper);
}

.back-link {
  display: inline-flex;
  margin-bottom: clamp(42px, 8vw, 90px);
  color: var(--deep-green);
  font-weight: 800;
  text-decoration: none;
}

.post-article {
  max-width: 820px;
}

.post-article h1 {
  color: var(--ink);
}

.post-article .lead {
  color: var(--muted);
}

.post-article p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  font-size: 1.08rem;
  text-align: justify;
}

@media (max-width: 980px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

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

  .section-grid,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  }

  .about-portrait-frame {
    position: relative;
    top: auto;
    width: min(100%, 460px);
  }

  .about-media {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-end;
    max-width: 230px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 150px;
  }

  .hero-image {
    object-position: 70% center;
  }

  .image-stack,
  .process-band {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child {
    height: auto;
    margin: 0;
  }

  .service-accordion summary {
    padding-right: 54px;
  }

  .milestones div {
    grid-template-columns: 1fr;
  }

  .milestone-columns {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-media {
    justify-items: center;
  }

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

  .price-row {
    min-height: 118px;
    gap: 8px;
    padding: 14px;
  }
}
