@font-face {
  font-family: "Romie";
  src: url("assets/fonts/Romie-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Romie";
  src: url("assets/fonts/Romie-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Romie";
  src: url("assets/fonts/Romie-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #fff;
  --plaster: #fff;
  --ink: #29251f;
  --walnut: #34251d;
  --olive: #676855;
  --line: rgba(41, 37, 31, 0.28);
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --serif: "Romie", Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.45; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; background: var(--plaster); }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .65rem .9rem; background: var(--paper); color: var(--ink); transform: translateY(-200%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { margin: 0; font-size: .66rem; font-weight: 700; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.section-pad { padding-right: var(--gutter); padding-left: var(--gutter); }

.site-header { position: fixed; z-index: 20; top: 0; left: 0; display: flex; width: 100%; align-items: flex-start; justify-content: space-between; padding: 1.45rem var(--gutter); color: #fffdf7; mix-blend-mode: normal; }
.site-header--light { color: var(--ink); }
.wordmark { position: relative; z-index: 22; display: inline-flex; width: fit-content; flex-direction: column; color: inherit; font-family: var(--serif); font-size: clamp(1.45rem, 2.1vw, 1.95rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.wordmark__given { display: flex; width: 100%; align-items: baseline; justify-content: space-between; margin: 0 0 .16em; padding: 0; font-size: 1em; letter-spacing: 0; }
.wordmark__family { display: block; letter-spacing: -.055em; }
.menu-toggle { position: relative; z-index: 22; display: flex; align-items: center; gap: .65rem; padding: .5rem 0; border: 0; background: transparent; color: inherit; font: inherit; font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.menu-toggle__label--close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__label--open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__label--close { display: inline; }
.menu-toggle__mark, .menu-toggle__mark::after { display: block; width: 1.25rem; height: 1px; background: currentColor; content: ""; transition: transform .22s ease; }
.menu-toggle__mark::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] .menu-toggle__mark { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__mark::after { transform: rotate(-90deg); }
.site-nav { position: fixed; z-index: 21; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; gap: clamp(.8rem, 2vw, 1.6rem); padding: clamp(7rem, 13vw, 10rem) var(--gutter) 4rem; background: var(--walnut); color: #fffdf7; opacity: 0; transition: opacity .28s ease, visibility .28s; }
.site-nav.is-open { visibility: visible; opacity: 1; }
.site-nav a { width: fit-content; font-family: var(--serif); font-size: clamp(3.6rem, 8.4vw, 8.5rem); letter-spacing: -.055em; line-height: .9; }
.site-nav a::after, .page-link::after { display: block; width: 100%; height: 1px; margin-top: .3rem; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .page-link:hover::after, .page-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.gateway { position: relative; display: grid; min-height: 100svh; overflow: hidden; color: #fffdf7; }
.gateway__image, .gateway__scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.gateway__image { object-fit: cover; object-position: center 52%; }
.gateway__scrim { background: linear-gradient(180deg, rgba(24, 17, 12, .38), rgba(24, 17, 12, .03) 44%, rgba(24, 17, 12, .6)); }
.gateway__intro { position: relative; z-index: 1; align-self: center; max-width: 54rem; margin: 4rem var(--gutter) 0; }
.gateway h1, .page-intro h1, .project-note h2, .studio-page h1, .contact-page h1 { margin: 1.1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3.8rem, 8.2vw, 8.4rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; }
.gateway__intro > p:last-child { max-width: 27rem; margin: 0 0 0 min(17vw, 13rem); font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
.gateway__links { position: relative; z-index: 1; display: grid; align-self: end; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0 var(--gutter) 2.4rem; }
.gateway__links a { display: grid; grid-template-columns: 2rem 1fr auto; gap: .4rem; padding-top: .75rem; border-top: 1px solid rgba(255,253,247,.6); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: border-color .2s ease; }
.gateway__links a:hover, .gateway__links a:focus-visible { border-color: #fffdf7; }
.gateway__links b { font-size: 1rem; font-weight: 400; line-height: .7; }

.holding-page { background: var(--walnut); }
.holding { display: grid; min-height: 100svh; place-items: center; padding: 1rem; }
.holding__image { position: relative; width: auto; max-width: 100%; height: calc(100svh - 2rem); aspect-ratio: 1024 / 1535; margin: 0; overflow: hidden; background: var(--walnut); }
/* The larger coming-soon photograph remains whole; the overlay sits on it rather than forcing a crop. */
.holding__image > img { width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; object-fit: contain; }
.holding__wordmark { position: absolute; z-index: 2; top: clamp(1.4rem, 4vw, 3rem); left: clamp(1.4rem, 4vw, 3rem); margin: 0; color: #fffdf7; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.holding__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(.8rem, 2vw, 1.5rem); margin: 0; padding: clamp(1.4rem, 4vw, 3.5rem); color: #fffdf7; text-align: center; background: linear-gradient(180deg, rgba(29,18,12,.12), rgba(29,18,12,.08) 44%, rgba(29,18,12,.2)); }
.holding__overlay h1 { margin: 0; color: #fffdf7; font-family: var(--serif); font-size: clamp(3.4rem, 5vw, 4rem); font-weight: 400; letter-spacing: -.065em; line-height: .8; white-space: nowrap; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.holding__form { display: grid; width: min(100%, 25rem); grid-template-columns: 1fr auto; gap: .7rem; }
.holding__form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.holding__form input { min-width: 0; padding: .8rem 1rem; border: 1px solid rgba(255,253,247,.8); border-radius: 0; background: rgba(32,22,16,.48); color: #fffdf7; font: inherit; }
.holding__form input::placeholder { color: rgba(255,253,247,.82); }
.holding__form button { padding: .75rem 1rem; border: 1px solid #fffdf7; background: #fffdf7; color: var(--walnut); font: inherit; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.holding__form .access-panel__message { grid-column: 1 / -1; min-height: 1.3rem; margin: 0; color: #fffdf7; font-size: .82rem; text-shadow: 0 1px 5px rgba(0,0,0,.6); }

.page-intro { display: grid; grid-template-columns: minmax(8rem,.6fr) 1.6fr .55fr; gap: 2rem; align-items: end; padding-top: clamp(10rem, 18vw, 16rem); padding-bottom: clamp(4rem, 8vw, 8rem); }
.page-intro h1 { grid-column: 2; margin: 0; }
.page-intro > p:last-child { max-width: 15rem; margin: 0 0 .6rem; color: var(--olive); font-family: var(--serif); font-style: italic; }
.project-page, .project-page .project-note, .project-page .work-images { background: #fff; }
.fireplace-figure { width: min(calc(100% - (2 * var(--gutter))), 54rem); max-width: none; margin: 0 auto; padding: 0; }
/* The fireplace image is intentionally uncropped: its native portrait composition keeps the pendant, stone surround, firebox, chairs, and rug. */
.fireplace-figure img { height: auto; object-fit: contain; }
.fireplace-figure figcaption, .site-footer { display: flex; justify-content: space-between; gap: 1rem; margin-top: .8rem; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-note { display: grid; grid-template-columns: minmax(8rem,.6fr) 1.5fr .7fr; gap: 2rem; align-items: start; padding-top: clamp(8rem, 14vw, 14rem); padding-bottom: clamp(6rem, 11vw, 11rem); background: var(--plaster); }
.project-note h2 { grid-column: 2; margin: 0; font-size: clamp(3.1rem, 6vw, 6.2rem); }
.project-note > p:last-child { max-width: 22rem; margin: 7rem 0 0; font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
.work-images { display: flex; flex-direction: column; align-items: center; gap: clamp(1.5rem, 2vw, 2.5rem); padding: clamp(5rem, 10vw, 10rem) var(--gutter) clamp(8rem, 14vw, 14rem); background: var(--plaster); }
.work-images figure { width: min(100%, 54rem); margin: 0; }
/* Interior photographs retain their native aspect ratios; shared column width never forces a crop or distortion. */
.work-images img { width: 100%; height: auto; object-fit: contain; }
.work-images figcaption { margin-top: .8rem; color: var(--olive); font-family: var(--serif); font-style: italic; }

.studio-page { background: var(--paper); color: var(--ink); }
.studio-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .92fr); gap: clamp(3rem, 8vw, 10rem); max-width: 100rem; margin: 0 auto; padding: clamp(9rem, 15vw, 13rem) var(--gutter) clamp(6rem, 12vw, 12rem); }
.studio-intro { grid-column: 1; padding: 0; }
.studio-intro h1 { margin: 1.1rem 0 2rem; font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; }
.studio-intro__lede { max-width: 29rem; margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.65rem); line-height: 1.25; }
.studio-portrait { grid-column: 2; grid-row: 1 / span 2; align-self: start; max-width: 35rem; margin: 0; }
/* The portrait is deliberately shown at its native aspect ratio: fireplace, table, chair, and Maria remain intact. */
.studio-portrait img { height: auto; object-fit: contain; }
.studio-portrait figcaption { margin-top: .75rem; color: var(--olive); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.studio-offerings { grid-column: 1; padding: clamp(5rem, 10vw, 9rem) 0 0; }
.studio-offerings__copy { max-width: 37rem; }
.studio-offerings h2 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 400; letter-spacing: -.05em; line-height: .9; }
.studio-offerings__copy p { max-width: 31rem; margin: 0; font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
.service-list { max-width: 38rem; margin: clamp(3.5rem, 6vw, 6rem) 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.service-list li { display: grid; grid-template-columns: 3rem 1fr; gap: .75rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.service-list span { padding-top: .18rem; font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.studio-offerings__note { max-width: 25rem; margin: 2rem 0 0; color: var(--olive); font-family: var(--serif); font-size: .95rem; font-style: italic; }
.page-link { display: inline-block; width: fit-content; margin-top: 2.5rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.contact-page { display: flex; min-height: 100svh; flex-direction: column; }
.contact-page main { display: flex; flex: 1; }
.contact-page__content { display: flex; width: 100%; flex-direction: column; justify-content: center; padding-top: 9rem; padding-bottom: 5rem; }
.contact-page h1 { max-width: 13ch; font-size: clamp(3.5rem, 7.5vw, 7.5rem); }
.contact-page__content > p:not(.eyebrow) { max-width: 22rem; margin: 0; font-family: var(--serif); font-size: 1.2rem; }
.site-footer { margin: 0; padding: 1.4rem var(--gutter); border-top: 1px solid var(--line); }
.site-footer p { margin: 0; }
.site-footer a { text-decoration: underline; text-underline-offset: .25rem; }

@media (max-width: 767px) {
  .site-header { padding-top: 1.15rem; }
  .gateway__intro { margin-top: 3.5rem; }
  .gateway h1, .page-intro h1, .project-note h2, .studio-page h1, .contact-page h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .gateway__intro > p:last-child { margin-left: 2.5rem; }
  .gateway__links { grid-template-columns: 1fr; gap: .7rem; padding-bottom: 1.5rem; }
  .holding { display: grid; padding: 1rem; }
  .holding__image { width: 100%; height: auto; max-height: calc(100svh - 2rem); }
  .holding__image > img { max-height: none; }
  .holding__overlay { padding: 1.25rem; }
  .holding__overlay h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .holding__form { width: min(100%, 22rem); grid-template-columns: 1fr; gap: .55rem; }
  .holding__form button { width: 100%; }
  .page-intro, .project-note { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-intro h1, .project-note h2 { grid-column: auto; }
  .page-intro > p:last-child { margin: 0; }
  .project-note > p:last-child { margin: 0; }
  .fireplace-figure { padding: 0; }
  .fireplace-figure figcaption { padding: 0 var(--gutter); }
  .work-images { grid-template-columns: 1fr; gap: 2rem; }
  .work-images figure { width: 100%; }
  .studio-layout { display: flex; flex-direction: column; gap: 3rem; padding-top: 8rem; }
  .studio-intro h1 { font-size: clamp(3.8rem, 17vw, 5.5rem); }
  .studio-portrait { order: 2; width: min(100%, 30rem); align-self: center; }
  .studio-offerings { order: 3; padding-top: 3rem; }
  .service-list { margin-top: 3rem; }
  .site-footer { flex-wrap: wrap; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .page-intro { grid-template-columns: .4fr 1.5fr .7fr; }
}

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