    /* ===== Reset & Base ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 300;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.9;
      letter-spacing: 0.04em;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ===== Typography ===== */
    .serif { font-family: "Noto Serif JP", serif; }
    .heading-xl {
      font-family: "Noto Serif JP", serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      letter-spacing: 0.08em;
      line-height: 1.6;
    }
    .heading-lg {
      font-family: "Noto Serif JP", serif;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 400;
      letter-spacing: 0.06em;
      line-height: 1.6;
    }
    .heading-md {
      font-family: "Noto Serif JP", serif;
      font-size: clamp(1.1rem, 1.8vw, 1.4rem);
      font-weight: 400;
      letter-spacing: 0.05em;
    }
    .body-text {
      font-size: 0.95rem;
      line-height: 2.2;
      color: #4a4a4a;
    }
    .label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: #999;
      text-transform: uppercase;
    }

    /* ===== Layout ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .section {
      padding: 120px 0;
    }
    .section--large {
      padding: 160px 0;
    }

    /* ===== Header ===== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: background 0.3s;
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 60px;
    }
    .header__logo {
      display: block;
      line-height: 0;
    }
    .header__logo img {
      height: 32px;
      width: auto;
    }
    .header__nav { display: flex; gap: 36px; align-items: center; }
    .header__nav a {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      color: #666;
      transition: color 0.3s;
    }
    .header__nav a:hover { color: #1a1a1a; }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero__image {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1487530811176-3780de880c2d?w=1800&q=80') center/cover no-repeat;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.5) 100%
      );
    }
    .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
    }
    .hero__logo {
      margin-bottom: 32px;
    }
    .hero__logo img {
      width: clamp(140px, 22vw, 200px);
      height: auto;
      margin: 0 auto;
      opacity: 0.92;
    }
    .hero__title {
      font-family: "Noto Serif JP", serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 400;
      letter-spacing: 0.12em;
      line-height: 1.7;
      margin-bottom: 32px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    }
    .hero__subtitle {
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      line-height: 2;
      opacity: 0.9;
    }
    .hero__scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: #fff;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      opacity: 0.7;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: #fff;
      opacity: 0.5;
    }

    /* ===== Concept ===== */
    .concept { text-align: center; padding-bottom: 120px; }
    .concept__label { margin-bottom: 24px; }
    .concept__title { margin-bottom: 48px; }
    .concept__text {
      max-width: 640px;
      margin: 0 auto;
      font-size: 0.95rem;
      line-height: 2.4;
      color: #555;
    }

    /* ===== Full-width Image Band ===== */
    .image-band {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      overflow: hidden;
    }
    .image-band__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .image-band__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.3) 100%
      );
    }
    .image-band__text {
      position: absolute;
      bottom: 60px;
      left: 60px;
      color: #fff;
      z-index: 2;
    }
    .image-band__text h3 {
      font-family: "Noto Serif JP", serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-shadow: 0 2px 16px rgba(0,0,0,0.2);
    }
    .image-band__text p {
      margin-top: 12px;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      opacity: 0.85;
    }

    /* ===== Subscription ===== */
    .subscription { background: #faf9f7; padding: 160px 0; }
    .subscription__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .subscription__content .label { margin-bottom: 20px; }
    .subscription__content .heading-lg { margin-bottom: 32px; }
    .subscription__content .body-text { margin-bottom: 48px; }
    .subscription__points {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-bottom: 40px;
    }
    .subscription__point {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .subscription__point-num {
      font-family: "Noto Serif JP", serif;
      font-size: 1.4rem;
      font-weight: 300;
      color: #bbb;
      min-width: 36px;
      line-height: 1.4;
    }
    .subscription__point h4 {
      font-family: "Noto Serif JP", serif;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .subscription__point p {
      font-size: 0.85rem;
      color: #777;
      line-height: 1.8;
    }
    .subscription__note {
      font-size: 0.8rem;
      color: #999;
      margin-bottom: 32px;
    }
    .subscription__button {
      display: inline-block;
      font-family: "Noto Serif JP", serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      padding: 16px 48px;
      border: 1px solid #1a1a1a;
      color: #1a1a1a;
      transition: all 0.3s;
    }
    .subscription__button:hover {
      background: #1a1a1a;
      color: #fff;
    }
    .subscription__image {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .subscription__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ===== Spatial ===== */
    .spatial { overflow: hidden; padding-top: 120px; }
    .spatial__header {
      text-align: center;
      margin-bottom: 72px;
    }
    .spatial__header .label { margin-bottom: 20px; }
    .spatial__header .heading-lg { margin-bottom: 24px; }
    .spatial__header-text {
      max-width: 560px;
      margin: 0 auto;
      font-size: 0.9rem;
      color: #777;
      line-height: 2.2;
    }
    .spatial__mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 320px 280px;
      gap: 12px;
    }
    .spatial__mosaic-item {
      position: relative;
      overflow: hidden;
    }
    .spatial__mosaic-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    .spatial__mosaic-item:hover img {
      transform: scale(1.03);
    }
    .spatial__mosaic-item--wide {
      grid-column: span 2;
    }
    .spatial__mosaic-item--tall {
      grid-row: span 2;
    }
    .spatial__mosaic-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.5s;
    }
    .spatial__mosaic-item:hover .spatial__mosaic-overlay { opacity: 1; }
    .spatial__mosaic-caption {
      position: absolute;
      bottom: 20px;
      left: 24px;
      color: #fff;
      font-family: "Noto Serif JP", serif;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      opacity: 0;
      transform: translateY(6px);
      transition: all 0.5s;
    }
    .spatial__mosaic-item:hover .spatial__mosaic-caption {
      opacity: 1;
      transform: translateY(0);
    }
    .spatial__bottom {
      margin-top: 12px;
      padding: 100px 40px;
      background: #f5f4f1;
      text-align: center;
    }
    .spatial__bottom-text {
      max-width: 640px;
      margin: 0 auto;
    }
    .spatial__bottom-text .label { margin-bottom: 20px; }
    .spatial__bottom-text .heading-md { margin-bottom: 24px; }
    .spatial__bottom-text .body-text {
      max-width: 520px;
      margin: 0 auto;
    }

    /* ===== Gallery Grid ===== */
    .gallery__header {
      text-align: center;
      margin-bottom: 64px;
    }
    .gallery__header .label { margin-bottom: 20px; }
    .gallery__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .gallery__item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
    }
    .gallery__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .gallery__item:hover img {
      transform: scale(1.04);
    }
    .gallery__item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .gallery__item:hover .gallery__item-overlay { opacity: 1; }
    .gallery__item-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      color: #fff;
      font-family: "Noto Serif JP", serif;
      font-size: 1rem;
      letter-spacing: 0.06em;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.4s;
    }
    .gallery__item:hover .gallery__item-caption {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== Features (2-col) ===== */
    .features__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
    }
    .features__row--reverse .features__image { order: 2; }
    .features__row--reverse .features__text { order: 1; }
    .features__image {
      position: relative;
      min-height: 500px;
      overflow: hidden;
    }
    .features__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .features__text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 80px;
    }
    .features__text .label { margin-bottom: 20px; }
    .features__text .heading-lg { margin-bottom: 32px; }
    .features__text .body-text { max-width: 440px; }

    /* ===== Service List ===== */
    .services { text-align: center; }
    .services__header { margin-bottom: 72px; }
    .services__header .label { margin-bottom: 20px; }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px 40px;
    }
    .services__item { text-align: center; }
    .services__icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      border: 1px solid #ddd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .services__icon svg {
      width: 24px;
      height: 24px;
      stroke: #1a1a1a;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .services__item h4 {
      font-family: "Noto Serif JP", serif;
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .services__item p {
      font-size: 0.85rem;
      line-height: 2;
      color: #777;
    }

    /* ===== Shop Info ===== */
    .shop-info__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .shop-info__image {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .shop-info__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .shop-info__content .label { margin-bottom: 20px; }
    .shop-info__content .heading-lg { margin-bottom: 40px; }
    .shop-info__details {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .shop-info__row {
      display: flex;
      gap: 24px;
      font-size: 0.9rem;
    }
    .shop-info__row dt {
      min-width: 100px;
      color: #999;
      font-weight: 400;
    }
    .shop-info__row dd { color: #444; }
    .divider {
      width: 100%;
      height: 1px;
      background: #e8e8e8;
      margin: 8px 0;
    }

    /* ===== Company ===== */
    .company { background: #faf9f7; }
    .company__inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .company__inner .label { margin-bottom: 20px; }
    .company__inner .heading-lg { margin-bottom: 56px; }
    .company__table {
      width: 100%;
      text-align: left;
      border-collapse: collapse;
    }
    .company__table tr {
      border-bottom: 1px solid #e5e3df;
    }
    .company__table th {
      padding: 20px 24px;
      font-weight: 400;
      font-size: 0.85rem;
      color: #999;
      width: 160px;
      vertical-align: top;
    }
    .company__table td {
      padding: 20px 24px;
      font-size: 0.9rem;
      color: #444;
      line-height: 1.9;
    }

    /* ===== Contact ===== */
    .contact { text-align: center; }
    .contact__inner { max-width: 600px; margin: 0 auto; }
    .contact__inner .label { margin-bottom: 20px; }
    .contact__inner .heading-lg { margin-bottom: 32px; }
    .contact__text {
      font-size: 0.9rem;
      color: #777;
      line-height: 2;
      margin-bottom: 48px;
    }
    .contact__form {
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label {
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      color: #666;
    }
    .form-group label .required {
      color: #c17c74;
      font-size: 0.7rem;
      margin-left: 6px;
    }
    .form-group label .optional {
      color: #aaa;
      font-size: 0.7rem;
      margin-left: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: "Noto Sans JP", sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      padding: 14px 16px;
      border: 1px solid #ddd;
      background: #fff;
      color: #1a1a1a;
      letter-spacing: 0.04em;
      transition: border-color 0.3s;
      outline: none;
      width: 100%;
    }
    .form-group select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
      background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      color: #444;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #bbb;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #999;
    }
    .form-group textarea { resize: vertical; min-height: 160px; line-height: 1.9; }
    .form-group input[aria-invalid="true"],
    .form-group select[aria-invalid="true"],
    .form-group textarea[aria-invalid="true"] {
      border-color: #c17c74;
    }
    .form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .contact__submit {
      display: inline-block;
      font-family: "Noto Serif JP", serif;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      padding: 18px 64px;
      border: 1px solid #1a1a1a;
      background: transparent;
      color: #1a1a1a;
      cursor: pointer;
      transition: all 0.3s;
      align-self: center;
      margin-top: 8px;
    }
    .contact__submit:hover {
      background: #1a1a1a;
      color: #fff;
    }
    .contact__submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .contact__submit.is-loading {
      opacity: 0.7;
      cursor: wait;
    }
    .contact__message {
      text-align: center;
      font-size: 0.85rem;
      padding: 16px;
      margin-top: 8px;
      display: none;
    }
    .contact__message--success {
      display: block;
      color: #5a8a6a;
      background: #f0f7f2;
      border: 1px solid #d4e8da;
    }
    .contact__message--error {
      display: block;
      color: #a05050;
      background: #fdf2f2;
      border: 1px solid #e8d4d4;
    }

    /* ===== Footer ===== */
    .footer {
      background: #1a1a1a;
      color: #fff;
      padding: 80px 0 40px;
    }
    .footer__inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .footer__logo {
      margin-bottom: 20px;
      line-height: 0;
    }
    .footer__logo img {
      height: 36px;
      width: auto;
    }
    .footer__address {
      font-size: 0.8rem;
      line-height: 2;
      color: #888;
    }
    .footer__nav { display: flex; gap: 32px; }
    .footer__nav a {
      font-size: 0.8rem;
      color: #888;
      letter-spacing: 0.06em;
      transition: color 0.3s;
    }
    .footer__nav a:hover { color: #fff; }
    .footer__copy {
      text-align: center;
      font-size: 0.7rem;
      color: #555;
      margin-top: 60px;
      padding-top: 32px;
      border-top: 1px solid #333;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 40px;
      padding-right: 40px;
    }

    /* ===== Fade-in Animation ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.15s; }
    .fade-in-delay-2 { transition-delay: 0.3s; }

    /* ===== Responsive ===== */
    @media (max-width: 900px) {
      .header__nav { display: none; }
      .header__inner { padding: 16px 24px; }
      .header__logo img { height: 26px; }
      .container { padding: 0 24px; }
      .section { padding: 80px 0; }
      .section--large { padding: 100px 0; }
      .gallery__grid { grid-template-columns: repeat(2, 1fr); }
      .features__row { grid-template-columns: 1fr; }
      .features__row--reverse .features__image { order: 0; }
      .features__row--reverse .features__text { order: 0; }
      .features__image { min-height: 300px; }
      .features__text { padding: 48px 24px; }
      .services__grid { grid-template-columns: repeat(2, 1fr); }
      .subscription__inner { grid-template-columns: 1fr; gap: 40px; }
      .spatial__mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; }
      .spatial__mosaic-item--tall { grid-row: span 1; }
      .spatial__bottom { padding: 64px 24px; }
      .subscription__image { aspect-ratio: 3/2; }
      .shop-info__inner { grid-template-columns: 1fr; gap: 40px; }
      .footer__inner { flex-direction: column; gap: 32px; }
      .image-band__text { left: 24px; bottom: 32px; }
    }
    @media (max-width: 600px) {
      .gallery__grid { grid-template-columns: 1fr; }
      .services__grid { grid-template-columns: 1fr; }
    }

/* ===== Office Page ===== */
.office-page .heading-xl { font-size: clamp(2rem, 4.6vw, 4rem); }
.office-page .heading-lg { font-size: clamp(1.45rem, 2.8vw, 2.3rem); }
.office-page .heading-md { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.office-page .body-text { color: #555; }
.office-page .header__nav { gap: 32px; }
.office-page main .section { padding: 130px 0; }

.office-hero {
  min-height: 720px;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  background: #faf9f7;
}
.office-hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.office-hero__content .label { margin-bottom: 24px; }
.office-hero__content .heading-xl { margin-bottom: 32px; font-size: 48px; }
.office-hero__content .body-text { max-width: 560px; margin-bottom: 40px; }
.office-hero__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.office-hero__image img,
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.button {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 18px 52px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  transition: all 0.3s;
}
.button:hover {
  background: #1a1a1a;
  color: #fff;
}
.button--light {
  border-color: #fff;
  color: #fff;
}
.button--light:hover {
  background: #fff;
  color: #1a1a1a;
}
.section__header {
  text-align: center;
  margin-bottom: 72px;
}
.section__header .label { margin-bottom: 18px; }
.section__header .heading-lg { margin-bottom: 24px; }
.section__header .body-text {
  max-width: 620px;
  margin: 0 auto;
}
.service-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  padding: 44px 36px;
  background: #fff;
  border: 1px solid #e8e4de;
}
.service-card__num {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #c8bdb1;
  margin-bottom: 28px;
}
.service-card .heading-md { margin-bottom: 20px; }
.cases { background: #faf9f7; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eee;
}
.case-card__caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  z-index: 2;
}
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%);
}
.contact-cta {
  position: relative;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  background: #1a1a1a;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1487530811176-3780de880c2d?w=1600&q=80") center/cover no-repeat;
  opacity: 0.28;
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact-cta .label {
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.contact-cta .heading-lg { margin-bottom: 24px; }
.contact-cta .body-text {
  color: rgba(255,255,255,0.86);
  margin-bottom: 40px;
}
.office-page .footer {
  padding: 56px 0 32px;
  border-top: 1px solid #333;
}
.office-page .footer__inner { gap: 32px; }
.office-page .footer__nav {
  gap: 28px;
  flex-wrap: wrap;
}
.office-page .footer__copy {
  margin-top: 48px;
  padding-top: 28px;
}

@media (max-width: 900px) {
  .office-page main .section { padding: 90px 0; }
  .office-hero { min-height: auto; padding: 130px 0 80px; }
  .office-hero__inner,
  .service-flow,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .office-hero__inner { gap: 44px; }
  .office-hero__image,
  .case-card {
    aspect-ratio: 3/2;
  }
}
