/* Base */
:root {
  --color-bg: #fffdf9;
  --color-bg-soft: #fcf7f1;
  --color-bg-pink: #fff5f3;
  --color-text: #553f34;
  --color-muted: #806c61;
  --color-pink: #ee8f91;
  --color-pink-dark: #df7d80;
  --color-pink-light: #f8d4d0;
  --color-beige: #d3ad82;
  --color-line: #eadfd5;
  --color-white: #ffffff;
  --shadow-soft: 0 1.2rem 3.5rem rgba(115, 81, 58, 0.1);
  --radius-small: 1.4rem;
  --radius-medium: 2.4rem;
  --radius-pill: 999rem;
  --content-width: 128rem;
  --header-height: 9rem;
  --safe-space: 4%;
  --transition: 220ms ease;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  scroll-padding-top: var(--header-height);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.content-shell {
  width: min(calc(100% - (var(--safe-space) * 2)), var(--content-width));
  margin-inline: auto;
}

.section {
  padding-block: 5.5rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 1rem 1.6rem;
  transform: translateY(-200%);
  border-radius: var(--radius-small);
  background: var(--color-text);
  color: var(--color-white);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 3rem;
  border: 0.2rem solid var(--color-pink);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f29c9d, #eb8286);
  box-shadow: 0 1rem 2rem rgba(226, 119, 123, 0.23);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, var(--color-pink-dark), #e66f74);
  box-shadow: 0 1.4rem 2.6rem rgba(226, 119, 123, 0.3);
  transform: translateY(-0.2rem);
  outline: none;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 0.3rem solid rgba(211, 173, 130, 0.65);
  outline-offset: 0.3rem;
}

.button-small {
  min-height: 4.8rem;
  padding-inline: 2.2rem;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 0.1rem solid rgba(234, 223, 213, 0.55);
  background: rgba(255, 253, 249, 0.93);
  backdrop-filter: blur(1.4rem);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
}

.brand-paw {
  width: 4.6rem;
  height: 4.6rem;
  fill: #d99d89;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 2.5rem;
}

.brand-subtitle {
  margin-top: 0.35rem;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 1.65vw, 2.8rem);
}

.global-nav li a,
.footer-nav a {
  position: relative;
  white-space: nowrap;
}

.global-nav li a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 0.15rem;
  transform: scaleX(0);
  background: var(--color-pink);
  content: "";
  transition: transform var(--transition);
}

.global-nav li a:hover::after,
.global-nav li a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(244, 203, 198, 0.2), transparent 28%),
    linear-gradient(90deg, #fffaf5 0 45%, #fbf7f0 45% 100%);
}

.hero-inner {
  display: grid;
  height: 52rem;
  grid-template-columns: 43% 57%;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 5rem clamp(1rem, 4vw, 6rem) 5rem 8%;
}

.hero-ornament {
  display: flex;
  max-width: 30rem;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--color-beige);
}

.hero-ornament span {
  width: 100%;
  height: 0.1rem;
  background: currentColor;
}

.hero-ornament svg {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-eyebrow {
  margin-bottom: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(4rem, 3.6vw, 5.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-japanese {
  margin-top: 0.7rem;
  font-size: 2.2rem;
  letter-spacing: 0.16em;
}

.hero-lead {
  margin-block: 3rem;
  font-size: 2rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.hero-image-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(90deg, #fffaf5, transparent);
  content: "";
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.floating-paw {
  position: absolute;
  z-index: 2;
  color: rgba(238, 143, 145, 0.34);
}

.floating-paw svg {
  width: 4rem;
  height: 4rem;
  fill: currentColor;
}

.paw-one {
  top: 7%;
  right: 8%;
  transform: rotate(18deg);
}

.paw-two {
  right: 3%;
  bottom: 7%;
  transform: rotate(-12deg);
}

/* Section headings */
.section-heading {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(2rem, 1fr) auto auto auto minmax(2rem, 1fr);
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-heading h2 {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.section-heading > span {
  height: 0.1rem;
  background: var(--color-line);
}

.section-heading > svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: #d5ad8f;
}

.section-heading-compact {
  display: flex;
  justify-content: center;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 80%, rgba(238, 143, 145, 0.07), transparent 20%),
    var(--color-bg);
}

.about::before,
.about::after {
  position: absolute;
  z-index: 0;
  width: 8rem;
  height: 13rem;
  border: 0.1rem solid rgba(211, 173, 130, 0.4);
  border-radius: 50% 0;
  content: "";
  pointer-events: none;
}

.about::before {
  bottom: 3rem;
  left: 1%;
  transform: rotate(25deg);
}

.about::after {
  right: 1%;
  bottom: 2rem;
  transform: rotate(-25deg) scaleX(-1);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 17rem minmax(40rem, 1.2fr) minmax(35rem, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 3vw, 4rem);
}

.about-photo {
  width: 18rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1rem solid #f8f0ea;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-copy h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.about-copy h2 svg {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  fill: #d5ad8f;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-features li {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.round-icon {
  display: grid;
  width: 9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.1rem solid var(--color-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: var(--color-pink);
}

.round-icon svg {
  width: 4.4rem;
  height: 4.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.round-icon-gold {
  color: #bc9469;
}

/* Services */
.services {
  padding-top: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 0.1rem solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: 0 1.5rem 3rem rgba(98, 67, 48, 0.06);
}

.service-card > img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 500ms ease;
}

.service-card:hover > img {
  transform: scale(1.035);
}

.card-icon {
  position: absolute;
  top: 14.5rem;
  left: 2.4rem;
  display: grid;
  width: 6.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.5rem solid var(--color-white);
  border-radius: 50%;
  background: var(--color-pink);
  color: var(--color-white);
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card-copy {
  min-height: 15rem;
  padding: 2.3rem 2.4rem 2.4rem;
  text-align: center;
}

.service-card h3,
.reason-card h3,
.flow-list h3 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.service-card p {
  color: var(--color-muted);
}

/* Gallery */
.gallery {
  padding-block: 3.5rem 3rem;
  background: var(--color-bg-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
}

.gallery-grid figure {
  aspect-ratio: 1.4;
  overflow: hidden;
  border-radius: var(--radius-small);
  box-shadow: 0 0.8rem 2rem rgba(85, 63, 52, 0.08);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-button {
  display: flex;
  width: fit-content;
  margin: 2.4rem auto 0;
}

/* Reasons */
.reasons {
  padding-bottom: 4rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.reason-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: center;
  gap: 2.2rem;
}

.reason-card + .reason-card {
  border-left: 0.1rem solid var(--color-line);
  padding-left: 4rem;
}

.reason-icon {
  display: grid;
  width: 9rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #fbf0e7;
  color: var(--color-pink);
}

.reason-icon svg {
  width: 4.2rem;
  height: 4.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.reason-card p {
  color: var(--color-muted);
}

/* Flow and access */
.lower-area {
  background: linear-gradient(180deg, var(--color-bg) 0%, #fffaf6 100%);
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.section-heading-small {
  gap: 0.8rem;
}

.section-heading-small h2 {
  font-size: 2.5rem;
  white-space: nowrap;
}

.section-heading-small > svg {
  width: 2.4rem;
  height: 2.4rem;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.flow-list li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  position: absolute;
  top: 4.4rem;
  left: calc(50% + 4rem);
  width: calc(100% - 6.6rem);
  border-top: 0.3rem dotted var(--color-pink-light);
  content: "";
}

.step-number {
  position: absolute;
  z-index: 1;
  top: -0.5rem;
  left: calc(50% - 3.8rem);
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: "Yu Gothic", sans-serif;
  font-weight: 700;
}

.flow-icon {
  display: grid;
  width: 8.5rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 1.4rem;
  border: 0.2rem solid var(--color-pink-light);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-pink);
}

.flow-icon svg {
  width: 4rem;
  height: 4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.flow-list p {
  color: var(--color-muted);
  line-height: 1.65;
}

.contact-card {
  display: grid;
  overflow: hidden;
  min-height: 28rem;
  grid-template-columns: 1fr 1.05fr;
  border: 0.1rem solid var(--color-line);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: 0 1rem 3rem rgba(85, 63, 52, 0.05);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.1rem;
  padding: 2.6rem;
}

.contact-info > p {
  display: flex;
  gap: 1rem;
}

.contact-info > p svg,
.phone-link svg {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-beige);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-info dl div {
  display: flex;
  gap: 1.2rem;
}

.contact-info dt {
  min-width: 7rem;
  font-weight: 700;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
}

.contact-info .button {
  width: 100%;
  margin-top: 0.4rem;
}

.map-illustration {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background:
    repeating-linear-gradient(20deg, transparent 0 3.8rem, rgba(255,255,255,.92) 3.8rem 4.6rem),
    repeating-linear-gradient(105deg, transparent 0 5rem, rgba(255,255,255,.8) 5rem 5.8rem),
    #e8e4dc;
}

.map-road {
  position: absolute;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  transform-origin: center;
}

.road-one { top: 28%; left: -10%; width: 125%; transform: rotate(-20deg); }
.road-two { top: 62%; left: -10%; width: 130%; transform: rotate(14deg); }
.road-three { top: 10%; left: 44%; width: 110%; transform: rotate(78deg); }
.map-park { position: absolute; bottom: 10%; left: 18%; width: 24%; height: 28%; background: #d9e2c9; }

.map-label {
  position: absolute;
  top: 48%;
  left: 55%;
  display: grid;
  min-width: 17rem;
  grid-template-columns: 3.6rem 1fr;
  padding: 1.2rem 1.5rem;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.map-label svg {
  width: 3rem;
  height: 3rem;
  grid-row: 1 / 3;
  fill: var(--color-pink);
  stroke: var(--color-pink);
}

.map-label strong,
.map-label small {
  white-space: nowrap;
}

.map-label small {
  color: var(--color-pink-dark);
  font-size: 1.6rem;
}

/* Footer */
.site-footer {
  border-top: 0.1rem solid var(--color-line);
  background: #f9f4ee;
  padding: 3.5rem var(--safe-space) 1.4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 6rem;
}

.footer-brand-wrap {
  display: grid;
  align-content: start;
  gap: 1.6rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: grid;
  min-width: 4.2rem;
  min-height: 4.2rem;
  place-items: center;
  padding-inline: 0.8rem;
  border-radius: 50%;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: "Yu Gothic", sans-serif;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--color-pink-dark);
  transform: translateY(-0.2rem);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.footer-nav div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.5rem;
}

.copyright {
  margin-top: 2.8rem;
  text-align: center;
}

/* Scroll fade-in */
.scroll-fadein {
  opacity: 0;
  transform: translateY(4rem);
  transition:
    opacity 700ms ease var(--fade-delay, 0ms),
    transform 700ms ease var(--fade-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 1181px) and (max-width: 1360px) {
  .global-nav li:nth-child(5),
  .global-nav li:nth-child(6) {
    display: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 8rem;
  }

  .global-nav ul {
    gap: 1.3rem;
  }

  .global-nav li:nth-child(5),
  .global-nav li:nth-child(6) {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .brand-name {
    font-size: 2.2rem;
  }

  .about-inner {
    grid-template-columns: 15rem 1fr;
    gap: 3rem;
  }

  .about-photo {
    width: 15rem;
  }

  .about-features {
    grid-column: 1 / -1;
    max-width: 60rem;
    justify-self: center;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reason-grid {
    gap: 2rem;
  }

  .reason-card,
  .reason-card + .reason-card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

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

  .flow-list {
    max-width: 78rem;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 5rem;
    height: 5rem;
    place-content: center;
    gap: 0.6rem;
    border: 0;
    border-radius: 50%;
    background: var(--color-bg-pink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 2.4rem;
    height: 0.2rem;
    background: var(--color-text);
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.8rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.8rem) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    justify-items: stretch;
    gap: 2rem;
    overflow-y: auto;
    padding: 3rem var(--safe-space) 4rem;
    transform: translateY(-120%);
    border-top: 0.1rem solid var(--color-line);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
  }

  .global-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .global-nav li:nth-child(5),
  .global-nav li:nth-child(6) {
    display: block;
  }

  .global-nav li a {
    display: block;
    padding: 1.5rem 1rem;
    border-bottom: 0.1rem solid var(--color-line);
    text-align: center;
  }

  .nav-contact {
    display: inline-flex;
    justify-self: center;
  }

  .hero-inner {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    height: 47rem;
    grid-row: 1;
  }

  .hero-image-wrap::after {
    inset: auto 0 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(0deg, #fffaf5, transparent);
  }

  .hero-copy {
    padding: 2rem 4% 5rem;
    text-align: center;
  }

  .hero-ornament {
    margin-inline: auto;
  }

  .hero-lead {
    margin-block: 2rem 2.6rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 7.4rem;
  }

  .section {
    padding-block: 4rem;
  }

  .brand-paw {
    width: 3.8rem;
    height: 3.8rem;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-image-wrap {
    height: 39rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-japanese {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.8rem;
  }

  .section-heading {
    gap: 0.7rem;
    margin-bottom: 2.5rem;
  }

  .section-heading h2 {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
  }

  .section-heading > svg {
    width: 2.3rem;
    height: 2.3rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }

  .about-photo {
    width: 16rem;
    justify-self: center;
  }

  .about-copy h2 {
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1.5;
    white-space: normal;
  }

  .about-copy p br {
    display: none;
  }

  .about-features {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .about-features li {
    flex: 1;
  }

  .round-icon {
    width: min(24vw, 8.5rem);
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 21rem;
  }

  .service-card > img {
    height: 100%;
  }

  .card-icon {
    top: 2rem;
    left: calc(42% - 3.2rem);
  }

  .service-card-copy {
    display: grid;
    min-height: auto;
    align-content: center;
    padding: 3rem 2.2rem 3rem 3.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-grid figure {
    aspect-ratio: 1;
  }

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

  .reason-card,
  .reason-card + .reason-card {
    display: grid;
    grid-template-columns: 8rem 1fr;
    justify-items: stretch;
    gap: 1.8rem;
    border-top: 0.1rem solid var(--color-line);
    padding-top: 2rem;
    text-align: left;
  }

  .reason-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .reason-icon {
    width: 8rem;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }

  .flow-list li::after {
    display: none;
  }

  .section-heading-small h2 {
    white-space: normal;
  }

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

  .map-illustration {
    min-height: 24rem;
    grid-row: 1;
  }

  .contact-info {
    align-items: stretch;
  }

  .contact-info > p,
  .contact-info dl,
  .phone-link {
    align-self: flex-start;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 1.8rem;
  }

  .menu-toggle {
    width: 4.6rem;
    height: 4.6rem;
  }

  .hero-image-wrap {
    height: 34rem;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features li {
    grid-template-columns: 7rem 1fr;
    align-items: center;
    text-align: left;
  }

  .round-icon {
    width: 7rem;
  }

  .service-card {
    display: block;
  }

  .service-card > img {
    height: 21rem;
  }

  .card-icon {
    top: 17.5rem;
    left: 2.4rem;
  }

  .service-card-copy {
    padding: 2.3rem 2.4rem 2.4rem;
  }

  .reason-card,
  .reason-card + .reason-card {
    grid-template-columns: 6.5rem 1fr;
  }

  .reason-icon {
    width: 6.5rem;
  }

  .reason-icon svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-fadein {
    opacity: 1;
    transform: none;
  }
}
