@font-face {
  font-family: "Avenir Clarity";
  src: url("../assets/AvenirNextLTPro-MediumCn-subset.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Avenir Clarity";
  src: url("../assets/AvenirNextLTPro-DemiCn-subset.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #2d2628;
  --muted: #6e6262;
  --cream: #f8f3ed;
  --paper: #fffdf9;
  --blush: #e8d2cc;
  --rose: #b66f70;
  --plum: #60485a;
  --sage: #b9c4b2;
  --line: rgba(45, 38, 40, 0.16);
  --display: "Avenir Clarity", "Arial Narrow", sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html { scroll-padding-top: 6rem; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
}

:focus-visible { outline: 3px solid var(--rose); outline-offset: 4px; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 4rem, 1360px);
  height: 106px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50% 46% 52% 42%;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  transform: rotate(-8deg);
}

.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3rem); }
.site-nav a, .back-to-top {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 0.75rem 1rem; border: 1px solid var(--ink); border-radius: 100px; }
.nav-cta span { margin-left: 0.4rem; }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: min(900px, 100vh);
  padding: 170px max(2rem, calc((100vw - 1360px) / 2)) 5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(232, 210, 204, 0.48), transparent 26%),
    linear-gradient(108deg, var(--cream) 0 61%, #efe3dd 61% 100%);
}

.hero-copy { position: relative; z-index: 2; align-self: center; padding: 2rem 5vw 4rem 0; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow span { width: 2rem; height: 1px; background: var(--rose); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 0.98; }
h1 { margin-bottom: 2rem; font-size: clamp(4.2rem, 8.1vw, 8.2rem); letter-spacing: -0.035em; }
h1 em, h2 em { color: var(--rose); font-family: Georgia, serif; font-weight: 400; }
.hero-intro { max-width: 36rem; margin-bottom: 2.2rem; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.24rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.7rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--plum);
  border-radius: 100px;
  background: var(--plum);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 220ms ease, background 220ms ease, color 220ms ease;
}
.button:hover { gap: 2rem; background: transparent; color: var(--plum); }
.text-link { font-size: 0.82rem; font-weight: 700; text-underline-offset: 0.45rem; text-transform: uppercase; }

.hero-visual { position: relative; align-self: center; width: min(100%, 590px); justify-self: center; }
.portrait-frame {
  position: relative;
  z-index: 2;
  width: 72%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 48% 48% 8% 8% / 32% 32% 5% 5%;
  box-shadow: 0 30px 80px rgba(67, 48, 56, 0.16);
}
.portrait-frame img { width: 100%; height: min(590px, 65vh); object-fit: cover; object-position: center 22%; }
.portrait-frame::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.7); border-radius: inherit; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(96,72,90,.35); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--rose); }
.orbit-one { inset: 7% -3% 3% 3%; transform: rotate(22deg); animation: orbit-breathe 7s ease-in-out infinite; }
.orbit-one::after { top: 14%; right: 11%; }
.orbit-two { inset: -3% 7% 10% -4%; transform: rotate(-18deg); animation: orbit-breathe 8s 1s ease-in-out infinite reverse; }
.orbit-two::after { bottom: 8%; left: 20%; width: 6px; height: 6px; }
.photo-note {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 7%;
  margin: 0;
  padding: 1.1rem 1.4rem;
  background: var(--paper);
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
  box-shadow: 0 12px 35px rgba(67, 48, 56, 0.1);
  transform: rotate(3deg);
}
.photo-note span { color: var(--rose); }
.scroll-note { position: absolute; bottom: 2rem; left: max(2rem, calc((100vw - 1360px) / 2)); display: flex; align-items: center; gap: .8rem; margin: 0; color: var(--muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-note span { display: block; width: 1px; height: 3rem; background: var(--rose); transform-origin: top; animation: scroll-line 2.2s ease-in-out infinite; }

.section { width: min(100% - 4rem, 1240px); margin-inline: auto; padding-block: clamp(6rem, 10vw, 10rem); }
.section-label span { flex: 1; max-width: 5rem; height: 1px; background: var(--line); }
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(3rem, 9vw, 9rem); }
.handwritten {
  width: min(100%, 350px);
  margin: 0 0 1.35rem -0.35rem;
}
.handwritten img {
  width: 100%;
  height: auto;
  opacity: .8;
  filter: sepia(.25) saturate(.65);
  mix-blend-mode: multiply;
  transform: rotate(-1.5deg);
}
.intro h2, .approach h2, .testimonials h2, .journal h2, .contact h2 { font-size: clamp(3.1rem, 5.6vw, 5.7rem); letter-spacing: -.025em; }
.intro-copy { padding-top: 4.5rem; }
.intro-copy p { max-width: 38rem; color: var(--muted); }
.intro-copy .lead { color: var(--ink); font-family: var(--display); font-size: clamp(1.5rem, 2.3vw, 2.1rem); line-height: 1.28; }

.approach { width: 100%; max-width: none; padding-inline: max(2rem, calc((100vw - 1240px) / 2)); background: var(--cream); }
.approach-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 4rem; }
.approach-heading h2 { max-width: 650px; margin-bottom: 0; }
.approach-heading p { max-width: 420px; margin-bottom: .5rem; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 4rem; }
.card { position: relative; min-height: 410px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.42); transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease; }
.card:hover { z-index: 2; background: var(--paper); box-shadow: 0 24px 55px rgba(80,60,70,.1); transform: translateY(-10px) rotate(-.5deg); }
.card:nth-child(2):hover { transform: translateY(-10px) rotate(.5deg); }
.card-number { color: var(--muted); font-size: .65rem; letter-spacing: .12em; }
.card-icon { position: relative; width: 120px; height: 120px; margin: 2.5rem auto 3rem; border: 1px solid var(--rose); border-radius: 50%; }
.card-icon::before, .card-icon::after, .card-icon span { content: ""; position: absolute; border: 1px solid var(--rose); border-radius: 50%; }
.card-icon::before { inset: 17px -13px 17px 13px; transform: rotate(42deg); }
.card-icon::after { inset: 34px 6px -1px 6px; transform: rotate(-42deg); }
.card-icon span { top: 52px; left: 52px; width: 14px; height: 14px; background: var(--rose); }
.card-icon--two { border-radius: 48% 52% 42% 58%; transform: rotate(20deg); }
.card-icon--two::before { inset: 12px; border-radius: 18% 82% 23% 77%; }
.card-icon--two::after { inset: 36px -15px; border-radius: 50%; }
.card-icon--three { border-radius: 4px; transform: rotate(45deg) scale(.72); }
.card-icon--three::before { inset: -20px 20px; border-radius: 50%; }
.card-icon--three::after { inset: 20px -20px; border-radius: 50%; }
.card-icon--four { border-radius: 50% 12% 50% 12%; transform: rotate(45deg) scale(.82); }
.card-icon--four::before { inset: 18px; border-radius: 50% 10% 50% 10%; }
.card-icon--four::after { inset: 39px -10px; transform: rotate(-45deg); }
.card h3 { margin-bottom: 1rem; font-size: clamp(1.65rem, 2vw, 2rem); }
.card p { max-width: 21rem; margin-bottom: 0; color: var(--muted); }

.quote-break { position: relative; display: grid; min-height: 550px; padding: 5rem 2rem; place-items: center; overflow: hidden; background: var(--plum); color: var(--paper); text-align: center; }
.quote-break::before, .quote-break::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.quote-break::before { top: -230px; left: -80px; box-shadow: 0 0 0 45px rgba(255,255,255,.03), 0 0 0 90px rgba(255,255,255,.025); }
.quote-break::after { right: -160px; bottom: -270px; box-shadow: 0 0 0 60px rgba(255,255,255,.03); }
.quote-break p { position: relative; z-index: 1; margin: 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4.4vw, 4.6rem); font-style: italic; line-height: 1.2; }
.spark { position: absolute; color: var(--blush); font-size: 1.7rem; animation: twinkle 3s ease-in-out infinite; }
.spark-one { top: 24%; left: 18%; }
.spark-two { right: 16%; bottom: 22%; animation-delay: 1.2s; }

.testimonials { overflow: hidden; }
.testimonial-top { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.testimonial-top h2 { margin-bottom: 0; }
.carousel-controls { display: flex; gap: .6rem; padding-bottom: .6rem; }
.carousel-button { width: 3.4rem; height: 3.4rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: background 200ms, color 200ms, transform 200ms; }
.carousel-button:hover { background: var(--plum); color: white; transform: scale(1.05); }
.testimonial-track { display: flex; gap: 1.5rem; margin-top: 4rem; padding: .5rem max(1px, calc((100vw - 1240px) / 2)) 2rem 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--blush) transparent; }
.testimonial { flex: 0 0 min(550px, 82vw); min-height: 410px; margin: 0; padding: 2.7rem; border: 1px solid var(--line); scroll-snap-align: start; }
.testimonial:nth-child(even) { background: var(--cream); }
.quote-mark { display: block; height: 3rem; color: var(--rose); font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.testimonial p { font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.36; }
.testimonial footer { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.testimonial footer span { width: 1.8rem; height: 1px; background: var(--rose); }

.journal { padding-top: 2rem; }
.journal-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 4rem; }
.journal-heading h2 { max-width: 720px; margin-bottom: 0; }
.journal-heading > p { max-width: 430px; margin-bottom: .5rem; color: var(--muted); }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 4rem; }
.journal-card {
  display: flex;
  min-height: 340px;
  padding: 2rem;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--cream);
}
.journal-card:nth-child(2) { background: var(--paper); }
.journal-meta { display: flex; align-items: center; gap: .7rem; margin: 0; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.journal-meta span { padding: .38rem .55rem; border: 1px solid var(--rose); border-radius: 100px; color: var(--rose); }
.journal-card h3 { margin: 3rem 0 1.2rem; font-size: clamp(1.8rem, 2.4vw, 2.5rem); line-height: 1.08; }
.journal-card > p:last-child { margin: auto 0 0; color: var(--muted); }
.journal-button { width: fit-content; margin-top: 2.5rem; }

.contact { display: grid; grid-template-columns: .75fr 1.25fr; width: 100%; max-width: none; padding: 0; background: #efe2dc; }
.contact-photo { position: relative; min-height: 750px; overflow: hidden; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,38,40,.5), transparent 50%); }
.contact-photo p { position: absolute; z-index: 1; left: 2.5rem; bottom: 2rem; margin: 0; color: white; font-family: Georgia, serif; font-size: clamp(2rem, 3vw, 3.6rem); font-style: italic; line-height: 1.08; }
.contact-panel { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.contact-panel h2 { max-width: 680px; margin-bottom: 1.5rem; }
.contact-panel > p { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
form { max-width: 720px; margin-top: 3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
label { display: block; margin-bottom: 1.5rem; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
input, textarea { width: 100%; margin-top: .55rem; padding: .85rem .2rem; border: 0; border-bottom: 1px solid rgba(45,38,40,.35); border-radius: 0; outline: 0; background: transparent; color: var(--ink); text-transform: none; transition: border-color 200ms; }
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--rose); box-shadow: 0 1px 0 var(--rose); }
.submit-button { margin-top: .5rem; cursor: pointer; }
.submit-button:disabled { cursor: default; opacity: .7; }
.form-status { margin-top: 1rem; color: var(--plum); font-size: .9rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; min-height: 150px; padding: 2rem max(2rem, calc((100vw - 1360px) / 2)); background: var(--ink); color: var(--paper); }
.site-footer p { margin: 0; color: rgba(255,255,255,.55); font-size: .8rem; text-align: center; }
.site-footer .brand { color: var(--paper); }
.back-to-top { justify-self: end; }

.has-motion .reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.22,1,.36,1); }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }
.has-motion .cards .reveal:nth-child(2) { transition-delay: 100ms; }
.has-motion .cards .reveal:nth-child(3) { transition-delay: 200ms; }
.has-motion .cards .reveal:nth-child(4) { transition-delay: 300ms; }
.has-motion .journal-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.has-motion .journal-grid .reveal:nth-child(3) { transition-delay: 200ms; }

@keyframes orbit-breathe { 0%,100% { transform: rotate(22deg) scale(1); } 50% { transform: rotate(28deg) scale(1.025); } }
@keyframes scroll-line { 0%,100% { transform: scaleY(.25); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes twinkle { 0%,100% { opacity: .35; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(20deg); } }

@media (max-width: 980px) {
  .site-header { width: min(100% - 3rem, 1360px); }
  .menu-button { display: grid; gap: 6px; width: 44px; height: 44px; padding: 12px 8px; border: 0; background: transparent; cursor: pointer; }
  .menu-button span:not(.visually-hidden) { display: block; width: 100%; height: 1px; background: var(--ink); transition: transform 200ms; }
  .menu-button[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 86px; right: 0; display: none; width: min(320px, calc(100vw - 3rem)); padding: 1.5rem; align-items: stretch; flex-direction: column; gap: 1.4rem; background: var(--paper); box-shadow: 0 20px 50px rgba(45,38,40,.12); }
  .site-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr 0.8fr; padding-inline: 2rem; }
  .hero h1 { font-size: clamp(4rem, 9vw, 6rem); }
  .photo-note { right: -1rem; }
  .approach-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card { display: grid; grid-template-columns: 80px 1fr; gap: .3rem 1.5rem; min-height: 0; }
  .card-number { grid-column: 1 / -1; }
  .card-icon { grid-row: 2 / 4; width: 70px; height: 70px; margin: .5rem 0; }
  .card-icon span { top: 28px; left: 28px; }
  .card h3 { margin: .5rem 0; }
  .journal-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: 290px; }
  .contact { grid-template-columns: .7fr 1.3fr; }
  .contact-panel { padding: 4rem 3rem; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 2.5rem); height: 86px; }
  .brand { font-size: .85rem; letter-spacing: .1em; }
  .brand-mark { width: 1.75rem; height: 1.75rem; }
  .hero { display: flex; min-height: 0; padding: 125px 1.5rem 5rem; flex-direction: column; background: linear-gradient(160deg, var(--cream) 0 59%, #efe3dd 59% 100%); }
  .hero-copy { padding: 1rem 0 3.5rem; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-visual { width: min(92%, 460px); }
  .portrait-frame { width: 78%; }
  .portrait-frame img { height: 440px; }
  .photo-note { right: -1.2rem; bottom: 5%; }
  .scroll-note { display: none; }
  .section { width: calc(100% - 3rem); padding-block: 6rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-copy { padding-top: 0; }
  .intro h2, .approach h2, .testimonials h2, .journal h2, .contact h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .approach { width: 100%; padding-inline: 1.5rem; }
  .cards { grid-template-columns: 1fr; }
  .card { display: block; padding: 1.7rem; }
  .card-icon { width: 90px; height: 90px; margin: 2rem auto; }
  .card-icon span { top: 38px; left: 38px; }
  .quote-break { min-height: 480px; }
  .testimonial-top { align-items: flex-start; flex-direction: column; }
  .testimonial-track { margin-top: 2.5rem; }
  .testimonial { min-height: 390px; padding: 2rem; }
  .contact { grid-template-columns: 1fr; }
  .contact-photo { min-height: 470px; }
  .contact-panel { padding: 5rem 1.5rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; padding-block: 3rem; text-align: center; }
  .site-footer .back-to-top { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .hero-actions, .carousel-controls, .site-footer { display: none; }
  .hero, .section, .quote-break, .journal, .contact { padding: 2rem; background: white; color: black; }
}
