html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #f2efe7;
  color: #22301f;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #3f5c34;
  text-decoration: none;
}

a:hover {
  color: #22301f;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 14px 28px;
  background: rgba(242, 239, 231, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 48, 31, .1);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand-logo-link {
  display: flex;
}

.brand-name {
  font-family: "Yuji Boku", serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .14em;
  color: #22301f;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(34, 48, 31, .55);
}

.header-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
}

.header-note {
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(34, 48, 31, .6);
}

.btn-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #22301f;
  color: #f2efe7;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}

.btn-dark:hover {
  background: #3f5c34;
  color: #f2efe7;
}

.btn-label {
  font-size: 11px;
  letter-spacing: .1em;
  opacity: .75;
}

.btn-dark-number {
  font-family: "Yuji Boku", serif;
  font-size: 16px;
  letter-spacing: .04em;
}

@media (max-width: 480px) {
  .site-header {
    flex-wrap: nowrap;
    padding: 12px 16px;
  }

  .brand-sub,
  .header-note,
  .btn-label {
    display: none;
  }

  .brand-name {
    font-size: 20px;
  }

  .btn-dark {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 57px);
  min-height: 640px;
  overflow: hidden;
  background: #1a251a;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(102deg, rgba(12, 22, 12, .86) 0%, rgba(12, 22, 12, .6) 40%, rgba(12, 22, 12, .08) 74%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(28px, 6vw, 96px);
  pointer-events: none;
}

.hero-eyebrow {
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: .3em;
  color: rgba(242, 239, 231, .78);
  animation: riseIn .8s ease both;
}

.hero-title {
  margin: 0;
  font-family: "Yuji Boku", serif;
  font-weight: 600;
  font-size: clamp(28px, 6.6vw, 88px);
  line-height: 1.26;
  letter-spacing: .06em;
  color: #f5f2e9;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .4);
  animation: riseIn .9s ease .1s both;
  overflow-wrap: break-word;
}

.hero-text {
  margin: 32px 0 0;
  max-width: 30em;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: rgba(242, 239, 231, .9);
  text-wrap: pretty;
  animation: riseIn 1s ease .2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 46px;
  pointer-events: auto;
  animation: riseIn 1.1s ease .3s both;
}

.btn-light,
.btn-outline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 260px;
  min-height: 84px;
  padding: 18px 24px;
  border-radius: 2px;
  text-align: center;
  box-sizing: border-box;
}

.btn-light {
  background: #f5f2e9;
  color: #22301f;
}

.btn-light:hover {
  background: #fff;
  color: #22301f;
}

.btn-light-label {
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(34, 48, 31, .6);
}

.btn-light-number {
  font-family: "Yuji Boku", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .04em;
}

.btn-outline {
  border: 1px solid rgba(245, 242, 233, .5);
  color: #f5f2e9;
  font-size: 14px;
  letter-spacing: .08em;
}

.btn-outline:hover {
  border-color: #f5f2e9;
  background: rgba(245, 242, 233, .12);
  color: #f5f2e9;
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 44px);
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.hero-scroll span:first-child {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(242, 239, 231, .65);
}

.scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(242, 239, 231, .18);
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 239, 231, .9);
  transform: scaleY(0);
  transform-origin: top;
  animation: scrollLineDraw 2s ease-in-out infinite;
}

@keyframes scrollLineDraw {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Service */
.service {
  padding: clamp(64px, 9vw, 124px) clamp(28px, 6vw, 96px);
  background: #f2efe7;
  scroll-margin-top: 57px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading h2 {
  margin: 0;
  font-family: "Yuji Boku", serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: .1em;
  color: #22301f;
}

.heading-line {
  flex: 1;
  height: 1px;
  background: rgba(34, 48, 31, .18);
}

.heading-note {
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(34, 48, 31, .5);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #e4e0d4;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-card h3 {
  margin: 0;
  font-family: "Yuji Boku", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #22301f;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: rgba(34, 48, 31, .72);
  text-wrap: pretty;
}

/* About */
.about {
  padding: clamp(64px, 9vw, 120px) clamp(28px, 6vw, 96px);
  background: #f2efe7;
  border-top: 1px solid rgba(34, 48, 31, .12);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro h2 {
  margin: 0;
  font-family: "Yuji Boku", serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: .1em;
  color: #22301f;
}

.about-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(34, 48, 31, .72);
  text-wrap: pretty;
}

.about-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
}

.about-list dt {
  padding: 16px 32px 16px 0;
  border-top: 1px solid rgba(34, 48, 31, .15);
  color: rgba(34, 48, 31, .55);
  letter-spacing: .08em;
}

.about-list dd {
  padding: 16px 0;
  border-top: 1px solid rgba(34, 48, 31, .15);
  margin: 0;
  color: #22301f;
}

.about-list dt.last,
.about-list dd.last {
  border-bottom: 1px solid rgba(34, 48, 31, .15);
}

.about-map {
  margin-top: clamp(32px, 5vw, 56px);
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  border: 1px solid rgba(34, 48, 31, .15);
}

.about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(35%) sepia(25%) hue-rotate(60deg) saturate(140%) brightness(.95);
}

/* Footer */
.site-footer {
  padding: clamp(48px, 6vw, 80px) clamp(28px, 6vw, 96px);
  background: #22301f;
  color: #f2efe7;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-name {
  font-family: "Yuji Boku", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .16em;
}

.footer-address {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(242, 239, 231, .7);
}
