:root {
  --ink: #111a22;
  --ink-2: #17232d;
  --text: #171b1f;
  --muted: #5c6267;
  --accent: #d5a032;
  --line: #9da3a8;
  --max-width: 1240px;
  --wide-width: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.72;
  letter-spacing: .015em;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid #38434c;
}
.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--wide-width));
  margin: 0 auto;
}
.brand { display: flex; align-items: baseline; gap: 14px; text-decoration: none; }
.brand-name { font-size: 1.12rem; font-weight: 900; letter-spacing: .07em; }
.brand-sub { color: #aeb7be; font-size: .72rem; }
.global-nav { display: flex; align-items: center; gap: 28px; }
.global-nav a { color: #fff; font-size: .82rem; font-weight: 800; text-decoration: none; }
.global-nav a:hover,
.global-nav a:focus-visible,
.global-nav .is-current { color: var(--accent); }
.global-nav .nav-contact { padding: 10px 15px; color: var(--ink); background: var(--accent); }
.global-nav .nav-contact:hover,
.global-nav .nav-contact:focus-visible { color: #fff; background: #72531b; }
.menu-button { display: none; width: 44px; height: 40px; padding: 8px; border: 0; background: transparent; }
.menu-button > span:not(.visually-hidden) { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #26343e;
}
.hero-image,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 50%; }
.hero-shade { background: rgba(6, 10, 14, .42); }
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 980px);
  padding: 54px 0;
  text-align: center;
}
.hero-kicker { margin: 0 0 10px; color: var(--accent); font-size: .82rem; font-weight: 900; letter-spacing: .16em; }
.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.18;
  letter-spacing: .02em;
}
.hero-copy { max-width: 900px; margin: 18px auto 0; font-size: 1rem; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
}
.button-primary { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.button-primary:hover,
.button-primary:focus-visible { color: #fff; background: var(--ink); border-color: #fff; }
.button-outline { color: #fff; background: transparent; border-color: #fff; }
.button-outline:hover,
.button-outline:focus-visible { color: var(--ink); background: #fff; }

.quick-summary { color: var(--ink); background: var(--accent); border-bottom: 1px solid var(--ink); }
.quick-summary-inner { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; }
.quick-summary-inner > div { padding: 15px 24px; border-left: 1px solid var(--ink); }
.quick-summary-inner > div:first-child { border-left: 0; }
.quick-summary strong { display: block; font-size: .95rem; }
.quick-summary span { display: block; margin-top: 1px; font-size: .75rem; line-height: 1.4; }

.section { padding: 72px 0; }
.section-inner { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }
.wide-inner { width: min(calc(100% - 28px), var(--wide-width)); margin: 0 auto; }
.roomy-inner { width: min(calc(100% - 48px), var(--max-width)); }
.section-heading { margin-bottom: 34px; }
.compact-heading { margin-bottom: 28px; }
.centered-heading { text-align: center; }
.centered-heading > p:last-child { margin-right: auto; margin-left: auto; }
.section-label { margin: 0 0 6px; color: #a56f0c; font-size: .76rem; font-weight: 900; letter-spacing: .13em; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.25;
}
.section-heading > p:last-child { max-width: 820px; margin-top: 10px; color: var(--muted); }

.services-overview { padding-top: 64px; padding-bottom: 68px; }
.service-overview-list { border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.service-overview-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 42px;
  border-bottom: 1px solid var(--ink);
}
.service-overview-row:last-child { border-bottom: 0; }
.business-number { margin: 0; color: var(--accent); font-size: 1.05rem; font-weight: 900; }
.service-overview-row h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.35; }
.service-overview-row p:last-child { max-width: 1000px; margin: 8px 0 0; color: var(--muted); }
.center-action { margin-top: 24px; text-align: center; }
.text-link { display: inline-block; border-bottom: 2px solid var(--accent); font-weight: 900; text-decoration: none; }
.text-link:hover,
.text-link:focus-visible { color: #7f570d; }

.facility-section { padding-top: 78px; padding-bottom: 80px; background: #f4f4f1; }
.media-list { border-top: 3px solid var(--ink); background: #fff; }
.media-row {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 350px;
  border-bottom: 1px solid var(--ink);
}
.media-row img { height: 100%; min-height: 350px; object-fit: cover; }
.media-row > div { display: flex; flex-direction: column; justify-content: center; padding: 40px 48px; }
.media-row h3 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.3; }
.media-row p { margin: 12px 0 0; color: var(--muted); }
.media-row-reverse { grid-template-columns: .88fr 1.12fr; }
.media-row-reverse img { order: 2; }
.media-row-reverse > div { order: 1; }

.company-section { padding-top: 78px; padding-bottom: 76px; }
.company-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.company-data,
.permit-table { margin: 0; border-top: 3px solid var(--ink); }
.company-data div,
.permit-table > div { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 13px 0; border-bottom: 1px solid var(--ink); }
.company-data dt,
.permit-table span:first-child { font-weight: 900; }
.company-data dd { margin: 0; }
.pending-data { color: #9b6813; font-weight: 900; }
.permit-photo {
  position: relative;
  width: 100%;
  height: 245px;
  margin: 22px 0 0;
  padding: 0;
  border: 1px solid var(--ink);
  background: #000;
  cursor: zoom-in;
  overflow: hidden;
}
.permit-photo img { height: 100%; object-fit: cover; object-position: center 42%; }
.permit-photo span { position: absolute; right: 0; bottom: 0; padding: 8px 12px; color: #fff; background: var(--ink); font-size: .75rem; font-weight: 900; }

.access-section { padding-top: 70px; padding-bottom: 76px; background: #f4f4f1; }
.map-frame { height: 430px; border: 2px solid var(--ink); background: #d8d8d4; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-link-row { margin: 14px 0 0; text-align: right; }

.contact-section { padding: 70px 0; color: var(--ink); background: var(--accent); }
.contact-inner { display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: center; }
.contact-section .section-label { color: var(--ink); }
.contact-inner h2 { margin: 0; font-size: clamp(1.8rem, 3.2vw, 2.7rem); line-height: 1.25; }
.contact-inner > div:first-child > p:last-child { margin: 11px 0 0; }
.contact-box { min-height: 150px; padding: 20px 0 20px 32px; border-left: 3px solid var(--ink); }
.contact-box p { margin: 0; }
.contact-box-label { font-weight: 900; }
.contact-phone { display: block; margin: 5px 0 8px; font-size: clamp(1.45rem, 2.4vw, 2rem); font-weight: 900; text-decoration: none; }
.contact-hours { font-size: .83rem; }

.page-hero { color: #fff; background: var(--ink-2); border-bottom: 8px solid var(--accent); }
.page-hero-inner { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; padding: 64px 0 58px; text-align: center; }
.page-hero .section-label { color: var(--accent); }
.page-hero h1 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.15; }
.page-hero p:last-child { max-width: 760px; margin: 14px auto 0; color: #d2d9de; }

.services-detail { padding-top: 68px; }
.business-block { border-top: 3px solid var(--ink); }
.business-block + .business-block { border-top-width: 1px; }
.business-block:last-child { border-bottom: 3px solid var(--ink); }
.business-copy { width: 100%; padding: 34px 54px 38px; }
.business-copy h3 { margin: 4px 0 0; font-size: clamp(1.55rem, 2.5vw, 2.15rem); line-height: 1.32; }
.business-copy > p:not(.business-number) { max-width: 1040px; margin: 10px 0 0; color: var(--muted); }
.service-list { max-width: 1040px; margin-top: 22px; border-top: 2px solid var(--ink); }
.service-list li { position: relative; padding: 10px 0 10px 18px; border-bottom: 1px solid #aeb3b7; font-size: .92rem; }
.service-list li::before { content: "■"; position: absolute; left: 0; top: 14px; color: var(--accent); font-size: .45rem; }

.work-examples { padding-top: 70px; background: #f4f4f1; }
.example-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.example-grid figure { margin: 0; }
.example-grid figure + figure { border-left: 1px solid var(--ink); }
.example-grid img { height: 430px; object-fit: cover; }
.example-grid figcaption { padding: 12px 16px; background: #fff; border-top: 1px solid var(--ink); font-weight: 900; }

.produce-section { padding-top: 74px; padding-bottom: 80px; }
.produce-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.produce-item { border-left: 1px solid var(--ink); }
.produce-item:first-child { border-left: 0; }
.produce-item img { height: 360px; object-fit: cover; }
.produce-item > div { padding: 24px 24px 28px; border-top: 1px solid var(--ink); }
.produce-item h3 { margin: 0; font-size: 1.35rem; }
.produce-item p { margin: 10px 0 0; color: var(--muted); font-size: .92rem; }

.future-section { padding: 76px 0 82px; color: #fff; background: var(--ink-2); }
.section-heading-light h2 { color: #fff; }
.section-heading-light > p:last-child { color: #d4dae0; }
.future-gallery-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: stretch; }
.future-photo-stack { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; border: 1px solid #69737c; }
.future-photo-stack img { height: 100%; min-height: 540px; object-fit: cover; }
.future-photo-stack img + img { border-left: 1px solid #69737c; }
.future-content { border-top: 3px solid var(--accent); }
.future-unit { padding: 28px 0; border-bottom: 1px solid #68727b; }
.future-title-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.future-unit h3 { margin: 0; font-size: 1.4rem; }
.status { flex: 0 0 auto; padding: 3px 8px; color: var(--ink); background: var(--accent); font-size: .72rem; font-weight: 900; }
.dark-list { margin-top: 16px; border-top: 1px solid #68727b; }
.dark-list li { position: relative; padding: 10px 0 10px 18px; border-bottom: 1px solid #68727b; color: #e0e4e7; }
.dark-list li::before { content: "■"; position: absolute; left: 0; top: 14px; color: var(--accent); font-size: .45rem; }
.future-data { margin: 18px 0 0; border-top: 1px solid #68727b; }
.future-data div { display: grid; grid-template-columns: 165px 1fr; gap: 18px; padding: 10px 0; border-bottom: 1px solid #68727b; }
.future-data dt { color: #c8cfd4; }
.future-data dd { margin: 0; color: var(--accent); font-weight: 900; }

.site-footer { padding: 38px 0; color: #fff; background: #080c10; border-top: 1px solid #303841; }
.footer-inner { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; }
.footer-brand { margin: 0 0 3px; font-size: 1.02rem; font-weight: 900; }
.footer-inner p { margin-top: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #d3d9de; font-size: .78rem; text-decoration: none; }
.copyright { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 13px; border-top: 1px solid #303841; color: #9ba4ac; font-size: .68rem; }

.back-to-top { position: fixed; z-index: 80; right: 18px; bottom: 18px; width: 44px; height: 44px; border: 1px solid #fff; color: #fff; background: var(--ink); opacity: 0; pointer-events: none; transform: translateY(10px); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
dialog:not([open]) { display: none; }
.lightbox { width: min(1000px, calc(100% - 32px)); max-height: calc(100vh - 40px); padding: 16px; color: #fff; background: #080c10; border: 1px solid #fff; }
.lightbox::backdrop { background: rgba(0,0,0,.86); }
.lightbox img { max-height: calc(100vh - 145px); object-fit: contain; }
.lightbox p { margin: 10px 45px 0 0; }
.lightbox-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid #fff; color: #fff; background: var(--ink); font-size: 1.4rem; cursor: pointer; }

@media (max-width: 1080px) {
  .header-inner { width: min(calc(100% - 32px), var(--wide-width)); }
  .global-nav { gap: 18px; }
  .company-layout { gap: 42px; }
  .contact-inner { grid-template-columns: 1fr 360px; gap: 42px; }
  .future-gallery-layout { grid-template-columns: 1fr; }
  .future-photo-stack { min-height: 420px; }
  .future-photo-stack img { min-height: 420px; }
}

@media (max-width: 820px) {
  .site-header { position: sticky; }
  .header-inner { min-height: 64px; }
  .brand-sub { display: none; }
  .menu-button { display: block; }
  .global-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    background: var(--ink);
    border-top: 1px solid #39434c;
  }
  .global-nav.is-open { display: flex; }
  .global-nav a { padding: 13px 6px; border-bottom: 1px solid #39434c; }
  .global-nav .nav-contact { margin-top: 8px; text-align: center; border-bottom: 0; }
  .hero { min-height: 480px; }
  .hero-inner { width: min(calc(100% - 32px), 760px); padding: 44px 0; }
  .hero-copy { font-size: .92rem; line-height: 1.75; }
  .quick-summary-inner { grid-template-columns: 1fr 1fr; }
  .quick-summary-inner > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--ink); }
  .quick-summary-inner > div:nth-child(4) { border-top: 1px solid var(--ink); }
  .section { padding: 58px 0; }
  .section-inner,
  .roomy-inner { width: min(calc(100% - 32px), var(--max-width)); }
  .wide-inner { width: min(calc(100% - 16px), var(--wide-width)); }
  .service-overview-row { grid-template-columns: 62px 1fr; gap: 12px; padding: 25px 18px; }
  .media-row,
  .media-row-reverse { grid-template-columns: 1fr; min-height: 0; }
  .media-row img,
  .media-row-reverse img { order: 1; height: 320px; min-height: 0; }
  .media-row > div,
  .media-row-reverse > div { order: 2; padding: 28px 24px 32px; }
  .company-layout { grid-template-columns: 1fr; gap: 58px; }
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-box { min-height: 0; padding: 20px 0 0; border-top: 3px solid var(--ink); border-left: 0; }
  .example-grid { grid-template-columns: 1fr; }
  .example-grid figure + figure { border-top: 1px solid var(--ink); border-left: 0; }
  .example-grid img { height: 380px; }
  .produce-grid { grid-template-columns: 1fr; }
  .produce-item { border-top: 1px solid var(--ink); border-left: 0; }
  .produce-item:first-child { border-top: 0; }
  .produce-item img { height: 380px; }
  .business-copy { padding: 30px 24px 34px; }
  .future-photo-stack { min-height: 380px; }
  .future-photo-stack img { min-height: 380px; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 520px) {
  body { line-height: 1.65; }
  .header-inner { width: calc(100% - 24px); }
  .brand-name { font-size: .98rem; }
  .hero { min-height: 500px; }
  .hero h1 { font-size: 2.08rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .quick-summary-inner { grid-template-columns: 1fr; }
  .quick-summary-inner > div { border-top: 1px solid var(--ink); border-left: 0; }
  .quick-summary-inner > div:first-child { border-top: 0; }
  .section-inner,
  .roomy-inner { width: calc(100% - 24px); }
  .wide-inner { width: calc(100% - 8px); }
  .service-overview-row { grid-template-columns: 1fr; gap: 4px; padding: 24px 14px; }
  .business-number { font-size: .85rem; }
  .media-row img,
  .media-row-reverse img { height: 260px; }
  .company-data div,
  .permit-table > div { grid-template-columns: 1fr; gap: 3px; }
  .map-frame { height: 340px; }
  .page-hero-inner { width: calc(100% - 24px); padding: 52px 0 48px; }
  .business-copy { padding: 27px 14px 31px; }
  .example-grid img,
  .produce-item img { height: 300px; }
  .future-photo-stack { grid-template-columns: 1fr; min-height: 0; }
  .future-photo-stack img { min-height: 300px; height: 300px; }
  .future-photo-stack img + img { border-top: 1px solid #69737c; border-left: 0; }
  .future-title-row { align-items: flex-start; }
  .future-data div { grid-template-columns: 1fr; gap: 3px; }
  .footer-inner { width: calc(100% - 24px); }
}

.hero h1 span { display: block; white-space: nowrap; }
@media (max-width: 520px) {
  .hero h1 span { white-space: normal; }
}

/* v12: mobile column and map refinements */
.map-frame iframe { display: block; }

@media (max-width: 520px) {
  .quick-summary-inner,
  .company-layout,
  .contact-inner,
  .media-row,
  .media-row-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner > *,
  .company-layout > *,
  .media-row > *,
  .media-row-reverse > * {
    min-width: 0;
  }

  .contact-inner h2,
  .section-heading h2,
  .media-row h3,
  .service-overview-row h3 {
    overflow-wrap: anywhere;
    word-break: auto-phrase;
  }

  .map-frame {
    width: 100%;
    height: 360px;
  }
}
