@charset "UTF-8";

:root {
  --paper: #f3f0e9;
  --paper-light: #f8f6f1;
  --ink: #262823;
  --ink-soft: #55574f;
  --olive: #6d7050;
  --line: rgba(38, 40, 35, 0.38);
  --line-soft: rgba(38, 40, 35, 0.18);
  --font-sans: "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  --font-serif: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --shell: min(1440px, calc(100% - 8vw));
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.055em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ol,
ul,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
}

::selection {
  color: var(--paper-light);
  background: var(--olive);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-label {
  margin: 0 0 24px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(248, 246, 241, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 5vw);
  height: 100%;
  margin-inline: auto;
}

.site-brand,
.site-brand .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-brand .custom-logo {
  width: auto;
  max-height: 34px;
}

.site-brand__text,
.site-footer__brand {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding-block: 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 10px;
  letter-spacing: 0.16em;
}

.menu-toggle__lines {
  position: relative;
  width: 24px;
  height: 12px;
}

.menu-toggle__lines i {
  position: absolute;
  left: 0;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle__lines i:first-child { top: 2px; }
.menu-toggle__lines i:last-child { top: 10px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { top: 6px; transform: rotate(30deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { top: 6px; transform: rotate(-30deg); }

.home-hero {
  position: relative;
  min-height: min(850px, calc(100svh - var(--header-height)));
  color: #fff;
  overflow: hidden;
}

.home-hero__image,
.home-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.003);
}

.home-hero__veil {
  background: rgba(21, 24, 18, 0.18);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(850px, calc(100svh - var(--header-height)));
  padding-block: 90px;
}

.home-hero__eyebrow {
  margin-bottom: 30px;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.home-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.4vw, 64px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.home-hero__note {
  position: absolute;
  z-index: 1;
  right: 3vw;
  bottom: 28px;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.home-hero__scroll {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 4vw;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.works-section {
  padding-block: clamp(100px, 12vw, 180px);
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2,
.service-section > .section-heading h2,
.process-section .section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.7vw, 44px);
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.section-heading > p:not(.section-label) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading__note {
  max-width: 390px;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 38px);
}

.work-card {
  min-width: 0;
}

.work-preview {
  position: relative;
  aspect-ratio: 4 / 5.25;
  border: 1px solid rgba(38, 40, 35, 0.2);
  background: #e8e3d8;
  overflow: hidden;
}

.work-preview__bar {
  display: flex;
  align-items: center;
  height: 9%;
  padding: 0 7%;
  color: rgba(28, 29, 25, 0.8);
  background: rgba(250, 248, 243, 0.94);
  font-size: clamp(4px, 0.46vw, 7px);
  letter-spacing: 0.13em;
}

.work-preview__bar span { margin-right: auto; }
.work-preview__bar i { width: 11%; height: 1px; margin-left: 5%; background: currentColor; opacity: 0.45; }

.work-preview__hero {
  position: relative;
  height: 55%;
  padding: 15% 9%;
  overflow: hidden;
}

.work-preview__hero p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(10px, 1.08vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.work-preview__object {
  position: absolute;
}

.work-preview__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 6%;
  height: 36%;
  padding: 10% 8%;
  background: #f5f1e9;
}

.work-preview__body span {
  position: relative;
  border-top: 1px solid rgba(38, 40, 35, 0.25);
}

.work-preview__body span::before,
.work-preview__body span::after {
  position: absolute;
  left: 0;
  height: 1px;
  background: rgba(38, 40, 35, 0.18);
  content: "";
}

.work-preview__body span::before { top: 22%; width: 80%; }
.work-preview__body span::after { top: 33%; width: 62%; }

.work-card--coffee .work-preview__hero {
  color: #eee8db;
  background: #1d2a24;
}

.work-preview__cup {
  right: 8%;
  bottom: 10%;
  width: 44%;
  aspect-ratio: 1.35;
  border: 1px solid rgba(238, 232, 219, 0.75);
  border-radius: 50%;
  background: #8a6c48;
  box-shadow: inset 0 0 0 12px #d5c3a8, inset 0 0 0 20px #3d2718;
  transform: rotate(-8deg);
}

.work-card--bakery .work-preview__hero {
  color: #4b3b29;
  background: #e7d8bd;
}

.work-preview__bread {
  right: 4%;
  bottom: 8%;
  width: 55%;
  height: 35%;
  border: 1px solid #a37642;
  border-radius: 55% 50% 48% 52%;
  background: #b98146;
  transform: rotate(8deg);
}

.work-preview__bread b {
  position: absolute;
  top: 8%;
  width: 18%;
  height: 70%;
  border-left: 3px solid #e1bd83;
  border-radius: 50%;
  transform: rotate(20deg);
}

.work-preview__bread b:first-child { left: 35%; }
.work-preview__bread b:last-child { left: 58%; }

.work-card--ceramic .work-preview__hero {
  color: #4b5148;
  background: #dfe1dc;
}

.work-preview__bowl {
  right: -5%;
  bottom: 7%;
  width: 65%;
  height: 31%;
  border-radius: 10% 10% 48% 48% / 20% 20% 75% 75%;
  background: #647066;
  box-shadow: inset 0 10px 0 #99a094;
  transform: rotate(-6deg);
}

.work-card--flower .work-preview__hero {
  color: #eee8df;
  background: #29342a;
}

.work-preview__flowers {
  right: 5%;
  bottom: -4%;
  width: 62%;
  height: 70%;
}

.work-preview__flowers::before,
.work-preview__flowers::after {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 78%;
  background: #879378;
  content: "";
  transform-origin: bottom;
}

.work-preview__flowers::before { left: 38%; transform: rotate(-18deg); }
.work-preview__flowers::after { right: 34%; transform: rotate(22deg); }
.work-preview__flowers b { position: absolute; width: 24%; aspect-ratio: 1; border-radius: 50%; background: #946d77; opacity: 0.92; }
.work-preview__flowers b:nth-child(1) { top: 10%; left: 16%; }
.work-preview__flowers b:nth-child(2) { top: 25%; right: 4%; background: #d3b99b; }
.work-preview__flowers b:nth-child(3) { top: 42%; left: 40%; background: #825766; }
.work-preview__flowers b:nth-child(4) { top: 2%; right: 26%; background: #c3a5ad; }

.work-card__meta {
  padding-top: 20px;
}

.work-card__meta p,
.work-card__meta h3,
.work-card__meta span {
  display: block;
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 0.12em;
}

.work-card__meta p { color: var(--olive); }
.work-card__meta h3 { font-size: 12px; }
.work-card__meta span { margin-top: 6px; color: var(--ink-soft); letter-spacing: 0.06em; }

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 170px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.approach-section__lead h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.approach-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list span {
  grid-row: 1 / 3;
  color: var(--olive);
  font-size: 11px;
}

.approach-list strong {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.approach-list p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.service-teaser {
  padding-block: clamp(80px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-lines {
  border-top: 1px solid var(--line);
}

.price-lines > div {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.3fr;
  align-items: center;
  min-height: 108px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line);
}

.price-lines span,
.price-lines strong {
  font-size: clamp(17px, 1.6vw, 25px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.price-lines strong { color: var(--olive); }
.price-lines p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  min-width: 245px;
  padding: 0 0 9px;
  border-bottom: 1px solid currentColor;
  color: var(--olive);
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.text-link__arrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1;
  transition: transform 200ms ease;
}

.text-link:hover .text-link__arrow,
.text-link:focus-visible .text-link__arrow {
  transform: translateX(8px);
}

.text-link--large {
  min-width: 330px;
  font-size: clamp(18px, 1.5vw, 24px);
}

.about-teaser {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding-block: clamp(110px, 13vw, 190px);
}

.about-teaser__media {
  min-height: 520px;
  background: #d9d2c4;
  overflow: hidden;
}

.about-teaser__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-teaser__media--empty {
  display: grid;
  place-items: center;
}

.portrait-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: min(70%, 380px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(38, 40, 35, 0.35);
  color: var(--ink-soft);
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  position: absolute;
  background: rgba(38, 40, 35, 0.2);
  content: "";
}

.portrait-placeholder::before { width: 1px; height: 130%; transform: rotate(38deg); }
.portrait-placeholder::after { width: 1px; height: 130%; transform: rotate(-38deg); }
.portrait-placeholder span { position: absolute; top: 14px; left: 16px; font-size: 9px; letter-spacing: 0.16em; }
.portrait-placeholder p { position: relative; z-index: 1; margin: 0; padding: 10px 14px; background: #d9d2c4; text-align: center; font-size: 12px; }

.about-teaser__copy h2 {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.35vw, 39px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.about-teaser__copy > p:not(.section-label) {
  max-width: 510px;
  margin-bottom: 42px;
  color: var(--ink-soft);
}

.contact-band {
  padding-bottom: clamp(70px, 8vw, 120px);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  padding: clamp(55px, 7vw, 100px) 0 0;
  border-top: 1px solid var(--line);
}

.contact-band__copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.contact-band__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  color: #ece9e1;
  background: #292b27;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 40px;
  align-items: end;
  width: var(--shell);
  min-height: 230px;
  margin-inline: auto;
  padding-block: 70px 40px;
}

.site-footer__inner > p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.site-footer__nav {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
}

.site-footer__copy { justify-self: end; color: #b8baaf; }

/* About */
.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.55fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding-block: clamp(90px, 9vw, 145px);
}

.about-hero__copy h1 {
  margin: 0 0 42px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 62px);
  line-height: 1.75;
  letter-spacing: 0.13em;
}

.about-hero__copy > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 2.1;
}

.about-hero__visual {
  min-height: min(640px, 55vw);
  background: #d8d0bf;
  overflow: hidden;
}

.about-hero__visual--photo img {
  width: 100%;
  height: min(640px, 55vw);
  object-fit: cover;
}

.desk-scene {
  position: relative;
  width: 100%;
  height: min(640px, 55vw);
  min-height: 520px;
  background: #d8d0bf;
  overflow: hidden;
}

.desk-scene::before,
.desk-scene::after {
  position: absolute;
  background: rgba(68, 61, 47, 0.14);
  content: "";
}

.desk-scene::before { inset: 9% 8% auto auto; width: 42%; height: 55%; border: 1px solid rgba(52, 51, 44, 0.38); background: #beb7a8; transform: rotate(7deg); }
.desk-scene::after { right: 9%; bottom: -10%; width: 32%; aspect-ratio: 1; border-radius: 50%; background: #85856b; }

.desk-scene__paper {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 12%;
  width: 50%;
  height: 58%;
  padding: 9%;
  border: 1px solid rgba(52, 51, 44, 0.25);
  background: #f0ede4;
  transform: rotate(-5deg);
}

.desk-scene__paper i { display: block; width: 70%; height: 1px; margin-bottom: 11%; background: rgba(38, 40, 35, 0.26); }
.desk-scene__paper i:nth-child(2) { width: 90%; }
.desk-scene__paper i:nth-child(3) { width: 55%; }
.desk-scene__paper span { position: absolute; right: 8%; bottom: 8%; color: var(--olive); font-size: clamp(8px, 0.8vw, 12px); line-height: 1.8; letter-spacing: 0.18em; }
.desk-scene__cup { position: absolute; z-index: 3; top: 10%; left: 9%; width: 16%; aspect-ratio: 1; border: 1px solid #726a5c; border-radius: 50%; background: #a89d88; box-shadow: inset 0 0 0 10px #cbc2b0, inset 0 0 0 18px #5b4c3c; }
.desk-scene__pen { position: absolute; z-index: 3; right: 22%; bottom: 18%; width: 2px; height: 38%; background: #3e403c; transform: rotate(38deg); }
.desk-scene > p { position: absolute; z-index: 4; right: 22px; bottom: 10px; margin: 0; color: rgba(38, 40, 35, 0.58); font-size: 9px; letter-spacing: 0.16em; }

.page-editor-content--about {
  margin-top: -35px;
  margin-bottom: 100px;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 11vw, 180px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.about-values__intro h2 {
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.55vw, 42px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.about-values__intro > p:last-child { margin: 0; color: var(--ink-soft); }
.value-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.value-list li { display: grid; grid-template-columns: 56px 1fr; padding: 27px 0; border-bottom: 1px solid var(--line); }
.value-list span { grid-row: 1 / 3; color: var(--olive); font-size: 12px; }
.value-list strong { font-family: var(--font-serif); font-size: 18px; font-weight: 400; letter-spacing: 0.09em; }
.value-list p { margin: 10px 0 0; color: var(--ink-soft); font-size: 13px; }

.service-section,
.process-section {
  padding-block: clamp(90px, 10vw, 145px);
  border-top: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-card {
  position: relative;
  min-height: 445px;
  padding: clamp(34px, 4vw, 62px);
}

.plan-card + .plan-card { border-left: 1px solid var(--line); }
.plan-card__number { position: absolute; top: 24px; right: 26px; color: var(--line); font-size: 11px; }
.plan-card h3 { margin: 0; font-size: clamp(22px, 2.2vw, 35px); letter-spacing: 0.15em; }
.plan-card__price { margin: 7px 0 24px; color: var(--olive); font-family: var(--font-serif); font-size: clamp(24px, 2.25vw, 36px); }
.plan-card > p:not(.plan-card__number, .plan-card__price) { margin-bottom: 35px; color: var(--ink-soft); }
.plan-card dl { margin: 0; border-top: 1px solid var(--line-soft); }
.plan-card dl > div { display: grid; grid-template-columns: 100px 1fr; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 12px; }
.plan-card dt { color: var(--ink-soft); }
.plan-card dd { margin: 0; }

.option-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  padding: 52px 20px 0;
}

.option-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.option-list li { padding: 8px 4px; border-bottom: 1px solid var(--line); font-size: 13px; }
.option-area > p { color: var(--ink-soft); font-size: 13px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 230px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span { display: block; margin-bottom: 30px; color: var(--olive); font-size: 11px; }
.process-grid strong { display: block; margin-bottom: 15px; font-family: var(--font-serif); font-size: 17px; font-weight: 400; letter-spacing: 0.06em; }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.8; }

.support-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(110px, 13vw, 190px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-block,
.faq-block { padding: clamp(42px, 5vw, 72px); }
.faq-block { border-left: 1px solid var(--line); }
.support-block h2,
.faq-block h2 { margin: 0 0 34px; font-family: var(--font-serif); font-size: clamp(22px, 2vw, 32px); line-height: 1.7; letter-spacing: 0.06em; }
.support-block ul { margin: 0; padding: 0; list-style: none; }
.support-block li { position: relative; padding: 10px 0 10px 18px; font-size: 13px; }
.support-block li::before { position: absolute; top: 22px; left: 0; width: 7px; height: 1px; background: var(--olive); content: ""; }
.faq-block details { border-top: 1px solid var(--line); }
.faq-block details:last-child { border-bottom: 1px solid var(--line); }
.faq-block summary { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; cursor: pointer; font-size: 13px; list-style: none; }
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after { color: var(--olive); font-size: 19px; line-height: 1; content: "+"; }
.faq-block details[open] summary::after { content: "−"; }
.faq-block details p { margin: 0; padding: 0 20px 22px 0; color: var(--ink-soft); font-size: 12px; }

.page-editor-content,
.entry-content {
  font-family: var(--font-serif);
}

.page-editor-content > *:first-child,
.entry-content > *:first-child { margin-top: 0; }
.page-editor-content a,
.entry-content a { color: var(--olive); border-bottom: 1px solid currentColor; }

.default-page {
  min-height: 60vh;
  padding-block: clamp(100px, 12vw, 180px);
}

.default-page__header { max-width: 850px; margin-bottom: 70px; }
.default-page h1 { margin: 0; font-family: var(--font-serif); font-size: clamp(36px, 4vw, 68px); line-height: 1.6; letter-spacing: 0.08em; }
.default-page--404 { display: flex; flex-direction: column; justify-content: center; }
.default-page--404 > p:not(.section-label) { color: var(--ink-soft); }
.post-list { border-top: 1px solid var(--line); }
.post-list__item { display: grid; grid-template-columns: 180px 1fr; padding: 25px 0; border-bottom: 1px solid var(--line); }
.post-list__item time { color: var(--olive); font-size: 11px; }
.post-list__item h2 { margin: 0; font-family: var(--font-serif); font-size: 21px; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 7vw, 1440px); }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 60px; }
  .work-preview__bar { font-size: 7px; }
  .work-preview__hero p { font-size: 18px; }
  .contact-band__inner { grid-template-columns: 100px 1fr; }
  .contact-band .text-link { grid-column: 2; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --header-height: 66px; --shell: calc(100% - 40px); }
  body { font-size: 14px; }
  .site-header__inner { width: calc(100% - 40px); }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: center;
    padding: 40px;
    visibility: hidden;
    background: var(--paper-light);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav__list,
  .site-nav .menu { flex-direction: column; align-items: flex-start; gap: 15px; }
  .site-nav a { padding: 10px 0; font-size: 17px; }
  .home-hero,
  .home-hero__content { min-height: calc(100svh - var(--header-height)); }
  .home-hero__image { object-position: 58% center; }
  .home-hero__content { justify-content: flex-end; padding-bottom: 110px; }
  .home-hero__eyebrow { margin-bottom: 15px; font-size: 8px; }
  .home-hero h1 { font-size: clamp(28px, 8.3vw, 42px); line-height: 1.75; letter-spacing: 0.08em; }
  .home-hero__note { right: 20px; bottom: 20px; }
  .home-hero__scroll { display: none; }
  .section-heading--row { display: block; }
  .section-heading__note { margin-top: 22px; }
  .approach-section,
  .about-teaser,
  .about-hero,
  .about-values { grid-template-columns: 1fr; }
  .approach-section { gap: 60px; }
  .about-teaser { gap: 45px; }
  .about-teaser__media,
  .about-teaser__media img { min-height: 440px; }
  .price-lines > div { grid-template-columns: 1fr 1fr; gap: 8px; padding: 22px 10px; }
  .price-lines p { grid-column: 1 / 3; }
  .about-hero { gap: 55px; }
  .about-hero__visual,
  .about-hero__visual--photo img,
  .desk-scene { height: 67vw; min-height: 430px; }
  .about-values { gap: 60px; }
  .option-area { grid-template-columns: 1fr; gap: 35px; }
  .support-faq { grid-template-columns: 1fr; }
  .faq-block { border-top: 1px solid var(--line); border-left: 0; }
  .contact-band__inner { display: block; }
  .contact-band__copy { margin-bottom: 38px; }
  .site-footer__inner { grid-template-columns: 1fr auto; min-height: 200px; }
  .site-footer__inner > p:not(.site-footer__copy) { grid-column: 1 / 3; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 32px); }
  .site-header__inner { width: calc(100% - 32px); }
  .section-label { margin-bottom: 18px; font-size: 9px; }
  .home-hero__image { object-position: 62% center; }
  .home-hero__veil { background: rgba(21, 24, 18, 0.28); }
  .works-section { padding-block: 90px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2,
  .service-section > .section-heading h2,
  .process-section .section-heading h2 { font-size: 26px; }
  .works-grid { grid-template-columns: 1fr; gap: 55px; }
  .work-preview { aspect-ratio: 4 / 5; }
  .work-preview__hero p { font-size: 20px; }
  .approach-section__lead h2 { font-size: 23px; }
  .approach-list li { grid-template-columns: 40px 1fr; }
  .service-teaser { padding-block: 75px; }
  .service-teaser .text-link { margin-top: 34px; }
  .price-lines > div { display: block; }
  .price-lines strong { display: block; margin: 5px 0 10px; }
  .price-lines p { margin-top: 4px; }
  .about-teaser { padding-block: 100px; }
  .about-teaser__media,
  .about-teaser__media img { min-height: 390px; }
  .portrait-placeholder { width: 72%; }
  .text-link,
  .text-link--large { gap: 30px; width: 100%; min-width: 0; }
  .about-hero { padding-block: 80px 100px; }
  .about-hero__copy h1 { font-size: 35px; }
  .about-hero__visual,
  .about-hero__visual--photo img,
  .desk-scene { height: 115vw; min-height: 0; }
  .desk-scene__paper { width: 58%; }
  .about-values { padding-bottom: 110px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; padding: 44px 24px; }
  .plan-card + .plan-card { border-top: 1px solid var(--line); border-left: 0; }
  .option-area { padding-inline: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; padding: 28px 22px; }
  .process-grid span { margin-bottom: 15px; }
  .support-block,
  .faq-block { padding: 42px 8px; }
  .contact-band { padding-bottom: 80px; }
  .contact-band__inner { padding-top: 65px; }
  .site-footer__inner { display: block; min-height: 0; padding-block: 55px 35px; }
  .site-footer__inner > * { margin-bottom: 20px !important; }
  .site-footer__copy { margin-top: 40px !important; }
  .post-list__item { grid-template-columns: 1fr; gap: 10px; }
}

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

