:root {
  --bg: oklab(98.72999999999999% 0.00285 0.00903);
  --paper: #ffffff;
  --ink: #2b221b;
  --muted: #69564a;
  --line: #ead1b6;
  --blue: #1f67d2;
  --blue2: #0d9bd7;

  --dark: #2b1d16;
  --dark2: #8a3d13;

  --accent: #df5b00;
  --accent2: #f8c98b;
  --navy: #101828;

  --radius: 8px;
  --radius2: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .10);
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.65;
  padding-top: var(--topbar-h, 0px);
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  opacity: .9;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(43, 29, 22, .94);
  color: #fff;
  border-bottom: 1px solid rgba(255, 202, 150, .36);
  backdrop-filter: blur(10px);
}

/* Fixed header offset for in-page anchors */
section[id],
main[id] {
  scroll-margin-top: calc(var(--topbar-h, 0px) + 12px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  min-width: 240px;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .22);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.7;
}

.brand__name {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0;
}

.brand__sub {
  font-weight: 650;
  opacity: .9;
}

.brand__tag {
  font-size: 16px;
  opacity: .82;
}

.topnav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.topnav a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 8px;
}

.topnav a:hover {
  background: rgba(255, 184, 111, .20);
  color: #fff;
}

.topbar__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 202, 150, .42);
  background: rgba(255, 184, 111, .14);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255, 184, 111, .24);
}

.btn--primary {
  background: var(--accent);
  border-color: rgba(255, 202, 150, .55);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(.98);
}

.btn--ghost {
  background: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.98);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 29, 22, .74) 0%, rgba(43, 29, 22, .62) 42%, rgba(43, 29, 22, .20) 50%);
}

.hero__inner {
  position: relative;
  padding: 74px 0 88px 0;
}

.hero__headline {
  margin: 90px 0 0;
  max-width: 780px;
}

.pill {
  display: inline-block;
  background: rgba(223, 91, 0, .94);
  border: 1px solid rgba(255, 218, 175, .48);
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0;
}

.hero h1 {
  margin: 34px 0 22px;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h2 {
  margin: 0;
  font-weight: 650;
  font-size: 22px;
  letter-spacing: 0;
}

.hero .jp {
  font-weight: 800;
}

.hero__lead {
  margin: 0;
  font-size: 16px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero__actions .btn {
  border-color: rgba(255, 255, 255, .22);
}

/* Sections */
.section {
  padding: 32px 0;
}

.section--soft {
  background: #ffe4c6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--paper {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__title {
  margin: 30px 0 6px;
  font-size: 24px;
  letter-spacing: 0;
}

.section__desc {
  margin: 0 0 0 10px;
  font-size: 16px;
}

.section--contact {
  padding: 54px 0;
  background: var(--dark);
}

/* Block split */
.block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 14px;
  margin: 16px 0 24px;
}

.block--split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff0df;
  position: relative;
  min-height: 420px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prefer showing the whole image (no crop) when needed */
.media--contain img {
  object-fit: contain;
}

.media__cap {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .08);
  font-size: 12px;
  color: #2a2a2a;
}

.listbox {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 12px;
  background: #fffaf5;
}

.listbox__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.check {
  margin: 0;
  padding-left: 18px;
}

.check li {
  margin: 6px 0;
  font-size: 16px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 180px;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #fff0df;
  border-bottom: 1px solid var(--line);
}

.card h3 {
  margin: 12px 12px 6px;
  font-size: 16px;
}

.card p {
  margin: 0 12px 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Accordion */
.accordionWrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 8px;
  box-shadow: var(--shadow);
}

.accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.accordion+.accordion {
  margin-top: 8px;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  font-weight: 850;
  background: #fff4e8;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 16px;
  opacity: .75;
  transform: rotate(0deg);
  transition: transform .14s ease;
}

.accordion[open] summary::after {
  transform: rotate(180deg);
}

.accordion__body {
  padding: 12px 12px 14px;
  color: #2a2a2a;
}

.accordion__body h4 {
  margin: 12px 0 6px;
  font-size: 13px;
}

.plain {
  margin: 0;
  padding-left: 18px;
  color: #2a2a2a;
  font-size: 14px;
}

.plain li {
  margin: 6px 0;
}

.muted {
  color: var(--muted);
}

/* Contact */
.contact {
  text-align: center;
  margin: 32px 0 0 50px;
}

.contact__logo {
  width: min(240px, 70%);
  margin: 80px 0 6px 80px;
  display: block;
}

.contact__name {
  font-size: 28px;
  font-weight: 900;
}

.contact__link {
  color: rgba(255, 255, 255, .86);
}

.contact__row {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, .86fr);
  gap: 44px;
  align-items: start;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-copy .eyebrow {
  color: var(--yellow);
}

.contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: 0;
}

.contact-copy p {
  margin: 16px 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, .78);
}

.contact-copy .contact-accordion {
  margin-top: 28px;
}

.contact-layout>.contact {
  margin-top: 0;
}

.contact-accordion {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.contact-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 22px 64px 22px 24px;
  cursor: pointer;
  list-style: none;
  background: #fff;
}

.contact-accordion summary::-webkit-details-marker {
  display: none;
}

.contact-accordion summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.contact-accordion[open] summary::after {
  content: "-";
}

.contact-accordion summary strong,
.contact-accordion summary small {
  display: block;
}

.contact-accordion summary strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.contact-accordion summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  background: #f7faff;
  border-top: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #f9fbfe;
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 155, 215, .16);
}

.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__submit {
  justify-self: start;
  min-width: 150px;
  border: 0;
}

/* Footer */
.footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.footer__left strong {
  color: var(--ink);
}

/* Responsive */
@media (max-width: 920px) {
  .topnav {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h2 {
    font-size: 17px;
  }

  .hero__inner {
    padding: 54px 0 64px 0;
  }

  .block--split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

/* Capture page */
.featureVisual {
  min-height: 420px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(223, 91, 0, .22), rgba(242, 162, 58, .20)),
    repeating-linear-gradient(0deg, rgba(43, 34, 27, .05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(43, 34, 27, .05) 0 1px, transparent 1px 34px),
    #fff8ef;
  position: relative;
  overflow: hidden;
}

.cameraRig {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 18%;
  height: 82px;
  border-bottom: 10px solid #4a2b1b;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}

.cameraRig span {
  display: block;
  height: 62px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #7a3a18, #2b1d16);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08), 0 14px 22px rgba(43, 34, 27, .16);
  position: relative;
}

.cameraRig span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffd098 0 28%, #20130d 30% 100%);
}

.previewGrid {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 12%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(43, 34, 27, .12);
  box-shadow: 0 16px 34px rgba(43, 34, 27, .16);
}

.previewGrid div {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(223, 91, 0, .34), rgba(242, 162, 58, .30)),
    linear-gradient(0deg, rgba(43, 34, 27, .16), transparent 55%),
    #f6ddc3;
  border: 1px solid rgba(43, 34, 27, .12);
}

.cardIcon {
  width: 48px;
  height: 48px;
  margin: 14px 12px 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffe4c6;
  color: var(--accent);
  font-weight: 900;
}

.timeline {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timeline__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.timeline__num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.timeline__item h3 {
  margin: 12px 0 4px;
  font-size: 16px;
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .featureVisual {
    min-height: 320px;
  }

  .cameraRig {
    left: 8%;
    right: 8%;
    gap: 10px;
  }

  .previewGrid {
    left: 8%;
    right: 8%;
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}