:root {
  --bg: #f7f0e8;
  --surface: #fffaf5;
  --surface-2: #efe1d7;
  --text: #3b2a24;
  --muted: #7d6b63;
  --accent: #a65f46;
  --accent-dark: #7f4432;
  --line: #e2d2c7;
  --warm: #c78968;
  --shadow: 0 18px 50px rgba(127, 68, 50, 0.10);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(166,95,70,.14);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 255px; }
.brand-mark {
  width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: white; font-family: Georgia, serif; letter-spacing: .04em;
}
.brand-copy { display: grid; line-height: 1.15; gap: 4px; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; }
.brand-copy small { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 21px; font-size: 14px; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--accent); transition: .25s; }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--accent); border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--text); transition: .25s; }

.section-pad { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 105px 0; }
.soft-bg { width: 100%; max-width: none; padding-left: max(24px, calc((100vw - var(--max))/2)); padding-right: max(24px, calc((100vw - var(--max))/2)); background: var(--surface-2); }
.eyebrow { margin: 0 0 16px; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .16em; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(46px, 6vw, 78px); letter-spacing: -.035em; margin-bottom: 28px; }
h2 { font-size: clamp(38px, 4.6vw, 58px); letter-spacing: -.025em; margin-bottom: 0; }
h3 { font-size: 28px; }
p { color: #66534b; }

.hero { min-height: calc(100vh - 78px); display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; padding-top: 70px; padding-bottom: 80px; }
.hero-text { max-width: 620px; font-size: 19px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 48px; padding: 12px 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent-dark); color: white; }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.45); }
.button.full { width: 100%; border-radius: 13px; }
.hero-meta { margin-top: 34px; display: flex; gap: 22px; color: var(--muted); font-size: 13px; }
.hero-meta span::before { content: "•"; color: var(--warm); margin-right: 8px; }
.hero-image-wrap { position: relative; }
.hero-image { height: min(69vh, 700px); object-fit: cover; border-radius: 52% 52% 24px 24px; box-shadow: var(--shadow); }
.hero-image.portrait { object-position: 50% 18%; }
.image-note { position: absolute; right: -15px; bottom: 22px; padding: 11px 16px; border-radius: 999px; background: var(--surface); font-size: 12px; box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: 8px; }
.image-note-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.intro-strip { width: min(var(--max), calc(100% - 48px)); margin: 0 auto 30px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-strip div { padding: 26px 22px; display: grid; gap: 5px; border-right: 1px solid var(--line); }
.intro-strip div:last-child { border-right: 0; }
.intro-strip strong { font-family: Georgia,serif; font-size: 19px; font-weight: 500; }
.intro-strip span { color: var(--muted); font-size: 12px; }

.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.about-copy { font-size: 16px; }
.about-copy p:first-child { font-size: 18px; color: var(--text); }
.about-photo-stack { position: relative; min-height: 620px; }
.about-photo-stack img:first-child { position: absolute; top: 0; right: 0; width: 86%; height: 460px; object-fit: cover; border-radius: var(--radius); }
.about-photo-stack img:last-child { position: absolute; left: 0; bottom: 0; width: 60%; height: 270px; object-fit: cover; border: 10px solid var(--bg); border-radius: 22px; box-shadow: var(--shadow); }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-card { padding: 38px; border: 1px solid rgba(166,95,70,.16); border-radius: var(--radius); background: rgba(255,255,255,.5); min-height: 330px; }
.service-card p { margin-bottom: 0; }
.service-number { display: inline-block; margin-bottom: 48px; font-size: 12px; color: var(--accent); letter-spacing: .14em; }
.service-card.image-card { padding: 0; overflow: hidden; display: grid; grid-column: 1 / -1; grid-template-columns: .9fr 1.1fr; min-height: 440px; }
.service-card.image-card img { height: 100%; object-fit: cover; }
.image-card-body { padding: 48px; align-self: center; }

.accordion-list { border-top: 1px solid var(--line); }
.approach { border-bottom: 1px solid var(--line); }
.approach summary { list-style: none; cursor: pointer; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: Georgia,serif; font-size: clamp(24px,3vw,36px); }
.approach summary::-webkit-details-marker { display: none; }
.approach .plus { font-family: sans-serif; font-weight: 300; transition: transform .2s; }
.approach[open] .plus { transform: rotate(45deg); }
.approach p { max-width: 930px; padding: 0 0 32px; margin: 0; }

.session-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.session-card { overflow: hidden; border-radius: var(--radius); background: var(--surface); box-shadow: 0 1px 0 rgba(166,95,70,.08); }
.session-card img, .online-visual { height: 330px; object-fit: cover; }
.session-body { padding: 32px; }
.session-body > span { color: var(--warm); text-transform: uppercase; letter-spacing: .11em; font-size: 11px; font-weight: 700; }
.session-body h3 { margin: 10px 0 14px; }
.text-link { color: var(--accent-dark); font-weight: 700; font-size: 14px; }
.online-visual { background: linear-gradient(145deg, #ead4c7, #f8eee5); display: grid; place-items: center; }
.online-circle { width: 190px; height: 190px; border: 1px solid rgba(127,68,50,.28); border-radius: 50%; display: grid; place-items: center; position: relative; }
.online-circle::before, .online-circle::after { content: ""; position: absolute; border: 1px solid rgba(127,68,50,.16); border-radius: 50%; }
.online-circle::before { inset: -25px; }
.online-circle::after { inset: 25px; }
.online-circle span { font-family: Georgia,serif; font-size: 28px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-item { border: 0; padding: 0; overflow: hidden; border-radius: 20px; cursor: zoom-in; background: #ddd; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item:hover img { transform: scale(1.035); }

.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(166,95,70,.18); }
.faq-item summary { cursor: pointer; list-style: none; padding: 24px 6px; font-weight: 650; font-size: 17px; position: relative; padding-right: 38px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 22px; font-size: 22px; font-weight: 300; transition: .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 45px 26px 6px; }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; align-items: start; }
.contact-info h2 { margin-bottom: 24px; }
.contact-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: grid;
  grid-template-columns: 34px 120px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.contact-list span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-list strong {
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-form { padding: 34px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--text); font-size: 13px; font-weight: 650; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; background: #fff; color: var(--text); outline: none; transition: border .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(166,95,70,.10); }
.form-note { display: block; margin-top: 12px; color: var(--muted); line-height: 1.5; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.contact-form button:disabled { cursor: wait; opacity: .72; transform: none; }
.form-status { min-height: 24px; margin: 13px 0 0; font-size: 14px; font-weight: 650; }
.form-status.success { color: #356347; }
.form-status.error { color: #9a3d31; }

.location { padding-top: 35px; }
.location .section-heading { margin-bottom: 32px; }
.location .section-heading p:last-child { max-width: 680px; margin: 18px 0 0; }
.map-frame { overflow: hidden; min-height: 430px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }

.site-footer { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; min-height: 150px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; font-size: 13px; }
.site-footer > div { display: grid; }
.site-footer > div strong { font-family: Georgia,serif; font-size: 18px; font-weight: 500; }
.site-footer span, .site-footer p { color: var(--muted); }
.site-footer p { margin: 0; }
.site-footer > a { justify-self: end; }

.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(45,30,25,.90); display: none; place-items: center; padding: 40px; }
.lightbox.active { display: grid; }
.lightbox img { max-width: min(1050px, 92vw); max-height: 86vh; object-fit: contain; border-radius: 16px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; border: 0; background: transparent; color: white; font-size: 44px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .menu-button { display: block; }
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; padding: 22px 24px 30px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .nav-cta { margin-top: 8px; padding: 12px 16px !important; text-align: center; }
  .hero { grid-template-columns: 1fr; gap: 45px; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-image { height: 640px; }
  .intro-strip { grid-template-columns: 1fr 1fr; }
  .intro-strip div:nth-child(2) { border-right: 0; }
  .intro-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .contact { grid-template-columns: 1fr; gap: 50px; }
  .about-photo-stack { min-height: 520px; max-width: 720px; }
  .service-grid, .session-grid { grid-template-columns: 1fr; }
  .service-card.image-card { grid-template-columns: 1fr; }
  .service-card.image-card img { height: 360px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 70px; padding: 10px 18px; }
  .brand { min-width: 0; }
  .brand-mark { width: 41px; height: 41px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 10px; }
  .main-nav { top: 70px; }
  .section-pad { width: min(100% - 34px, var(--max)); padding: 74px 0; }
  .soft-bg { width: 100%; padding-left: 17px; padding-right: 17px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  h2 { font-size: 38px; }
  h3 { font-size: 25px; }
  .hero { padding-top: 44px; }
  .hero-text { font-size: 17px; }
  .hero-image { height: 470px; border-radius: 44% 44% 20px 20px; }
  .image-note { right: 10px; }
  .hero-meta { flex-direction: column; gap: 6px; }
  .button { width: 100%; }
  .intro-strip { width: calc(100% - 34px); grid-template-columns: 1fr; }
  .intro-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-strip div:last-child { border-bottom: 0; }
  .about-photo-stack { min-height: 410px; }
  .about-photo-stack img:first-child { width: 94%; height: 330px; }
  .about-photo-stack img:last-child { height: 190px; width: 58%; border-width: 7px; }
  .service-card { padding: 28px; }
  .service-number { margin-bottom: 32px; }
  .service-card.image-card img { height: 270px; }
  .image-card-body { padding: 30px; }
  .approach summary { padding: 22px 0; font-size: 25px; }
  .session-card img, .online-visual { height: 260px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
  .gallery-item.wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 20px; }
  .location { padding-top: 15px; }
  .map-frame, .map-frame iframe { min-height: 340px; height: 340px; }
  .contact-list a {
  grid-template-columns: 28px 1fr;
  gap: 10px 14px;
}

.contact-list a span {
  grid-column: 2;
}

.contact-list a strong {
  grid-column: 2;
}
  .site-footer { width: calc(100% - 34px); grid-template-columns: 1fr; gap: 18px; padding: 30px 0; }
  .site-footer > a { justify-self: start; }
  .lightbox { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
