:root {
  --ink: #26332d;
  --green: #315f49;
  --deep: #173d2c;
  --lime: #d7e4a8;
  --cream: #f5f3ea;
  --orange: #e86f3b;
  --line: #d9ded7;
  --white: #fff;
  --shadow: 0 18px 55px rgba(31, 55, 43, .12);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto }
a { color: inherit; text-decoration: none }

/* ---------- header ---------- */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px clamp(20px, 4vw, 64px);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .48);
}

.brand {
  display: flex;
  flex-direction: column;
  color: #ef884f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .95), 0 3px 14px rgba(100, 52, 25, .28);
}
.brand span { font-size: 21px }
.brand small {
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .42em;
}

.header-entry {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 13px 19px;
  color: #914a24;
  background: rgba(255, 240, 221, .96);
  border: 2px solid #fff8ef;
  box-shadow: 0 7px 22px rgba(119, 62, 27, .2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-shadow: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  overflow: hidden;
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 48%;
  filter: brightness(1.08) saturate(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 48, 33, .34) 0%, rgba(17, 48, 33, .16) 38%, transparent 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 47vw);
  margin-left: max(6vw, 24px);
  padding: 130px 0 160px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .48);
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}
.eyebrow { color: #ffd1a8 }

.hero h1 {
  margin: 0 0 30px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.38;
}
.hero h1 span { color: #ffc18c }

.hero-copy > p:not(.eyebrow) {
  margin: 0 0 34px;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 260px;
  padding: 19px 25px;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #f2a05f 0%, #e57437 100%);
  box-shadow: 0 10px 28px rgba(121, 62, 27, .25);
  text-shadow: 0 1px 3px rgba(90, 42, 17, .22);
}
.button-primary span { color: #fff }

.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(650px, 70%);
  background: rgba(255, 255, 255, .95);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 18px;
  border-left: 1px solid #ead9ce;
  text-align: center;
}
.hero-stats strong {
  color: #d66f35;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}
.hero-stats strong small { font-family: inherit; font-size: 13px }
.hero-stats span { margin-top: 9px; font-size: 10px; font-weight: 700 }

/* ---------- shared section ---------- */
.section { padding: 110px 24px }
.section-inner { width: min(1120px, 100%); margin: auto }
.narrow { width: min(820px, 100%) }
.section-index { color: #b85b2d }

h2 {
  margin: 0 0 42px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.45;
}
h2 em { color: #e4773a; font-style: normal }

.section-lead { margin: -28px 0 42px; color: #68756e; font-weight: 700 }

/* ---------- 01 message ---------- */
.wide-photo { width: 100%; margin: 48px 0 0 }

.message-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  margin: 0 0 55px;
  padding: 38px 42px;
  background: var(--cream);
}
.message-grid h3 { margin: 12px 0 0; font-size: 21px; line-height: 1.7 }
.message-grid > p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid #c9cec8;
  font-size: 14px;
}
.tag { display: inline-block; margin: 0; color: var(--orange); font-size: 11px; font-weight: 800 }
.content-image { width: min(720px, 100%); margin: 0 auto }

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 45px;
  padding: 26px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inline-cta p { margin: 0; font-weight: 800 }
.button-line { color: #fff; background: #2b8a52 }

/* ---------- 02 philosophy ---------- */
.philosophy {
  background: linear-gradient(180deg, #edf2e9 0%, #e2eadf 100%);
  color: #30463a;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 85px;
}
.philosophy-visual {
  padding: 25px;
  background: #fffaf5;
  box-shadow: 0 16px 38px rgba(66, 87, 73, .14);
}
.philosophy-visual img { width: 100% }
.philosophy .section-index { color: #bf6231 }
.philosophy h2 { margin-bottom: 20px; color: #30463a }
.philosophy-label {
  display: inline-block;
  margin: 0 0 26px;
  padding: 5px 14px;
  color: #fff;
  background: #df7b3f;
  font-weight: 800;
}
.philosophy p:not(.section-index, .philosophy-label) { color: #40594c; font-size: 15px }
.philosophy strong { color: #b85b2d }

/* ---------- 03 reasons ---------- */
.reasons { background: var(--cream) }
.work-photo { width: 100%; max-height: 520px; margin: -5px 0 60px; object-fit: cover }
.reason-list { display: grid; gap: 70px }
.reason-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  align-items: start;
}
.reason-list article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: Georgia, serif;
}
.reason-list article > div { overflow: hidden; background: #fff; box-shadow: var(--shadow) }
.reason-list img { width: 100% }

/* ---------- 04 work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: 32px;
}
.work-grid img { width: 100%; box-shadow: var(--shadow) }
.interview-image { width: 100%; margin-top: 90px }

/* ---------- 05 shops ---------- */
.shops { background: #eef2ec }
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px }
.shop-grid article {
  position: relative;
  min-height: 170px;
  padding: 35px;
  background: #fff;
  border-top: 3px solid var(--green);
}
.shop-grid span { color: #a8b6ae; font-family: Georgia, serif; font-size: 12px }
.shop-grid h3 { margin: 15px 0 5px; font-size: 21px }
.shop-grid p { margin: 0; color: #6b7770; font-size: 13px }
.shop-grid .access { margin-top: 10px; color: var(--green); font-size: 12px; font-weight: 700 }

/* ---------- 06 requirements ---------- */
.requirements ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none }
.requirements li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 19px 26px;
  background: var(--cream);
}
.requirements li span { font-family: Georgia, serif; color: var(--orange) }
.requirements li strong { font-size: 16px }

/* ---------- 07 entry ---------- */
.entry {
  padding-bottom: 150px;
  background: linear-gradient(180deg, #fff8f1 0%, #f4e6d8 100%);
  color: #30463a;
}
.entry h2 { color: #30463a }
.entry .section-index { color: #bf6231 }
.entry .section-lead { color: #6f776f }
.entry form {
  padding: 42px;
  background: #fff;
  color: #30463a;
  box-shadow: 0 18px 45px rgba(100, 72, 48, .14);
}
.hp { position: absolute; left: -9999px }

fieldset { margin: 0 0 28px; padding: 0; border: 0 }
legend,
.field span { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 800 }

.choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px }
.choices label { padding: 13px; background: #f2f4f1; font-size: 13px; cursor: pointer }
.choices.inline { grid-template-columns: repeat(3, minmax(90px, 160px)) }
.choices.three { grid-template-columns: repeat(3, 1fr) }

.field { display: block; margin-bottom: 28px }
.field input,
.field textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dfd3c8;
  border-radius: 0;
  background: #fffdfb;
  color: #30463a;
  font: inherit;
}
.field input:focus,
.field textarea:focus { outline: 2px solid #e4773a; outline-offset: 1px }
.button-submit { width: 100%; color: #fff; background: #e4773a; justify-content: center }

.form-note { margin: 18px 0 0; color: #6f776f; font-size: 11px; text-align: center; line-height: 1.9 }
.form-note a { color: #b85b2d; font-weight: 800; text-decoration: underline }

/* ---------- thanks page ---------- */
.thanks {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 160px 24px 140px;
  background: linear-gradient(180deg, #fff8f1 0%, #f4e6d8 100%);
  color: #30463a;
}
.thanks h2 { color: #30463a }
.thanks-lead { margin: -18px 0 46px; font-size: 15px; font-weight: 600; line-height: 2 }
.thanks-lead strong { color: #b85b2d }
.thanks-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(100, 72, 48, .14);
}
.thanks-note p { margin: 0; font-size: 13px }
.thanks-back { margin: 40px 0 0; font-size: 13px; font-weight: 700 }
.thanks-back a { color: #b85b2d; text-decoration: underline }

/* ---------- footer ---------- */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px max(5vw, 24px) 120px;
  color: #fff;
  background: #102b20;
}
.brand-footer { color: #fff; text-shadow: none }
footer p { font-size: 10px }

.fixed-entry {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  height: 72px;
  width: min(420px, calc(100% - 36px));
  box-shadow: 0 15px 35px rgba(20, 44, 32, .25);
}
.fixed-entry a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  height: 72px;
  padding: 8px;
  color: #fff;
  background: #258652;
  font-size: 13px;
  font-weight: 800;
}
.fixed-entry a + a { background: #e4773a }
.fixed-entry small { font-size: 8px; font-weight: 500; letter-spacing: .08em }

/* ---------- responsive ---------- */
@media (max-width: 767px) {
  .site-header { padding: 18px }
  .brand span { font-size: 16px }
  .header-entry { padding: 10px 13px }
  .hero { min-height: 690px; align-items: flex-end }
  .hero-image { object-position: 18% center }
  .hero-shade {
    background: linear-gradient(90deg, rgba(17, 48, 33, .24), rgba(17, 48, 33, .03)),
                linear-gradient(0deg, rgba(17, 48, 33, .12), transparent 55%);
  }
  .hero-copy { width: 100%; margin: 0; padding: 120px 20px 190px }
  .hero h1 {
    width: 100%;
    font-size: clamp(26px, 7.8vw, 32px);
    letter-spacing: 0;
    line-height: 1.5;
    white-space: nowrap;
  }
  .hero h1 span { display: inline }
  .hero-copy > p:not(.eyebrow) { font-size: 12px }
  .hero-stats { width: 100% }
  .hero-stats div { min-height: 104px; padding: 12px 5px }
  .hero-stats strong { font-size: 23px }
  .hero-stats span { font-size: 8px }
  .section { padding: 82px 18px }
  h2 { font-size: 34px }
  .wide-photo { margin-top: 30px }
  .message-grid { grid-template-columns: 1fr; gap: 22px; padding: 27px 23px }
  .message-grid > p { padding: 20px 0 0; border-top: 1px solid #c9cec8; border-left: 0 }
  .inline-cta { align-items: stretch; flex-direction: column; padding: 24px 0 }
  .button { width: 100% }
  .philosophy-grid { grid-template-columns: 1fr; gap: 42px }
  .philosophy-visual { width: 70%; margin: auto }
  .work-photo { margin-bottom: 35px }
  .reason-list { gap: 35px }
  .reason-list article { grid-template-columns: 38px 1fr; gap: 9px }
  .reason-list article > span { width: 34px; height: 34px; font-size: 10px }
  .work-grid { grid-template-columns: 1fr }
  .shop-grid { grid-template-columns: 1fr }
  .entry form { padding: 27px 20px }
  .choices { grid-template-columns: 1fr }
  .choices.inline,
  .choices.three { grid-template-columns: repeat(3, 1fr) }
  .thanks { padding: 120px 18px 110px }
  .thanks-note { align-items: stretch; flex-direction: column; padding: 24px 22px }
  footer { padding-bottom: 130px }
  .fixed-entry { right: 10px; bottom: 10px; width: calc(100% - 20px) }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
}
