:root {
  --bg: #2f3032;
  --bg-deep: #151517;
  --bg-soft: #f4f5f8;
  --text: #282a2f;
  --muted: #6e7480;
  --line: #d8dbe1;
  --white: #fff;
  --pink: #e4007f;
  --pink-dark: #a90069;
  --shadow: 0 18px 50px rgba(0, 0, 0, .24);
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.container.compact {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 34px;
  background: rgba(47, 48, 50, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.brand {
  display: block;
  width: 190px;
}

.brand img {
  width: 100%;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: 0;
  scrollbar-width: none;
}

.primary-nav a {
  transition: color .2s ease;
}

.primary-nav::-webkit-scrollbar,
.header-actions::-webkit-scrollbar {
  display: none;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  scrollbar-width: none;
}

.pill-button,
.ghost-button,
.solid-button,
.submit-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, .82);
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 4px 0 rgba(0, 0, 0, .18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pill-button:hover,
.ghost-button:hover,
.solid-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  border-color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.solid-button {
  border-color: var(--pink);
  background: var(--pink);
}

.solid-button:hover {
  background: var(--pink-dark);
}

.icon-link {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  transition: transform .2s ease, background .2s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.icon-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.section-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 45;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.section-dots a {
  width: 12px;
  height: 12px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}

.section-dots a.is-active {
  background: var(--pink);
  transform: scale(1.2);
}

.section-observed {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.feature-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-bg {
  background-image: url("../images/hero.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(12, 12, 14, .18), rgba(12, 12, 14, .72)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 4px);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin-top: var(--header-height);
  text-align: center;
}

.hero-logo {
  width: min(900px, 92vw);
  margin-inline: auto;
  opacity: .9;
  mix-blend-mode: screen;
}

.hero-lead {
  width: min(680px, 100%);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.link-band,
.information,
.gallery,
.contact {
  background: var(--bg-soft);
}

.link-band {
  padding: 92px 0 78px;
  text-align: center;
  border-top: 6px solid var(--white);
}

.eyebrow {
  margin: 0;
  color: var(--pink);
  font-size: clamp(32px, 6vw, 66px);
  font-weight: 300;
  line-height: 1;
}

.link-band h1 {
  margin: 16px 0 28px;
  color: var(--bg);
  font-size: clamp(34px, 7vw, 82px);
  line-height: 1;
  font-weight: 700;
}

.link-panel {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.link-panel a,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
  transition: color .2s ease, background .2s ease;
}

.link-panel a:hover,
.text-link:hover {
  color: var(--white);
  background: var(--pink);
}

.information {
  padding: 78px 0 110px;
}

.section-label {
  margin: 0 0 32px;
  color: rgba(228, 0, 127, .42);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 200;
  line-height: 1;
  text-align: center;
}

.news-list {
  margin: 0;
}

.news-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  justify-content: center;
  max-width: 520px;
  margin-inline: auto;
  color: #34373c;
}

.news-list dt,
.news-list dd {
  margin: 0;
}

.about,
.service,
.address {
  background: var(--bg);
  color: var(--white);
}

.about {
  padding: 120px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: center;
}

.about .section-label,
.service .section-label,
.address .section-label,
.contact .section-label {
  text-align: left;
}

.about-copy h2,
.service h2,
.address-copy h2,
.contact-heading h2,
.gallery h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.32;
  font-weight: 300;
}

.about-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, .78);
}

.about-image {
  margin: 0;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service {
  padding: 120px 0;
}

.service h2 {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.service-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 300px;
  background: #f4f5f8;
  color: var(--text);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 34px;
}

.service-card span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
}

.service-card h3 {
  margin: 8px 0 18px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  font-weight: 300;
}

.service-card p {
  margin: 0;
  color: #4d535c;
  font-size: 15px;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--pink);
  border-bottom: 1px solid currentColor;
}

.feature {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.feature-image {
  background-image: linear-gradient(rgba(0, 0, 0, .22), rgba(0, 0, 0, .68)), url("../images/feature-drive.jpg");
}

.feature-copy {
  position: relative;
  padding: 0 0 58px;
}

.feature-copy p {
  margin: 0;
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 200;
  color: rgba(255, 255, 255, .82);
}

.gallery {
  padding: 110px 0;
}

.gallery .section-label,
.gallery h2 {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-note {
  margin: 42px 0 0;
  text-align: center;
  font-size: 18px;
}

.address {
  padding: 120px 0;
}

.address-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 70px;
  align-items: center;
}

.address-copy h2 span {
  font-size: .42em;
  color: rgba(255, 255, 255, .7);
}

address {
  margin: 0 0 30px;
  font-style: normal;
  color: rgba(255, 255, 255, .82);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
}

.contact-list dt,
.contact-list dd {
  margin: 0;
}

.contact-list dt {
  color: var(--pink);
}

.contact-list dd {
  color: rgba(255, 255, 255, .82);
}

.map-card {
  margin: 0;
  min-height: 420px;
  background: #202124;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.25);
}

.contact {
  padding: 110px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 70px;
}

.contact-heading p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #363a41;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #9499a3;
  background: transparent;
  color: #22252a;
  padding: 12px 14px;
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(228, 0, 127, .12);
}

.file-label input {
  border-style: dashed;
  background: rgba(255, 255, 255, .5);
}

.submit-button {
  width: min(320px, 100%);
  justify-self: center;
  border-radius: 0;
  border-color: var(--bg);
  background: var(--bg);
  color: var(--white);
  box-shadow: none;
}

.submit-button:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--pink-dark);
  text-align: center;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .68);
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner img {
  width: 170px;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .9);
  padding: 58px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1000px);
  max-height: calc(100svh - 116px);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 76px;
  transform: translateY(-50%);
  font-size: 48px;
  line-height: 1;
}

.lightbox-arrow.prev {
  left: 26px;
}

.lightbox-arrow.next {
  right: 26px;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 120px;
  }

  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .pill-button {
    padding-inline: 18px;
  }

  .icon-link {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 900px) {
  .about-layout,
  .address-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 176px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    width: 164px;
  }

  .header-actions {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
  }

  .primary-nav {
    gap: 10px;
    font-size: 10px;
  }

  .pill-button,
  .ghost-button,
  .solid-button {
    min-height: 40px;
    padding: 8px 16px;
    white-space: nowrap;
  }

  .icon-link {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .icon-link img {
    width: 26px;
    height: 26px;
  }

  .section-dots {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-logo {
    width: min(620px, 96vw);
  }

  .hero-lead {
    font-size: 15px;
  }

  .link-band,
  .information,
  .about,
  .service,
  .gallery,
  .address,
  .contact {
    padding-block: 76px;
  }

  .section-label {
    margin-bottom: 22px;
  }

  .news-list div,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 16 / 10;
  }

  .service-card div {
    padding: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 54px 18px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

@media (max-width: 420px) {
  .container,
  .container.compact {
    width: min(100% - 28px, 1120px);
  }

  .link-panel {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
