/* Office page mockup implementation. Source: design/claude-mockups/office/mockup.html */
:root {
        --ink: #111111;
        --ink-2: #1b1b1b;
        --text: #4f4f4f;
        --muted: #727272;
        --line: #e1e1e1;
        --line-strong: #c9c9c9;
        --paper: #ffffff;
        --paper-2: #fcfcfc;
        --soft: #f7f7f7;
        --soft-2: #efefef;
        --orange: #f57e35;
        --orange-soft: rgba(245, 126, 53, 0.12);
        --max: 1200px;
        --gutter: 32px;
        --duration: 240ms;
        --ease: cubic-bezier(0.2, 0, 0, 1);
      }

      * { box-sizing: border-box; }

      html, body {
        max-width: 100%;
        overflow-x: hidden;
      }

      body {
        margin: 0;
        color: var(--text);
        background: var(--paper);
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-weight: 500;
        line-height: 1.75;
        letter-spacing: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      a { color: inherit; text-decoration: none; }
      img { max-width: 100%; display: block; }
      h1, h2, h3, h4, p, ul, ol, dl { margin-top: 0; }
      ul, ol { padding: 0; list-style: none; }

      .nobr { display: inline; white-space: nowrap; }
      .container {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 var(--gutter);
      }

      /* ====== Header ====== */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(180%) blur(10px);
        -webkit-backdrop-filter: saturate(180%) blur(10px);
        border-bottom: 1px solid var(--line);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        max-width: 1280px;
        margin: 0 auto;
        padding: 14px var(--gutter);
      }

      .brand { display: inline-flex; align-items: center; }
      .brand img { height: 22px; width: auto; }

      .global-nav {
        display: flex;
        align-items: stretch;
        gap: 28px;
        color: var(--ink);
      }

      .global-nav a {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 6px 2px;
        color: var(--ink);
      }

      .global-nav .nav-en {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1.15;
        text-transform: uppercase;
        transition: color var(--duration) var(--ease);
      }

      .global-nav .nav-ja {
        font-size: 10.5px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: var(--muted);
        transition: color var(--duration) var(--ease);
      }

      .global-nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--orange);
        transform: translateX(-50%);
        transition: width var(--duration) var(--ease);
      }

      .global-nav a:hover::after,
      .global-nav .is-current::after { width: 100%; }

      .global-nav a:hover .nav-en,
      .global-nav .is-current .nav-en { color: var(--orange); }

      .global-nav a:hover .nav-ja { color: var(--ink); }

      .header-actions { display: flex; align-items: center; gap: 12px; }

      .header-contact {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-height: 52px;
        padding: 0 22px;
        background: var(--ink);
        color: #ffffff;
        transition: background var(--duration) var(--ease);
      }

      .header-contact .nav-en {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.1em;
        line-height: 1.15;
        text-transform: uppercase;
      }

      .header-contact .nav-ja {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.7);
      }

      .header-contact:hover { background: var(--orange); }
      .header-contact:hover .nav-ja { color: rgba(255, 255, 255, 0.9); }

      .menu-toggle {
        display: none;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid var(--line);
        cursor: pointer;
      }

      .menu-toggle span,
      .menu-toggle span::before,
      .menu-toggle span::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        background: var(--ink);
        position: relative;
      }
      .menu-toggle span::before { position: absolute; top: -6px; }
      .menu-toggle span::after { position: absolute; top: 6px; }

      /* ====== Shared typography ====== */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 18px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .eyebrow::before {
        content: "";
        display: inline-block;
        width: 34px;
        height: 1px;
        background: currentColor;
      }

      /* ====== Buttons ====== */
      .button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-height: 58px;
        padding: 0 26px;
        background: var(--ink);
        color: #ffffff;
        font-size: 14.5px;
        font-weight: 800;
        letter-spacing: 0.02em;
        border: 1px solid var(--ink);
        transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
      }

      .button .arrow { display: inline-block; transition: transform var(--duration) var(--ease); }
      .button:hover { background: var(--orange); border-color: var(--orange); }
      .button:hover .arrow { transform: translateX(3px); }

      .button.alt {
        background: #ffffff;
        color: var(--ink);
        border-color: var(--line-strong);
      }
      .button.alt:hover {
        background: var(--ink);
        color: #ffffff;
        border-color: var(--ink);
      }

      /* ====== Hero ====== */
      .page-hero {
        position: relative;
        color: #ffffff;
        overflow: hidden;
        isolation: isolate;
      }

      .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/recruitment-office/real/office-workspace-wide-real.png");
        background-size: cover;
        background-position: center;
        z-index: -2;
        transform: scale(1.04);
        animation: heroZoom 14s ease-out forwards;
      }

      @keyframes heroZoom {
        from { transform: scale(1.08); }
        to { transform: scale(1.0); }
      }

      .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(100deg, rgba(7, 12, 22, 0.94) 0%, rgba(7, 12, 22, 0.72) 40%, rgba(7, 12, 22, 0.35) 72%, rgba(7, 12, 22, 0.6) 100%),
          linear-gradient(180deg, rgba(7, 12, 22, 0.18) 0%, rgba(7, 12, 22, 0.5) 100%);
        z-index: -1;
      }

      .page-hero-inner {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
        gap: 64px;
        align-items: end;
        max-width: var(--max);
        margin: 0 auto;
        padding: 124px var(--gutter) 100px;
      }

      .page-hero-text { max-width: 720px; }

      .page-hero .eyebrow {
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: 0.22em;
      }

      .page-hero h1 {
        margin: 0 0 26px;
        color: #ffffff;
        font-size: clamp(46px, 5.6vw, 78px);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -0.01em;
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
      }

      .page-hero .lead {
        margin: 0;
        max-width: 600px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 16px;
        font-weight: 500;
        line-height: 1.95;
      }

      .access-panel {
        position: relative;
        padding: 30px 30px 28px;
        background: rgba(8, 12, 20, 0.66);
        border: 1px solid rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }

      .access-panel::before {
        content: "";
        position: absolute;
        left: -1px;
        top: -1px;
        bottom: -1px;
        width: 3px;
        background: var(--orange);
      }

      .access-panel-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        margin-bottom: 18px;
      }

      .access-panel-title {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .access-panel-title::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 1px;
        background: var(--orange);
      }

      .access-panel-note {
        color: rgba(255, 255, 255, 0.6);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .access-panel-address {
        margin: 0 0 20px;
        color: #ffffff;
        font-size: 17px;
        font-weight: 900;
        line-height: 1.55;
      }

      .access-panel-list {
        display: grid;
        gap: 0;
        margin: 0;
      }

      .access-panel-list > div {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
      }

      .access-panel-list > div:last-child { padding-bottom: 0; }

      .access-panel-station-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
      }

      .access-panel-list dt {
        margin: 0;
        color: var(--orange);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .access-panel-walk {
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.02em;
      }

      .access-panel-walk strong {
        color: var(--orange);
        font-size: 15px;
        font-weight: 900;
      }

      .access-panel-list dd {
        margin: 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.6;
      }

      .access-panel-lines {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 5px;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .access-panel-lines li {
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 3px 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.22);
        color: rgba(255, 255, 255, 0.92);
        white-space: nowrap;
      }

      /* ====== Sections ====== */
      .section {
        position: relative;
        padding: 110px 0;
        border-bottom: 1px solid var(--line);
      }

      .section-alt { background: var(--soft); }

      .section-head {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 48px;
        align-items: end;
        margin-bottom: 56px;
      }

      .section-head h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(28px, 3.6vw, 44px);
        font-weight: 900;
        line-height: 1.24;
        letter-spacing: -0.005em;
      }

      .section-head .summary {
        margin: 0;
        color: var(--text);
        font-size: 15.5px;
        font-weight: 500;
        line-height: 1.95;
      }

      /* ====== Overview photo-lead ====== */
      .photo-lead {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 0;
        align-items: stretch;
        border: 1px solid var(--line);
        background: var(--paper);
      }

      .photo-lead .photo-main {
        position: relative;
        min-height: 460px;
        overflow: hidden;
        background: var(--ink);
        margin: 0;
      }

      .photo-lead .photo-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1200ms var(--ease);
      }

      .photo-lead:hover .photo-main img { transform: scale(1.02); }

      .photo-lead .photo-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 48px 44px;
        background: var(--paper);
      }

      .photo-lead .photo-copy .label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--orange);
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
      }

      .photo-lead .photo-copy .label::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 1px;
        background: currentColor;
      }

      .photo-lead .photo-copy h3 {
        margin: 6px 0 4px;
        color: var(--ink);
        font-size: 26px;
        font-weight: 900;
        line-height: 1.4;
        letter-spacing: -0.005em;
      }

      .photo-lead .photo-copy p {
        margin: 0;
        color: var(--text);
        font-size: 14.5px;
        line-height: 2;
      }

      .photo-lead .photo-copy .meta {
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .photo-lead .photo-copy .meta span {
        position: relative;
        padding-left: 14px;
      }

      .photo-lead .photo-copy .meta span::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--orange);
      }

      /* ====== Office Tour ====== */
      .tour-list {
        display: grid;
        gap: 32px;
      }

      .tour-item {
        display: grid;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 36px;
        align-items: center;
        padding: 32px 0;
        border-top: 1px solid var(--line);
      }

      .tour-item:first-child { border-top: 0; padding-top: 0; }
      .tour-item:last-child { padding-bottom: 0; }

      .tour-item.reverse {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
      }

      .tour-item.reverse .tour-visual {
        order: 2;
      }

      .tour-visual {
        position: relative;
        margin: 0;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: var(--ink);
      }

      .tour-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1200ms var(--ease);
      }

      .tour-item:hover .tour-visual img { transform: scale(1.03); }

      .tour-visual .badge {
        position: absolute;
        left: 18px;
        top: 18px;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        background: rgba(8, 12, 20, 0.82);
        color: #ffffff;
        font-size: 10.5px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .tour-visual .badge::before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 1px;
        background: var(--orange);
      }

      .tour-body { padding: 8px 4px; }

      .tour-body .num {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .tour-body .num::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 1px;
        background: currentColor;
      }

      .tour-body h3 {
        margin: 0 0 16px;
        color: var(--ink);
        font-size: clamp(22px, 2.4vw, 28px);
        font-weight: 900;
        line-height: 1.4;
        letter-spacing: -0.005em;
      }

      .tour-body p {
        margin: 0 0 12px;
        color: var(--text);
        font-size: 14.5px;
        line-height: 2;
      }

      .tour-body p:last-child { margin-bottom: 0; }

      .tour-body .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
      }

      .tour-body .tags span {
        display: inline-flex;
        align-items: center;
        padding: 6px 12px;
        background: var(--soft);
        border: 1px solid var(--line);
        color: var(--ink);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.04em;
      }

      /* ====== Work Style ====== */
      .use-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-top: 1px solid var(--ink);
        border-bottom: 1px solid var(--line);
      }

      .use-card {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: 240px;
        padding: 32px 26px 28px;
        background: var(--paper);
        border-right: 1px solid var(--line);
        transition: background var(--duration) var(--ease);
      }

      .use-card:last-child { border-right: 0; }

      .use-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 2px;
        background: var(--orange);
        transition: width var(--duration) var(--ease);
      }

      .use-card:hover::before { width: 100%; }
      .use-card:hover { background: var(--paper-2); }

      .use-card .num {
        color: var(--orange);
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .use-card h3 {
        margin: 0;
        color: var(--ink);
        font-size: 22px;
        font-weight: 900;
        line-height: 1.45;
      }

      .use-card p {
        margin: 0;
        color: var(--text);
        font-size: 13.5px;
        line-height: 1.9;
      }

      /* ====== Access ====== */
      .map-layout {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 28px;
        align-items: stretch;
      }

      .map-info {
        display: flex;
        flex-direction: column;
        padding: 36px 34px;
        background: var(--paper);
        border: 1px solid var(--line);
      }

      .map-info .label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--orange);
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 14px;
      }

      .map-info .label::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 1px;
        background: currentColor;
      }

      .map-info h3 {
        margin: 0 0 22px;
        color: var(--ink);
        font-size: 22px;
        font-weight: 900;
        line-height: 1.5;
        letter-spacing: -0.005em;
      }

      .map-table {
        display: grid;
        margin: 0;
        border-top: 1px solid var(--line);
      }

      .map-table > div {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
      }

      .map-table dt {
        margin: 0;
        color: var(--muted);
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .map-table dd {
        margin: 0;
        color: var(--ink);
        font-size: 14px;
        font-weight: 800;
        line-height: 1.7;
      }

      .map-table .station-name {
        display: block;
        font-size: 15px;
        font-weight: 900;
        color: var(--ink);
        line-height: 1.45;
      }

      .map-table .station-name .walk {
        display: inline-block;
        margin-left: 6px;
        padding: 2px 8px;
        background: var(--ink);
        color: #ffffff;
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.04em;
        vertical-align: 2px;
      }

      .map-table .lines {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 6px;
        margin: 10px 0 0;
        padding: 0;
        list-style: none;
      }

      .map-table .lines li {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.02em;
        padding: 5px 10px;
        background: var(--paper);
        border: 1px solid var(--line);
        color: var(--ink);
        white-space: nowrap;
      }

      .map-table .lines li.line-jr { border-left: 3px solid #2e8a3f; }
      .map-table .lines li.line-metro { border-left: 3px solid #15a0d6; }
      .map-table .lines li.line-toei { border-left: 3px solid #6cb52d; }
      .map-table .lines li.line-tx { border-left: 3px solid #cf3a3a; }

      .map-note {
        margin: 22px 0 0;
        padding-top: 18px;
        border-top: 1px solid var(--line);
        color: var(--text);
        font-size: 13px;
        line-height: 1.85;
      }

      .map-frame {
        position: relative;
        min-height: 480px;
        background: var(--soft-2);
        border: 1px solid var(--line);
        overflow: hidden;
      }

      .map-frame iframe {
        width: 100%;
        height: 100%;
        min-height: 480px;
        border: 0;
        display: block;
      }

      /* ====== Next Contents ====== */
      .next-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
      }

      .next-card {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 248px;
        padding: 24px 24px 22px;
        background: var(--paper);
        border: 1px solid var(--line);
        color: var(--ink);
        overflow: hidden;
        transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
      }

      .next-card:hover {
        border-color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
      }

      .next-card .num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--ink);
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.02em;
        transition: background var(--duration) var(--ease);
      }

      .next-card:hover .num { background: var(--orange); }

      .next-card h3 {
        margin: 4px 0 0;
        color: var(--ink);
        font-size: 19px;
        font-weight: 900;
        line-height: 1.4;
      }

      .next-card p {
        margin: 0;
        color: var(--text);
        font-size: 13.5px;
        line-height: 1.85;
      }

      .next-card .cta {
        margin-top: auto;
        padding-top: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--ink);
        font-size: 12.5px;
        font-weight: 900;
        letter-spacing: 0.02em;
        border-top: 1px solid var(--line);
      }

      .next-card .cta .arrow-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 0;
        border: 1px solid var(--line);
        color: var(--orange);
        font-size: 13px;
        line-height: 1;
        transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
      }

      .next-card:hover .cta .arrow-circle {
        background: var(--orange);
        border-color: var(--orange);
        color: #ffffff;
        transform: translateX(2px);
      }

      /* ====== Contact CTA ====== */
      .entry-section {
        position: relative;
        padding: 110px 0;
        background: var(--ink);
        color: #ffffff;
        overflow: hidden;
        isolation: isolate;
      }

      .entry-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/recruitment-office/generated/office-recruit-cta-dark.png");
        background-size: cover;
        background-position: center right;
        z-index: -2;
        opacity: 0.5;
      }

      .entry-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(100deg, rgba(7, 12, 22, 0.94) 0%, rgba(7, 12, 22, 0.78) 50%, rgba(58, 36, 24, 0.6) 100%),
          radial-gradient(circle at 82% 50%, rgba(245, 126, 53, 0.16), transparent 60%);
        z-index: -1;
      }

      .entry-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
        gap: 56px;
        align-items: center;
      }

      .entry-copy .eyebrow { color: rgba(255, 255, 255, 0.92); }

      .entry-copy h2 {
        margin: 0 0 18px;
        color: #ffffff;
        font-size: clamp(28px, 3.4vw, 42px);
        font-weight: 900;
        line-height: 1.24;
      }

      .entry-copy p {
        margin: 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        line-height: 1.95;
      }

      .entry-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 28px;
        background: #ffffff;
        color: var(--ink);
      }

      .entry-panel h3 {
        margin: 0 0 4px;
        color: var(--ink);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .entry-panel .button {
        min-height: 60px;
        justify-content: space-between;
        padding: 0 22px;
      }

      /* ====== Footer ====== */
      .footer {
        background: #0b0b0c;
        color: #c9c9c9;
        padding: 64px 0 32px;
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.3fr repeat(4, 1fr);
        gap: 36px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .footer-brand .footer-logo {
        display: inline-flex;
        align-items: center;
        margin-bottom: 18px;
      }

      .footer-brand .footer-logo img { height: 24px; width: auto; }

      .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
        line-height: 1.85;
      }

      .footer-col strong {
        display: block;
        margin-bottom: 14px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.08em;
      }

      .footer-col a {
        display: block;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 13px;
        transition: color var(--duration) var(--ease);
      }

      .footer-col a:hover { color: var(--orange); }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 24px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 12px;
      }

      /* ====== Responsive ====== */
      @media (max-width: 1366px) {
        .section { padding: 96px 0; }
        .next-grid { gap: 14px; }
        .page-hero-inner { gap: 48px; padding: 116px var(--gutter) 92px; }
      }

      @media (max-width: 1180px) {
        .page-hero-inner {
          grid-template-columns: 1fr;
          gap: 44px;
          padding: 104px var(--gutter) 80px;
          align-items: start;
        }
        .access-panel { max-width: 560px; }
        .section-head {
          grid-template-columns: 1fr;
          gap: 18px;
          align-items: start;
          margin-bottom: 40px;
        }
        .photo-lead { grid-template-columns: 1fr; }
        .photo-lead .photo-main { min-height: 360px; }
        .photo-lead .photo-copy { padding: 36px 32px; }
        .tour-item,
        .tour-item.reverse {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        .tour-item.reverse .tour-visual { order: 0; }
        .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .use-card:nth-child(2) { border-right: 0; }
        .use-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
        .map-layout { grid-template-columns: 1fr; }
        .map-frame { min-height: 380px; }
        .map-frame iframe { min-height: 380px; }
        .next-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .entry-grid { grid-template-columns: 1fr; gap: 40px; }
      }

      @media (max-width: 960px) {
        :root { --gutter: 24px; }
        .global-nav,
        .header-contact { display: none; }
        .menu-toggle { display: inline-flex; }
        .section { padding: 80px 0; }
        .entry-section { padding: 88px 0; }
        .page-hero-inner { padding: 88px var(--gutter) 72px; }
        .page-hero h1 { font-size: clamp(38px, 6.8vw, 60px); }
        .access-panel { padding: 26px 26px 24px; }
        .access-panel-address { font-size: 16px; }
      }

      @media (max-width: 720px) {
        .section { padding: 64px 0; }
        .entry-section { padding: 72px 0; }
        .page-hero-inner { padding: 72px var(--gutter) 56px; gap: 32px; }
        .page-hero h1 { font-size: 36px; line-height: 1.2; }
        .page-hero .lead { font-size: 14.5px; }
        .section-head h2 { font-size: 26px; }
        .access-panel { padding: 22px 20px 20px; }
        .access-panel-address { font-size: 15px; }
        .access-panel-list > div { padding: 12px 0; gap: 6px; }
        .access-panel-station-head { flex-direction: column; align-items: flex-start; gap: 4px; }
        .access-panel-walk { font-size: 12.5px; }
        .access-panel-walk strong { font-size: 14px; }
        .photo-lead .photo-main { min-height: 280px; }
        .photo-lead .photo-copy { padding: 28px 22px; }
        .photo-lead .photo-copy h3 { font-size: 22px; }
        .tour-item, .tour-item.reverse { padding: 24px 0; gap: 20px; }
        .tour-body h3 { font-size: 22px; }
        .use-grid { grid-template-columns: 1fr; }
        .use-card {
          border-right: 0;
          border-bottom: 1px solid var(--line);
          min-height: 0;
          padding: 26px 22px 24px;
        }
        .use-card:last-child { border-bottom: 0; }
        .map-info { padding: 28px 22px; }
        .map-info h3 { font-size: 20px; }
        .map-table > div { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
        .map-frame, .map-frame iframe { min-height: 320px; }
        .next-grid { grid-template-columns: 1fr; }
        .entry-panel { padding: 24px; }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 24px 28px;
        }
        .footer-brand { grid-column: 1 / -1; }
      }

      @media (max-width: 480px) {
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 8px; }
      }

      @media (prefers-reduced-motion: reduce) {
        .page-hero::before { animation: none; transform: scale(1); }
        .photo-lead:hover .photo-main img,
        .tour-item:hover .tour-visual img { transform: none; }
        .use-card,
        .next-card,
        .button .arrow,
        .next-card .cta .arrow-circle {
          transition: none;
        }
      }

/* Staging integration: keep the office page aligned with the square-edged site direction. */
body.page-office-mock main {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.page-office-mock {
  padding-top: 0;
}

body.page-office-mock .site-header {
  display: block;
  align-items: initial;
  justify-content: initial;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
}

body.page-office-mock .header-inner {
  width: 100%;
}

body.page-office-mock .page-hero {
  padding: 0;
}

body.page-office-mock .page-hero h1::after,
body.page-office-mock .section-head h2::after,
body.page-office-mock .split h2::after,
body.page-office-mock .entry-copy h2::after {
  content: none;
  display: none;
}

body.page-office-mock .page-hero + .section {
  padding-top: 110px;
}

.page-office-mock .page-hero,
.page-office-mock .page-hero::before,
.page-office-mock .page-hero::after,
.page-office-mock .access-panel,
.page-office-mock .photo-lead,
.page-office-mock .photo-main,
.page-office-mock .tour-visual,
.page-office-mock .use-card,
.page-office-mock .map-info,
.page-office-mock .map-frame,
.page-office-mock .next-card,
.page-office-mock .entry-panel,
.page-office-mock .button,
.page-office-mock .arrow-circle {
  border-radius: 0 !important;
}

@media (max-width: 1366px) {
  body.page-office-mock .page-hero + .section {
    padding-top: 96px;
  }
}

@media (max-width: 960px) {
  body.page-office-mock .page-hero + .section {
    padding-top: 80px;
  }
}

@media (max-width: 720px) {
  body.page-office-mock .page-hero + .section {
    padding-top: 64px;
  }

  body.page-office-mock .access-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
