@font-face {
  font-family: BrandSerif;
  src: url("/assets/cormorant.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: BrandScript;
  src: url("/assets/meow-script.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
:root {
  --cream: #f6f3ec;
  --paper: #fcfaf6;
  --sand: #e9e3d8;
  --ink: #353e32;
  --olive: #536047;
  --muted: #62665b;
  --line: #c8cbbd;
  --serif: BrandSerif, Georgia, serif;
  --script: BrandScript, "Segoe Script", cursive;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    1rem/1.75 "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(3.2rem, 5.6vw, 5.7rem);
  margin-bottom: 1.65rem;
}
h2 {
  font-size: clamp(2.65rem, 4.1vw, 4.1rem);
  margin-bottom: 1.7rem;
}
h3 {
  font-size: 2rem;
}
em {
  font-weight: 400;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #59673d;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.section-wrap {
  width: min(1280px, 89%);
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.55rem;
  color: var(--olive);
}
.eyebrow span {
  padding-inline: 0.4rem;
}
.preview-note {
  text-align: center;
  background: #dfe3d5;
  color: #414c37;
  padding: 5px 15px;
  font-size: 0.75rem;
  letter-spacing: 0.055em;
}
.preview-note span {
  margin: 0 8px;
}
.site-header {
  width: min(1360px, 93%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-bottom: 1px solid #d6d8cc;
}
.wordmark {
  text-decoration: none;
  display: block;
  flex-shrink: 0;
}
.wordmark > span {
  font: 400 1.9rem/1.1 var(--serif);
  letter-spacing: -0.055em;
  display: block;
}
.wordmark small {
  font: 1.65rem/1 var(--script);
  display: block;
  text-align: right;
  padding-top: 1px;
  padding-right: 8px;
}
.wordmark-dot {
  color: #899274;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 0.875rem;
}
nav a {
  text-decoration: none;
  padding: 10px 0;
}
nav a:hover {
  text-decoration: underline;
}
.nav-cta {
  border-bottom: 1px solid var(--ink);
}
.nav-cta span {
  margin-left: 12px;
}
.menu-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  background: none;
  padding: 8px 13px;
  cursor: pointer;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 6%;
  padding-block: 56px 72px;
}
.hero-copy {
  padding-bottom: 18px;
}
.intro {
  color: var(--muted);
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--olive);
  border: 1px solid var(--olive);
  color: white;
  min-height: 54px;
  padding: 14px 25px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #3f4c33;
  transform: translateY(-2px);
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.button span {
  font-size: 1.25rem;
  line-height: 1;
}
.text-link {
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #8a9380;
  padding-bottom: 4px;
  font-size: 0.9rem;
}
.text-link span {
  margin-left: 20px;
}
.hero-secondary {
  display: table;
  margin-top: 20px;
  border-bottom: 0;
}
.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.small-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #8e967f;
}
.hero-visual {
  position: relative;
  margin: 0 12px 14px 0;
}
.hero-visual > img {
  width: 100%;
  aspect-ratio: 4/4.7;
  object-fit: cover;
  border-radius: 46% 46% 2px 2px;
}
.image-label {
  position: absolute;
  bottom: 28px;
  left: -26px;
  background: rgba(249, 246, 238, 0.96);
  padding: 20px 26px;
  font: 1.55rem/1.23 var(--serif);
  box-shadow: 0 6px 30px #333c2510;
}
.image-label span {
  font-style: italic;
}
.photo-index {
  position: absolute;
  right: -26px;
  bottom: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.quiet-band {
  text-align: center;
  background: #e6e9df;
  padding: 23px 20px;
  border-block: 1px solid #daddd0;
}
.quiet-band p {
  margin: 0;
  font: 1.75rem/1.4 var(--serif);
}
.about {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 13%;
  align-items: center;
}
.about-art {
  min-height: 450px;
  background: #eae5da;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 45px 22px;
  text-align: center;
  position: relative;
}
.about-art:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid #c5c8b5;
  border-radius: 48% 48% 0 0;
}
.monogram {
  font: 8rem/0.9 var(--serif);
  color: #6a775a;
  letter-spacing: -0.11em;
  padding-right: 10px;
  position: relative;
}
.monogram span {
  display: block;
  font: 2rem/1.2 var(--script);
  letter-spacing: 0;
  margin: 6px 0 36px 24px;
}
.about-art p {
  font: 1.6rem/1.4 var(--serif);
  margin: 0;
  position: relative;
}
.about-copy > p:not(.eyebrow):not(.review-note) {
  color: var(--muted);
}
.review-note {
  font-size: 0.8rem;
  color: #676750;
  line-height: 1.6;
  border-left: 2px solid #b8bea7;
  padding-left: 12px;
  margin-block: 18px;
}
.signature {
  display: block;
  font: 2.3rem/1.4 var(--script);
  color: var(--olive);
  margin-top: 26px;
}
.services {
  background: #efede5;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8%;
  margin-bottom: 46px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 360px;
  color: var(--muted);
  margin-bottom: 5px;
}
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.space-card {
  padding: 34px 30px 28px;
  min-height: 278px;
  background: var(--cream);
  border-top: 1px solid #a7b097;
}
.space-card:nth-child(2) {
  background: #e3e7db;
}
.space-card:nth-child(3) {
  background: #e9e0d4;
}
.card-number {
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  color: var(--muted);
}
.space-card h3 {
  margin: 40px 0 15px;
  font-size: 2.1rem;
}
.space-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}
.card-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #8e987b;
  margin-top: 24px;
}
.services-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}
.process-list {
  padding: 0;
  margin: 60px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 48px;
}
.process-list li {
  border-top: 1px solid #a9b09b;
  padding-top: 22px;
}
.step-number {
  font: 2.5rem/1.1 var(--serif);
  color: #748066;
}
.process-list h3 {
  font-size: 1.9rem;
  margin: 24px 0 16px;
}
.process-list p {
  color: var(--muted);
  font-size: 0.95rem;
}
.why {
  background: #535f49;
  color: #f8f5ee;
  text-align: center;
}
.why .eyebrow {
  color: #e3e7d8;
}
.why h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 65px;
  text-align: left;
}
.values article {
  border-top: 1px solid #89917f;
  padding-top: 24px;
}
.values h3 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}
.values p {
  color: #ecede4;
  margin-bottom: 0;
  font-size: 0.95rem;
}
.investment {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14%;
  align-items: center;
}
.investment > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 465px;
  margin-bottom: 28px;
}
.investment-note {
  padding: 42px;
  background: #e8e9df;
}
.investment-note h3 {
  font-size: 3rem;
  margin: 26px 0 22px;
}
.investment-note > p {
  color: var(--muted);
}
.rule {
  height: 1px;
  background: #c6ccba;
  margin-top: 24px;
}
.faq {
  background: #eeece4;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10%;
}
.faq-layout > div > p:not(.eyebrow) {
  color: var(--muted);
}
details {
  border-bottom: 1px solid #c1c6b6;
}
details:first-child {
  border-top: 1px solid #c1c6b6;
}
summary {
  padding: 25px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  list-style: none;
  font-size: 1rem;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-right: 20px;
}
details a {
  overflow-wrap: anywhere;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.contact-copy {
  padding-top: 24px;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 395px;
  color: var(--muted);
}
.email-link {
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}
.contact .signature {
  margin-top: 45px;
}
form {
  background: var(--paper);
  padding: 36px;
  border: 1px solid #e4e2d8;
}
.form-topline h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.form-topline p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 25px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
label {
  font-size: 0.84rem;
}
.optional {
  color: var(--muted);
  font-size: 0.78rem;
}
input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9c0ae;
  border-radius: 0;
  background: #fdfcf8;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 1rem;
}
textarea {
  resize: vertical;
  min-height: 130px;
}
textarea::placeholder {
  font-size: 0.9rem;
  color: #72766b;
}
select {
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-privacy {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--muted);
}
form .button {
  width: 100%;
}
#form-status {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 16px 0 0;
}
#form-status:empty {
  display: none;
}
#form-status[data-state="error"] {
  color: #8a352a;
}
#form-status[data-state="success"] {
  color: #3b5a33;
}
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.site-footer {
  border-top: 1px solid #cdd0c2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 38px 48px;
}
.site-footer > p {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin: 0;
}
.site-footer > div {
  text-align: right;
  font-size: 0.8rem;
}
.site-footer > div a {
  margin-left: 22px;
}
.site-footer small:not(.wordmark small) {
  display: block;
  font-size: 0.72rem;
  margin-top: 10px;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--ink);
  color: white;
  padding: 15px;
  z-index: 20;
}
.skip-link:focus {
  top: 15px;
}
@media (min-width: 1450px) {
  .hero {
    padding-block: 72px 90px;
  }
  .hero-visual > img {
    max-height: 630px;
  }
}
@media (max-width: 1050px) {
  nav {
    gap: 18px;
  }
  .wordmark > span {
    font-size: 1.65rem;
  }
  .wordmark small {
    font-size: 1.5rem;
  }
  .section-space {
    padding-block: 85px;
  }
  .hero {
    gap: 5%;
  }
  .hero h1 {
    font-size: 4.1rem;
  }
  .hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .hero-visual > img {
    aspect-ratio: 4/5.4;
  }
  .space-card {
    padding: 28px 23px;
  }
  .space-card h3 {
    font-size: 1.8rem;
  }
  .values {
    gap: 35px;
  }
  .investment {
    gap: 8%;
  }
  .contact {
    gap: 6%;
  }
  form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .site-footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 22px;
  }
  .preview-note {
    font-size: 0.68rem;
    line-height: 1.6;
  }
  .site-header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    width: 89%;
  }
  .wordmark > span {
    font-size: 1.7rem;
  }
  .wordmark small {
    font-size: 1.5rem;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 2px 22px;
    font-size: 0.9rem;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  nav[data-collapsed="true"] {
    display: none;
  }
  nav a {
    min-height: 44px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 45px 42px;
  }
  .hero h1 {
    font-size: clamp(3rem, 10.7vw, 4.7rem);
  }
  .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }
  .hero-copy {
    padding: 0;
  }
  .intro {
    font-size: 1rem;
    max-width: 480px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .hero-visual {
    width: 88%;
    margin: 0 9px 12px auto;
  }
  .hero-visual > img {
    aspect-ratio: 4/4.35;
  }
  .image-label {
    font-size: 1.4rem;
    bottom: 22px;
    left: -28px;
    padding: 17px 23px;
  }
  .photo-index {
    right: -22px;
    font-size: 0.58rem;
  }
  .quiet-band p {
    font-size: 1.45rem;
  }
  .quiet-band {
    padding-block: 22px;
  }
  .section-space {
    padding-block: 65px;
  }
  .about,
  .investment,
  .faq-layout,
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-art {
    min-height: 320px;
    order: 2;
  }
  .about-copy {
    order: 1;
  }
  .monogram {
    font-size: 6.5rem;
  }
  .monogram span {
    margin-bottom: 20px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    margin: 22px 0 0;
    max-width: 500px;
  }
  .space-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .space-card {
    min-height: 0;
    padding: 25px 28px;
  }
  .space-card h3 {
    margin-top: 23px;
    font-size: 2.15rem;
  }
  .space-card p {
    max-width: 440px;
  }
  .card-line {
    margin-top: 12px;
  }
  .services-bottom {
    display: block;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }
  .process-list li {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 14px;
  }
  .process-list h3 {
    margin: 0 0 12px;
  }
  .process-list p {
    margin-bottom: 0;
  }
  .values {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .values article {
    padding-top: 20px;
  }
  .values h3 {
    margin-bottom: 12px;
  }
  .investment-note {
    padding: 32px;
  }
  .investment-note h3 {
    font-size: 2.6rem;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact .signature {
    margin-top: 24px;
  }
  form {
    padding: 25px 20px;
  }
  .site-footer {
    align-items: start;
    flex-direction: column;
    padding-block: 30px;
    gap: 22px;
  }
  .site-footer > div {
    text-align: left;
  }
  .site-footer > div a {
    margin: 0 22px 0 0;
  }
  .site-footer small:not(.wordmark small) {
    margin-top: 18px;
  }
  h2 {
    font-size: 2.8rem;
  }
}
.about-portrait {
  margin: 0;
  position: relative;
  padding: 0 22px 22px 0;
}
.about-portrait img {
  width: 100%;
  max-height: 505px;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 45% 45% 0 0;
}
.about-portrait figcaption {
  position: absolute;
  bottom: 0;
  right: -20px;
  background: var(--sand);
  padding: 16px 26px;
  font: 1.9rem/1.2 var(--script);
}
.spaces-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 25px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.86rem;
}
.spaces-list span:before {
  content: "·";
  margin-right: 10px;
  color: var(--olive);
}
.services-bottom p {
  font-size: 0.87rem;
  margin: 0;
  color: var(--muted);
}
.process-list {
  row-gap: 32px;
}
.investment-note .price {
  font: 4.5rem/1 var(--serif);
  color: var(--ink);
  margin: 20px 0;
}
.price span {
  font:
    1rem/1.4 "Segoe UI",
    Arial,
    sans-serif;
}
.price-options {
  font-size: 0.9rem;
  margin: 25px 0;
}
.price-options > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #bec5b1;
}
.price-options dd {
  margin: 0;
  text-align: right;
}
.pricing-small {
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.investment > div > .proposal-request {
  font-size: 0.85rem;
  margin: 22px 0 0;
}
.phone-link {
  display: block;
  width: fit-content;
  margin-top: 10px;
}
.footer-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.hero .button {
  gap: 20px;
  font-size: 0.86rem;
}
.form-privacy {
  font-size: 0.82rem;
}
.eyebrow,
.card-number {
  font-size: 0.875rem;
}
.hero .eyebrow {
  font-size: 0.8rem;
}
.site-footer > p {
  font-size: 0.875rem;
}
label {
  font-size: 0.9rem;
}
@media (max-width: 760px) {
  .about-portrait {
    width: 85%;
    max-width: 390px;
    order: 2;
    margin: auto;
  }
  .about-portrait img {
    max-height: 425px;
  }
  .services-bottom p {
    margin-bottom: 16px;
  }
  .hero .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }
  .hero .button {
    font-size: 0.86rem;
    padding-inline: 20px;
  }
  .footer-logo {
    width: 120px;
    height: 120px;
  }
  .spaces-list {
    gap: 9px 15px;
  }
  .about-portrait figcaption {
    right: -15px;
    font-size: 1.7rem;
  }
  .process-list {
    row-gap: 25px;
  }
}
.space-card p,
.process-list p,
.values p,
details p {
  font-size: 1rem;
}
.hero .button {
  font-size: 0.9rem;
}
.process-list {
  list-style: none;
}
.hero-copy,
.contact-copy,
.about-copy {
  min-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}














