:root {
  --purple: #9470e8;
  --purple-2: #9f9afc;
  --mint: #81cfb6;
  --yellow: #fbdc31;
  --ink: #111;
  --muted: #555;
  --line: #e5e5ea;
  --max: 1367px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Microsoft JhengHei", "Microsoft JhengHei UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
body.page-index::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--home-bg) center/cover no-repeat;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #000;
  transition: background .3s, box-shadow .3s;
}
.site-header.is-sticky {
  background: rgba(0, 0, 0, .77);
  box-shadow: 1px 1px 5px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 80%;
  margin: auto;
  min-height: 60px;
  padding: 10px 0 10px 210px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: padding .3s;
}
.site-header.is-sticky .header-inner { padding-top: 5px; padding-bottom: 5px; }
.brand {
  position: absolute;
  z-index: 123;
  top: -16px;
  left: 0;
  display: block;
  width: 350px;
  padding: 20px;
  transition: top .7s, width .3s, padding .3s;
}
.site-header.is-sticky .brand {
  top: -30px;
  width: 300px;
}
.brand img { width: 100%; }
.brand h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}
.main-nav > a,
.nav-dropdown > a {
  display: inline-block;
  height: 40px;
  padding: 0;
  margin: 0 25px;
  line-height: 40px;
}
.main-nav a { color: #fff; }
.main-nav a:hover { color: #987dfe; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  padding: 10px 0;
  background: rgba(0, 0, 0, .78);
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #fff;
}
.dropdown-menu a:hover { border-left: 10px solid #9370e7; }
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}
.floating-links a,
.floating-toggle {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--purple);
  color: #fff;
  font-size: 24px;
}
.nav-close { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background: #eee;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero > img:not(.hero-overlay) {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  object-fit: cover;
  animation: heroZoom 9s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.about-section {
  position: relative;
  z-index: 0;
  padding: 90px 0 35px;
  overflow: hidden;
  background: #fff;
}
.about-inner {
  max-width: var(--max);
  width: 90%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about-main { display: block; width: 35%; object-fit: cover; }
.about-copy { width: 60%; position: relative; }
.en-title {
  margin: 0 0 12px;
  font-size: 100px;
  line-height: 1;
  background: linear-gradient(to bottom, var(--purple-2), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-copy .en-title {
  margin: 0;
  font-weight: 400;
}
.about-copy h2,
.section-title h2,
.contact-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: .1em;
}
.about-copy h2 img,
.section-title h2 img,
.contact-card h2 img { width: 40px; animation: bob .5s infinite alternate linear; }
@keyframes bob {
  from { transform: translateY(-3px); }
  to { transform: translateY(3px); }
}
@keyframes rr {
  from { transform: translateX(0); }
  to { transform: translateX(5px); }
}
.about-copy h3 {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 24px;
  background: var(--purple);
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
}
.about-copy p {
  width: 81%;
  max-width: none;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.4;
  text-align: justify;
}
.line-cta {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 50px;
  color: var(--purple);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: .5s;
}
.line-cta img {
  width: 48px;
  margin-right: 10px;
}
.line-cta i { font-style: normal; }
.line-cta:hover {
  transform: translateY(-5px);
  filter: drop-shadow(2px 2px 3px rgba(148, 112, 232, .5));
}
.line-cta:hover img {
  animation: rr .2s linear alternate infinite;
}
.line-cta span {
  display: block;
  font-size: 30px;
}
.about-mark {
  display: block;
  width: auto;
  max-width: 220px;
  margin: -143px 0 0 auto;
}
.about-gallery {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.services {
  position: relative;
  background: #fff;
}
.section-title {
  width: 90%;
  margin: auto;
  padding: 120px 0 50px;
  text-align: center;
}
.section-title .en-title { font-size: 100px; }
.section-title h2 { justify-content: center; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: #000;
}
.service-card > img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  transition: .5s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0));
}
.service-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 40px;
  color: #fff;
  transition: .5s;
}
.service-overlay h3 {
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.8);
  color: var(--yellow);
  font-size: 20px;
}
.service-overlay h3 span {
  display: block;
  font-size: 50px;
  letter-spacing: .2em;
}
.service-overlay p {
  margin: 0 0 15px;
  font-size: 17px;
  line-height: 1.45;
  text-align: justify;
}
.service-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 0;
  overflow: hidden;
  transition: .3s;
}
.service-overlay a img { width: 28px; }
.service-card:hover::before { background: rgba(0,0,0,.78); }
.service-card:hover .service-overlay { inset: 0 0 0; display: flex; flex-direction: column; justify-content: center; }
.service-card:hover .service-overlay a { height: 34px; }
.service-card:hover > img { transform: scale(1.04); }

.contact-section {
  padding: 100px 0;
  background: #fff;
}
.contact-inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
}
.contact-photos {
  width: 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-photos img { width: 100%; }
.contact-photos img:first-child { grid-column: 1 / 3; }
.contact-card {
  width: 55%;
  padding: 50px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--purple);
}
.contact-card .en-title {
  font-size: 80px;
  background-image: linear-gradient(to bottom, var(--mint), var(--purple));
}
.contact-card h2 {
  align-items: flex-start;
  padding: 8px 20px;
  background: #e0e8eb;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}
.contact-links {
  margin-top: 26px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  margin-top: 20px;
  color: var(--purple);
  font-size: 20px;
  transition: filter .35s, transform .35s;
}
.contact-link .contact-icon {
  width: 58px;
  flex: 0 0 58px;
  transition: transform .2s;
}
.contact-link span { display: block; }
.contact-link em {
  display: block;
  font-style: normal;
  line-height: 1.25;
}
.contact-link strong {
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}
.contact-link .contact-arrow {
  margin-left: auto;
  width: 38px;
  opacity: 0;
  transition: .3s;
}
.contact-link:hover {
  filter: drop-shadow(2px 2px 3px rgba(148,112,232,.5));
  transform: translateX(4px);
}
.contact-link:hover .contact-icon { animation: wiggle .2s linear alternate infinite; }
.contact-link:hover .contact-arrow { opacity: 1; transform: translateX(8px); }
@keyframes wiggle {
  from { transform: rotate(-5deg); }
  to { transform: rotate(5deg); }
}

.sub-hero {
  display: flex;
  height: 1000px;
  padding: 0 10%;
  align-items: center;
  justify-content: space-between;
  background: var(--inner-banner-bg) top center/cover no-repeat, #f9f9f9;
  color: #666;
}
.sub-hero-art {
  width: 50%;
  height: 575px;
  background: transparent;
}
.sub-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.sub-hero h1 {
  width: 34%;
  margin: 0;
  color: #666;
  font-size: 30px;
  font-weight: 400;
  text-align: left;
}
.sub-hero h1::before {
  content: "CASE";
  display: block;
  margin-bottom: 40px;
  font-size: 120px;
  line-height: 1;
  background-image: linear-gradient(to bottom, #9f9afc 0%, #9470e8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.breadcrumb {
  max-width: 1180px;
  width: 90%;
  margin: 28px auto;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a::after {
  content: ">";
  margin: 0 10px;
  color: #999;
}
.case-list {
  max-width: 1180px;
  width: 90%;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-category {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.case-category figure { margin: 0; aspect-ratio: 4 / 3; }
.case-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}
.case-category h2 {
  margin: 0;
  padding: 20px;
  background: #fff;
  color: #666;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .15em;
  text-align: center;
  transition: color .3s;
}
.case-category:hover img { transform: scale(1.04); opacity: .86; }
.case-category:hover h2 { color: #9470e8; }

.album-info-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 10px;
}
.pic-list {
  column-count: 3;
  column-gap: 10px;
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.pic-list .item {
  width: 100%;
  break-inside: avoid;
  page-break-inside: avoid;
  padding: 0;
  margin: 0;
}
.pic-list .show-pic {
  height: auto;
  padding: 0;
  margin: 0;
  line-height: 0;
}
.pic-list .item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: opacity .3s;
}
.pic-list .item a:hover img { opacity: .86; }
.other-album { margin-top: 40px; }
.album-fixed-title { display: none; }
.other-album-choice {
  margin: 0;
  padding: 0;
}
.other-album-choice li {
  display: inline-block;
  margin: 0 7px 7px 0;
  padding: 7px 20px;
  border-radius: 18px;
  background: #9370e7;
  font-size: 15px;
}
.other-album-choice a { color: #fff; }

.footer {
  position: relative;
  z-index: 1;
  border-top: none;
  background: #111;
  color: #fff;
  padding: 50px 0 0;
  font-size: 14px;
}
.footer-center {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.footer-logo {
  display: inline-block;
  width: 280px;
  margin: 0 10px;
  vertical-align: top;
}
.footer-logo img {
  width: 100%;
  background: transparent;
  padding: 0;
}
.footer-info ul {
  display: inline-block;
  width: calc(100% - 310px);
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.footer-info li {
  display: block;
  padding: 10px;
}
.footer-info li p {
  margin: 0;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 1px;
}
.footer-info li p a { color: #fff; }
.footer-info li p::before { margin-right: 5px; }
.footer-info li p.line::before { content: "Line ID:"; }
.footer-info li p.add::before { content: "地址:"; }
.footer-menu { width: 100%; }
.footer-menu a {
  display: inline-block;
  margin: 0 5px 4px;
  padding: 10px 15px;
  border: 0;
  border-bottom: 1px #666 solid;
  border-radius: 20px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  transition: transform .5s, background .5s;
}
.footer-menu a:nth-child(1) { display: none; }
.footer-menu a:nth-child(2) { background-color: #00cde5; }
.footer-menu a:nth-child(3) { background-color: #fe709d; }
.footer-menu a:nth-child(4) { background-color: #bfa723; }
.footer-menu a:nth-child(5) { background-color: #9470e8; }
.footer-menu a:hover {
  color: #fff;
  transform: scale(1.1);
}
.copy {
  margin: 15px 0 0;
  padding: 7px 0;
  border: none;
  background: transparent;
  text-align: center;
  color: #fff;
  font-size: 13px;
}
.copy a { color: #fff; }
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.floating-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .35s, transform .35s;
}
.floating-actions:hover .floating-links,
.floating-actions.is-open .floating-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-links a {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  transition: transform .35s;
}
.floating-links a:hover { transform: scale(1.1); }
.floating-links .float-fb {
  background: #00cce4;
  font-size: 22px;
}
.floating-links .float-line {
  background: #fd709c;
  font-size: 11px;
}
.floating-toggle {
  border: 0;
  cursor: pointer;
  width: 46px;
  height: 46px;
  font-size: 24px;
}
.to-top {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 80;
  border: 0;
  background: #fff;
  color: #111;
  width: 50px;
  height: 50px;
  padding-top: 10px;
  border-radius: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
}
.to-top::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: 3px auto 2px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: rotate(45deg);
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-bottom-menu { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 56px 70px 44px;
  background: rgba(0,0,0,.78);
}
.lightbox[hidden] { display: none; }
.lightbox-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 52px;
  padding: 0 18px;
  background: rgba(20,20,20,.75);
  color: #fff;
}
.lightbox-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4f7d;
}
.lightbox.is-progressing .lightbox-progress {
  width: 100%;
  transition: width 3.5s linear;
}
.lightbox-count {
  margin-right: auto;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.lightbox-toolbar button,
.lightbox-arrow {
  border: 0;
  color: #fff;
  cursor: pointer;
}
.lightbox-toolbar button {
  background: transparent;
  font-size: 24px;
}
.lightbox-play {
  position: relative;
  width: 28px;
  height: 32px;
}
.lightbox-play::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}
.lightbox.is-playing .lightbox-play::before,
.lightbox.is-playing .lightbox-play::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 5px;
  height: 18px;
  background: #fff;
  border: 0;
}
.lightbox.is-playing .lightbox-play::before { left: 8px; }
.lightbox.is-playing .lightbox-play::after { left: 17px; }
.lightbox-stage {
  display: grid;
  place-items: center;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  background: #000;
  overflow: hidden;
}
.lightbox-image {
  max-width: min(720px, 82vw);
  max-height: calc(100vh - 110px);
  object-fit: contain;
  transform: translate(var(--pan-x, 0), var(--pan-y, 0)) scale(1);
  transform-origin: center;
  transition: transform .2s;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}
.lightbox.is-zoomed .lightbox-image {
  cursor: grab;
  transform: translate(var(--pan-x, 0), var(--pan-y, 0)) scale(2.15);
}
.lightbox.is-zoomed .lightbox-image:active {
  cursor: grabbing;
}
.lightbox.is-zoomed {
  padding: 0;
}
.lightbox.is-zoomed .lightbox-stage {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
}
.lightbox.is-zoomed .lightbox-image {
  max-width: 100vw;
  max-height: 100vh;
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,.65);
  font-size: 26px;
  transform: translateY(-50%);
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-arrow:disabled {
  opacity: .25;
  cursor: default;
}
.lightbox-thumbs {
  position: fixed;
  top: 52px;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: none;
  width: 110px;
  padding: 5px;
  overflow-y: auto;
  background: #fff;
}
.lightbox.is-grid-open .lightbox-thumbs { display: block; }
.lightbox-thumb {
  display: block;
  width: 100%;
  margin: 0 0 5px;
  padding: 0;
  border: 3px solid transparent;
  background: #fff;
  cursor: pointer;
}
.lightbox-thumb.is-active { border-color: #ff4f5f; }
.lightbox-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.lightbox.is-grid-open .lightbox-stage {
  transform: translateX(-55px);
}
.lightbox.is-grid-open .lightbox-next {
  right: 124px;
}

@media (max-width: 1300px) {
  .en-title,
  .section-title .en-title { font-size: 60px; }
  .contact-card .en-title { font-size: 58px; }
  .service-overlay { padding: 24px; }
}
@media (max-width: 1024px) {
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, .72);
  }
  .header-inner {
    max-width: 100%;
    min-height: 88px;
    padding: 0;
  }
  .site-header.is-sticky .header-inner { padding: 0; }
  .brand {
    top: 18px;
    left: 50%;
    width: 88px;
    padding: 0;
    transform: translateX(-50%);
  }
  .site-header.is-sticky .brand {
    top: 8px;
    width: 78px;
  }
  .nav-toggle {
    position: absolute;
    top: 26px;
    left: 28px;
    display: block;
    width: 52px;
    height: 42px;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 18px;
  }
  .nav-toggle::after {
    content: "MENU";
    display: block;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
    width: min(280px, 82vw);
    max-height: calc(100vh - 14px);
    overflow-y: auto;
    padding: 0;
    background: rgba(0, 0, 0, .95);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }
  .main-nav.is-open { display: grid; gap: 0; }
  .nav-close {
    display: block;
    height: 35px;
    padding: 0 12px;
    border: 0;
    background: var(--purple);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 35px;
    text-align: right;
    cursor: pointer;
  }
  .main-nav > a,
  .nav-dropdown > a {
    height: auto;
    margin: 0;
    padding: 28px 34px;
    display: block;
    border-bottom: 1px solid #9470e8;
    text-align: left;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
  }
  .nav-dropdown > a {
    position: relative;
    padding-right: 66px;
  }
  .nav-dropdown > a::after {
    content: "+";
    position: absolute;
    right: 34px;
    top: 50%;
    color: var(--purple);
    font-size: 30px;
    line-height: 1;
    transform: translateY(-50%);
  }
  .nav-dropdown.is-open > a::after { content: "×"; }
  .dropdown-menu {
    position: static;
    transform: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    width: auto;
    box-shadow: none;
    padding: 0 0 18px;
    background: transparent;
  }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .nav-dropdown.is-open > a { border-bottom-color: transparent; }
  .nav-dropdown.is-open + a { border-top: 1px solid #9470e8; }
  .dropdown-menu a {
    padding: 10px 34px;
    border: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .about-inner { flex-direction: column-reverse; }
  .about-main, .about-copy { width: 100%; }
  .about-main { aspect-ratio: 2 / 1; width: 100%; }
  .about-copy { margin-bottom: 30px; }
  .about-copy p { width: 100%; max-width: 100%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card > img { min-height: 320px; }
  .contact-section { padding: 70px 0; }
  .contact-inner { flex-direction: column-reverse; }
  .contact-photos, .contact-card { width: 100%; }
  .contact-card { margin-bottom: 30px; padding: 30px; }
  .pic-list { column-count: 2; }
  .footer-info {
    display: block;
    text-align: center;
  }
  .footer-logo {
    width: 60%;
    margin: 0 auto;
  }
  .footer-info ul {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .site-header { height: 80px; }
  .page-index .site-header:not(.is-sticky) {
    height: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero {
    padding-top: 0;
  }
  .hero > img:not(.hero-overlay) {
    min-height: 0;
    height: auto;
    width: 200%;
    max-width: none;
    margin-left: -64%;
  }
  .hero-overlay {
    width: 200%;
    max-width: none;
    height: auto;
    margin-left: 0;
    object-fit: contain;
    object-position: left top;
  }
  .about-section, .section-title, .contact-section { padding: 50px 0; }
  .about-inner { width: 86%; }
  .en-title,
  .section-title .en-title,
  .contact-card .en-title {
    font-size: 36px;
    text-align: center;
  }
  .about-copy .en-title {
    font-size: 36px;
    text-align: center;
  }
  .about-copy h2,
  .section-title h2,
  .contact-card h2 {
    justify-content: center;
    font-size: 18px;
    text-align: center;
  }
  .about-copy h2 img,
  .section-title h2 img,
  .contact-card h2 img { width: 30px; }
  .about-copy h3,
  .contact-card h2 { font-size: 18px; }
  .about-copy h3 {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
    text-align: left;
  }
  .about-copy p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }
  .line-cta {
    justify-content: center;
    margin: 20px auto 0;
    font-size: 16px;
  }
  .line-cta img {
    width: 40px;
    margin-right: 5px;
  }
  .line-cta span { font-size: 24px; }
  .about-mark { margin: 20px auto 0; }
  .about-gallery { margin-top: 30px; }
  .about-main { aspect-ratio: auto; }
  .case-list { grid-template-columns: repeat(2, 1fr); }
  .case-sidebar { grid-template-columns: 1fr; }
  .pic-list { column-count: 1; }
  .pic-list .item {
    width: 96%;
    margin: 10px 2%;
  }
  .service-overlay {
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  .service-overlay h3 { text-align: center; }
  .service-overlay h3 span { font-size: 32px; }
  .service-overlay p { font-size: 16px; }
  .service-overlay a { height: 34px; }
  .service-overlay a {
    align-self: center;
    justify-content: center;
    text-align: center;
  }
  .service-card::before { background: rgba(0,0,0,.48); }
  .contact-card {
    padding: 30px 15px;
    border-left: 1px solid var(--purple);
  }
  .contact-link {
    justify-content: space-between;
    gap: 10px;
    max-width: 260px;
    width: 100%;
    margin: 20px auto 0;
    min-height: 68px;
    font-size: 16px;
  }
  .contact-link .contact-icon {
    width: 40px;
    flex-basis: 40px;
  }
  .contact-link strong { font-size: 16px; }
  .contact-link .contact-arrow {
    width: 30px;
    opacity: 1;
  }
  .mobile-bottom-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: block;
    height: 60px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 -4px 18px rgba(0,0,0,.15);
    text-align: center;
  }
  .mobile-bottom-menu a {
    display: grid;
    place-items: center;
    width: 80px;
    height: 60px;
    margin: auto;
    color: #555;
    font-size: 12px;
  }
  .mobile-bottom-menu span {
    display: block;
    font-size: 24px;
    line-height: 1;
  }
  .mobile-bottom-menu em {
    display: block;
    font-style: normal;
    line-height: 1;
  }
  .lightbox {
    padding: 52px 0 44px;
    align-items: center;
  }
  .lightbox-toolbar {
    left: 0;
    right: 0;
    width: 100%;
    height: 52px;
    gap: 20px;
    padding: 0 12px;
  }
  .lightbox-stage {
    width: 72vw;
    max-height: calc(100vh - 96px);
  }
  .lightbox-image {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 150px);
  }
  .lightbox.is-zoomed {
    padding: 0;
  }
  .lightbox.is-zoomed .lightbox-toolbar {
    left: 0;
    right: 0;
    width: 100%;
  }
  .lightbox.is-zoomed .lightbox-stage {
    width: 100vw;
    height: 100vh;
    max-height: none;
  }
  .lightbox.is-zoomed .lightbox-image {
    width: auto;
    max-width: 100vw;
    max-height: 100vh;
  }
  .lightbox-thumbs {
    top: 52px;
    width: 110px;
  }
  .lightbox.is-grid-open .lightbox-stage {
    transform: translateX(-55px);
  }
  .lightbox-prev { left: 8%; }
  .lightbox-next { right: 8%; }
  .lightbox.is-grid-open .lightbox-next {
    right: 118px;
  }
  .footer { padding-bottom: 60px; }
  .to-top {
    bottom: 78px;
    z-index: 90;
  }
  .floating-actions { bottom: 78px; }
  .sub-hero {
    height: 560px;
    padding: 120px 5% 70px;
    flex-direction: column-reverse;
  }
  .sub-hero-art {
    display: grid;
    place-items: center;
    width: 100%;
    height: 165px;
  }
  .sub-hero-art img {
    object-position: center center;
  }
  .sub-hero h1 {
    width: auto;
    font-size: 30px;
  }
  .sub-hero h1::before {
    margin-bottom: 20px;
    font-size: 80px;
  }
}
@media (max-width: 430px) {
  .about-gallery { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-photos { grid-template-columns: 1fr; }
  .contact-photos img:first-child { grid-column: auto; }
  .contact-card h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 10px;
  }
}
