:root {
  --ink: #1b1c18;
  --ink-soft: #424239;
  --dark: #11130f;
  --dark-2: #181a16;
  --paper: #f7f3ea;
  --cream: #ebe3d4;
  --line: rgba(32, 33, 29, .18);
  --line-light: rgba(255, 255, 255, .18);
  --muted: #7f7a6d;
  --accent: #b08a54;
  --green: #1f5137;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
}

.admin-bar .site-header {
  top: 32px;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 56px);
  color: #fff;
  transition: background .28s ease, border-color .28s ease, padding .28s ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(17, 19, 15, .86);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: 152px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, .42));
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  justify-content: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  opacity: .82;
  transition: opacity .2s ease;
}

.site-nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .52);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, .76) 0%, rgba(9, 10, 8, .34) 44%, rgba(9, 10, 8, .12) 100%),
    linear-gradient(0deg, rgba(9, 10, 8, .72) 0%, rgba(9, 10, 8, 0) 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 130px 24px 140px;
}

.eyebrow,
.section-kicker,
.work-meta {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 400;
  line-height: 1.22;
}

.hero-copy {
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.8;
  color: rgba(255, 255, 255, .9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 1.4;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.button-line {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: 32px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
  transform-origin: top;
  animation: scroll-cue-line 1.8s ease-in-out infinite;
}

.scroll-cue:hover {
  color: #fff;
}

@keyframes scroll-cue-line {
  0% {
    transform: scaleY(.18);
    opacity: .35;
  }

  45% {
    transform: scaleY(1);
    opacity: .9;
  }

  100% {
    transform: scaleY(.18);
    opacity: .35;
  }
}

.section-light .button-ghost,
.section-cream .button-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.section-light,
.section-cream,
.section-dark {
  padding: clamp(84px, 10vw, 150px) 24px;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-grid,
.section-head,
.intro-gallery,
.price-list {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.intro .section-grid {
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 88px);
}

h2 {
  margin: 0;
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.28;
}

.intro h2 {
  font-size: clamp(38px, 4.3vw, 62px);
  word-break: keep-all;
  overflow-wrap: normal;
}

h3 {
  margin: 0;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.45;
}

.why h2 {
  font-size: clamp(34px, 4.2vw, 56px);
}

.why h2 span {
  display: block;
  white-space: nowrap;
}

.why .section-grid {
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 6vw, 82px);
}

.why-lead {
  max-width: 430px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 2.05;
}

.why-image {
  width: min(88%, 410px);
  height: clamp(520px, 50vw, 730px);
  margin-top: 52px;
  object-fit: cover;
  object-position: center 60%;
  opacity: .25;
  filter: saturate(.65) contrast(.9);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.lead-copy {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.15;
}

.lead-copy p {
  margin: 0 0 1.45em;
}

.lead-copy .intro-lead {
  margin-bottom: 1.6em;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.85;
}

.intro-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr .7fr;
  gap: 16px;
  margin-top: clamp(54px, 8vw, 96px);
}

.intro-gallery img {
  width: 100%;
  height: clamp(260px, 34vw, 460px);
  object-fit: cover;
}

.intro-gallery img:nth-child(2) {
  margin-top: 28px;
}

.intro-gallery img:nth-child(3) {
  margin-top: 56px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 88px);
}

.section-head p:not(.section-kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.section-cream .section-head p:not(.section-kicker),
.section-light .section-head p:not(.section-kicker) {
  color: var(--ink-soft);
}

.photo-story .section-head {
  display: block;
}

.photo-story .section-head h2 {
  max-width: 720px;
  margin-top: 18px;
}

.photo-story .section-head p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 28px;
}

.scene {
  position: relative;
  overflow: hidden;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--dark-2);
}

.scene img {
  width: 100%;
  height: clamp(360px, 54vw, 680px);
  object-fit: cover;
}

.scene-large img {
  object-position: center 72%;
}

.scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
}

.scene-caption {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  left: clamp(20px, 4vw, 48px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.scene-caption span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  letter-spacing: .12em;
}

.scene-caption h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: .02em;
  text-align: right;
}

.scene-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(100%, var(--max));
  margin: 16px auto 0;
}

.scene-pair .scene img {
  height: clamp(320px, 42vw, 540px);
}

.scene-pair-offset {
  width: min(100%, 1060px);
  margin-top: 16px;
}

.story-list {
  border-top: 1px solid var(--line);
}

.story-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.story-list span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.story-copy {
  grid-column: 2;
  margin: 10px 0 0;
}

.story-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.story-copy p + p {
  margin-top: 14px;
}

.works-head {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto 48px;
}

.works-heading {
  max-width: 920px;
}

.works-heading h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.works-heading h2 span {
  display: block;
  white-space: nowrap;
}

.works-heading > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.45vw, 18px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, var(--max));
  margin: 0 auto 46px;
}

.filter {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.filter.is-active,
.filter:hover {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.filter:focus-visible,
.work-card:focus-visible,
.works-more a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(50px, 6vw, 76px) clamp(22px, 3vw, 38px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.work-row[hidden] {
  display: none;
}

.work-card {
  display: block;
}

.work-image {
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(27, 28, 24, .08);
}

.work-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.025);
  filter: brightness(.94);
}

.work-row h3 {
  min-height: 2.9em;
  margin: 7px 0 10px;
  font-size: clamp(20px, 2vw, 27px);
}

.work-card .work-meta {
  margin: 0;
}

.work-description {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.work-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  transition: color .2s ease, transform .2s ease;
}

.work-link::after {
  content: " →";
}

.work-card:hover .work-link {
  color: var(--ink);
  transform: translateX(3px);
}

.works-more {
  width: min(100%, var(--max));
  margin: clamp(62px, 8vw, 96px) auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.works-more a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  letter-spacing: .04em;
}

.works-more span {
  transition: transform .2s ease;
}

.works-more a:hover span {
  transform: translateX(4px);
}

.service,
.price {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.service .section-grid {
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 6vw, 80px);
  align-items: start;
}

.service h2,
.price h2 {
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.35;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.service-index li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(15px, 1.45vw, 18px);
}

.price .section-head {
  grid-template-columns: 110px minmax(260px, .8fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.price .section-head > p:last-child {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.price-list {
  max-width: 900px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.price-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  width: min(100%, 900px);
  margin: 30px auto 0;
}

.price-label p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.price-label span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(15px, 1.45vw, 18px);
}

.price-row strong {
  font-weight: 500;
  white-space: nowrap;
}

.price-row-consultation > span {
  display: grid;
  gap: 5px;
}

.price-row-consultation b {
  font-weight: 500;
}

.price-row-consultation small {
  max-width: 620px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .06em;
}

.price-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  width: min(100%, 900px);
  margin: 20px auto 0;
}

.price-links .text-link span {
  transition: transform .2s ease;
}

.price-links .text-link:hover span {
  transform: translateX(3px);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.contact > img {
  width: 100%;
  height: clamp(380px, 55vw, 660px);
  object-fit: cover;
}

.contact-panel {
  max-width: 560px;
  padding-right: clamp(0px, 4vw, 56px);
}

.contact-panel h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.35;
}

.contact-panel p:not(.section-kicker) {
  color: rgba(255, 255, 255, .78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, .64);
  background: #080906;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .section-grid,
  .section-head,
  .contact {
    grid-template-columns: 1fr;
  }

  .service .section-grid,
  .price .section-head {
    grid-template-columns: 1fr;
  }

  .works-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why .section-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    display: none;
  }

  .intro .section-grid {
    grid-template-columns: 1fr;
  }

  .intro-gallery {
    grid-template-columns: 1fr;
  }

  .intro-gallery img,
  .intro-gallery img:nth-child(2),
  .intro-gallery img:nth-child(3) {
    height: auto;
    margin-top: 0;
  }

  .scene-pair {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    max-width: none;
    padding-right: 0;
  }

  .contact-panel h2 {
    font-size: clamp(31px, 8vw, 44px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .brand {
    width: 124px;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-inner {
    padding: 106px 18px 96px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .scroll-cue {
    right: 18px;
    bottom: 20px;
    gap: 9px;
    font-size: 10px;
  }

  .scroll-cue::after {
    height: 42px;
  }

  .section-light,
  .section-cream,
  .section-dark {
    padding: 72px 18px;
  }

  .service,
  .price {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .service .section-grid,
  .price .section-head {
    gap: 22px;
  }

  .service h2,
  .price h2 {
    font-size: 26px;
  }

  .section-head {
    gap: 18px;
  }

  .lead-copy {
    font-size: 15px;
    line-height: 2;
  }

  .lead-copy p {
    margin-bottom: 1.25em;
  }

  .lead-copy .intro-lead {
    font-size: 17px;
    line-height: 1.85;
  }

  .scene-caption {
    display: block;
  }

  .scene-caption h3 {
    margin-top: 8px;
    text-align: left;
  }

  .story-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .story-copy {
    grid-column: 1 / -1;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .work-row h3 {
    min-height: 0;
  }

  .work-image {
    margin-bottom: 17px;
  }

  .service-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .service-index li {
    padding: 11px 0;
    font-size: 14px;
  }

  .price-list {
    margin-top: 24px;
  }

  .price-label {
    display: grid;
    gap: 3px;
    margin-top: 24px;
  }

  .price-list {
    margin-top: 10px;
  }

  .price-row {
    padding: 14px 0;
    font-size: 15px;
  }

  .price-row {
    display: grid;
    gap: 8px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
