:root {
  --ink: #21342d;
  --ink-soft: #52625b;
  --moss: #627f62;
  --sage: #dce7d9;
  --mint: #eef5ef;
  --clay: #b86f55;
  --apricot: #f4d2bf;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: #d8ddd5;
  --shadow: 0 18px 50px rgba(33, 52, 45, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(216, 221, 213, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  min-height: clamp(520px, 70vh, 620px);
  padding: clamp(54px, 8vw, 94px) clamp(20px, 7vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 42%, rgba(225, 235, 222, 0.82), transparent 36%),
    linear-gradient(90deg, rgba(251, 250, 245, 1) 0%, rgba(251, 250, 245, 0.96) 52%, rgba(237, 244, 234, 0.9) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-logo-panel {
  display: grid;
  place-items: center;
}

.hero-logo-panel img {
  display: block;
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(33, 52, 45, 0.12));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--moss);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.page-hero {
  padding: clamp(34px, 5vw, 62px) clamp(20px, 5vw, 72px);
}

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

.page-hero + .section {
  padding-top: clamp(52px, 7vw, 88px);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--mint), var(--cream));
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.contact-hero {
  text-align: center;
}

.contact-hero h1,
.contact-hero p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.thank-you-hero {
  min-height: calc(100vh - 158px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro,
.two-column,
.service-block,
.contact-layout,
.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.story-label {
  position: sticky;
  top: 112px;
}

.story-copy {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.story-copy p {
  margin-bottom: 22px;
}

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

.intro {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(48px, 7vw, 84px);
  background: var(--cream);
}

.portrait-card {
  width: min(100%, 420px);
  min-height: 360px;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 62% 50%;
}

.muted {
  background: var(--mint);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.feature-grid,
.value-grid,
.specialty-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

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

.feature,
.specialty,
.info-panel,
.pricing-panel,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(33, 52, 45, 0.07);
}

.feature,
.specialty {
  padding: 24px;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--moss);
  background: var(--sage);
  border-radius: 50%;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.split-cta {
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--line);
}

.split-cta p {
  max-width: 760px;
}

.info-panel,
.pricing-panel,
.contact-card {
  padding: clamp(24px, 4vw, 38px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--clay);
  content: "+";
  font-weight: 900;
}

.check-list.compact {
  gap: 14px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 0.9rem;
  line-height: 1.45;
}

.check-list.compact li {
  display: flex;
  position: relative;
  gap: 10px;
  align-items: flex-start;
  padding-left: 0;
}

.check-list.compact li::before {
  position: static;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.1em;
  background: var(--clay);
  border-radius: 50%;
  content: "";
}

.check-list.compact li::after {
  position: absolute;
  top: 0.72em;
  left: 5px;
  width: 8px;
  height: 2px;
  background: var(--white);
  content: "";
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.value-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 13px 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
}

.service-block {
  align-items: start;
}

.workshop-panel {
  display: grid;
  gap: 28px;
}

.workshop-group h3,
.workshop-note h3 {
  margin-bottom: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
}

.compact-tags span {
  background: var(--cream);
}

.workshop-note {
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.workshop-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.service-block > div:first-child .detail-grid {
  grid-template-columns: 1fr;
}

.detail-grid article {
  padding-top: 20px;
  border-top: 2px solid var(--apricot);
}

.pricing-list,
.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pricing-list div,
.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--ink-soft);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

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

.specialty-accordion-grid {
  align-items: start;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.specialty h2 {
  font-size: 1.35rem;
}

.specialty-accordion {
  padding: 0;
  overflow: hidden;
}

.specialty-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  list-style: none;
}

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

.specialty-accordion summary span {
  font-size: 1.2rem;
  line-height: 1.2;
}

.specialty-accordion summary::after {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--moss);
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

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

.specialty-accordion[open] summary::after {
  content: "-";
}

.specialty-content {
  display: grid;
  gap: 14px;
  padding: 22px 24px 26px;
}

.specialty-content p {
  margin: 0;
  color: var(--ink-soft);
}

.specialty-content h3 {
  margin: 6px 0 0;
  font-size: 1rem;
}

.specialty-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialty-content li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.specialty-content li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--apricot);
  border-radius: 50%;
  content: "";
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

details {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
}

details p {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

details p + p {
  margin-top: 12px;
}

.contact-layout {
  align-items: stretch;
}

.contact-layout .contact-card:only-child {
  max-width: 920px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form label span {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--moss);
  outline: 3px solid rgba(98, 127, 98, 0.18);
}

.contact-form .button {
  width: fit-content;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 5vw, 64px);
  color: var(--ink-soft);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header,
  .nav {
    justify-content: center;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

  .brand {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-logo-panel img {
    width: min(100%, 360px);
  }

  h1 {
    max-width: 16ch;
    margin-right: auto;
    margin-left: auto;
  }

  .intro,
  .two-column,
  .service-block,
  .contact-layout,
  .split-cta {
    grid-template-columns: 1fr;
  }

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

  .story-label {
    position: static;
  }

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

  .split-cta {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px;
  }

  .nav {
    gap: 8px 14px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 42px 20px 56px;
  }

  .hero-logo-panel img {
    width: min(100%, 300px);
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(2.15rem, 9.5vw, 2.85rem);
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }

  .button,
  .button-row,
  .contact-actions,
  .contact-form .button {
    width: 100%;
  }

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

  .feature-grid,
  .specialty-grid,
  .specialty-accordion-grid,
  .value-grid,
  .detail-grid,
  .check-list.compact {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    min-height: 280px;
  }

  .portrait-card img {
    min-height: 280px;
  }

  .pricing-list div,
  .detail-list div {
    display: grid;
    gap: 4px;
  }

  dd {
    text-align: left;
  }
}
