:root {
  --ink: #101216;
  --sumi: #1d1f24;
  --navy: #111a2f;
  --paper: #fffaf1;
  --white: #ffffff;
  --muted: #6f6b64;
  --line: rgba(16, 18, 22, 0.13);
  --sauce: #8a3f20;
  --red: #c93924;
  --gold: #c8a15a;
  --smoke: #eef0ef;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(17, 26, 47, 0.16);
  --header-height: 74px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(201, 57, 36, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 14px 42px rgba(17, 26, 47, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand__name {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand__tag {
  margin-top: 7px;
  color: currentColor;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.72;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 10px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  background: rgba(17, 26, 47, 0.06);
  border-color: var(--line);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 14px auto;
  z-index: 90;
  display: none;
  padding: 22px;
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
}

.mobile-menu a {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--sauce));
  box-shadow: 0 16px 32px rgba(201, 57, 36, 0.24);
}

.btn--light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost,
.btn--ghost-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn--ghost-dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn--small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px clamp(18px, 5vw, 64px) 70px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 26, 47, 0.94) 0%, rgba(29, 31, 36, 0.88) 48%, rgba(138, 63, 32, 0.72) 100%),
    radial-gradient(circle at 12% 24%, rgba(201, 57, 36, 0.4), transparent 32%),
    var(--navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(17, 26, 47, 0.78), rgba(17, 26, 47, 0.26)), url("../images/takonoza-night-store-line-hero.png") right bottom / min(760px, 92vw) auto no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.seo-block p {
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-family: "Shippori Mincho", "Noto Sans JP", serif;
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 span,
.section h2 span {
  display: inline-block;
  white-space: nowrap;
}

#services-title {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.9;
}

.hero__actions,
.takonoza__actions,
.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag-list,
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.tag-list li,
.keyword-list li,
.menu-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero__media {
  position: relative;
  margin: 0;
  border-radius: 0 0 0 72px;
  overflow: hidden;
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.35);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.hero__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__backtext {
  position: absolute;
  right: -0.08em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.045);
  font-family: "Inter", sans-serif;
  font-size: clamp(7rem, 28vw, 26rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.steam {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 45% 55% 58% 42%;
  filter: blur(1px);
  opacity: 0.26;
  animation: steam 12s ease-in-out infinite;
}

.steam--one {
  top: 110px;
  right: 16%;
}

.steam--two {
  bottom: 110px;
  left: 7%;
  animation-delay: -5s;
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.trust-strip__track {
  display: flex;
  gap: clamp(24px, 4vw, 54px);
  width: max-content;
  padding: 18px clamp(18px, 4vw, 52px);
  animation: marquee 34s linear infinite;
}

.trust-strip span {
  position: relative;
  white-space: nowrap;
  font-weight: 800;
}

.trust-strip span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: 1px;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(18px, 5vw, 64px);
}

.section__grid,
.section__intro,
.feature-cards,
.service-list,
.scene-grid,
.why-grid,
.company-list,
.contact,
.message__inner,
.seo-block,
.takonoza__panel {
  max-width: 1180px;
  margin: 0 auto;
}

.section__grid {
  display: grid;
  gap: 32px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5.2vw, 4.65rem);
  font-weight: 900;
  line-height: 1.18;
}

.section__body p,
.section__intro p,
.takonoza p,
.contact__content p,
.message p {
  margin: 0;
  color: var(--sumi);
  font-size: clamp(1rem, 1.7vw, 1.1rem);
}

.section__body p + p,
.message p + p {
  margin-top: 18px;
}

.feature-cards {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.mini-card,
.scene-card,
.why-card,
.flow-step,
.contact-form,
.company-list,
.takonoza__panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-card {
  padding: 26px;
}

.mini-card span,
.why-card span,
.flow-step span {
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.mini-card h3,
.service-card h3,
.flow-step h3,
.scene-card h3,
.why-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.mini-card p,
.service-card p,
.flow-step p,
.scene-card p {
  margin: 0;
  color: var(--muted);
}

.services,
.why,
.company {
  background: var(--white);
}

.service-list {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.service-card {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 26, 47, 0.98), rgba(29, 31, 36, 0.96)),
    var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card__number {
  color: rgba(255, 255, 255, 0.14);
  font-family: "Inter", sans-serif;
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
}

.service-card__label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.keyword-list li {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.flow {
  background:
    linear-gradient(180deg, rgba(238, 240, 239, 0.86), rgba(255, 250, 241, 0.7)),
    var(--smoke);
}

.flow-list {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 46px auto 0;
}

.flow-step {
  position: relative;
  min-height: 206px;
  padding: 26px;
  overflow: hidden;
}

.flow-step span {
  position: absolute;
  right: 18px;
  bottom: -22px;
  color: rgba(201, 57, 36, 0.12);
  font-size: 5.4rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 40px auto 0;
}

.photo-card {
  position: relative;
  display: block;
  min-height: 170px;
  padding: 0;
  background: linear-gradient(135deg, rgba(17, 26, 47, 0.1), rgba(201, 57, 36, 0.08)), var(--smoke);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
}

.photo-card__visual {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.05) saturate(1.04) sepia(0.04);
  transition: transform 0.35s ease;
}

.photo-card:hover .photo-card__visual {
  transform: scale(1.045);
}

.photo-card__visual--stall,
.photo-card__visual--car,
.photo-card__visual--event,
.photo-card__visual--crowd {
  filter: brightness(0.86) contrast(1.05) saturate(1.04) sepia(0.04);
}

.photo-card__visual--takoyaki,
.photo-card__visual--food {
  filter: brightness(1.08) contrast(1.03) saturate(1.02) sepia(0.03);
}

.photo-card__label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 6px 10px;
  color: var(--white);
  background: rgba(16, 18, 22, 0.72);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.takonoza {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 57, 36, 0.13), transparent 32%),
    var(--paper);
}

.takonoza__panel {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 6vw, 66px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 241, 0.75)),
    var(--white);
  box-shadow: var(--shadow);
}

.menu-cloud {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-cloud span {
  border-color: var(--line);
  background: var(--white);
}

.scene-grid,
.why-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.scene-card {
  padding: 24px;
}

.why-card {
  position: relative;
  min-height: 164px;
  padding: 28px;
  overflow: hidden;
}

.why-card span {
  position: absolute;
  right: 16px;
  bottom: -24px;
  color: rgba(16, 18, 22, 0.06);
  font-size: 6.4rem;
  line-height: 1;
}

.why-card h3 {
  position: relative;
  max-width: 82%;
}

.seo-block {
  padding: clamp(30px, 5vw, 48px);
  color: var(--white);
  background: var(--sumi);
  border-radius: var(--radius);
}

.seo-block p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
}

.message {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 26, 47, 0.96), rgba(16, 18, 22, 0.96)),
    var(--navy);
}

.message__inner {
  max-width: 880px;
}

.message h2 {
  margin-bottom: 28px;
}

.message p {
  color: rgba(255, 255, 255, 0.82);
}

.signature {
  margin-top: 34px;
  color: var(--white) !important;
  font-weight: 800;
}

.company-list {
  padding: clamp(18px, 4vw, 42px);
}

.company-list div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-list div:last-child {
  border-bottom: 0;
}

.company-list dt {
  color: var(--muted);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  font-weight: 700;
}

.company-list a {
  color: var(--sauce);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact {
  display: grid;
  gap: 36px;
}

.contact__content {
  color: var(--white);
}

.contact {
  max-width: none;
  padding: clamp(78px, 10vw, 130px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(17, 26, 47, 0.96), rgba(138, 63, 32, 0.9)),
    var(--navy);
}

.contact > * {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
}

.contact .section__intro,
.contact p {
  color: rgba(255, 255, 255, 0.84);
}

.contact h2 {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 250, 241, 0.98);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 18, 22, 0.18);
  border-radius: var(--radius);
}

.form-row textarea {
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  color: var(--sauce);
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 30px;
  padding: 54px clamp(18px, 5vw, 64px) 88px;
  color: var(--white);
  background: var(--ink);
}

.footer__brand,
.footer__nav,
.footer__info,
.copyright {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
}

.footer__brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer__nav,
.footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-style: normal;
}

.footer__nav a,
.footer__info a,
.footer__info span {
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
}

.bottom-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--sauce));
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(16, 18, 22, 0.28);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(16, 18, 22, 0.78);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__content {
  width: min(820px, 92vw);
  color: var(--white);
}

.lightbox__content .photo-card__visual {
  min-height: min(64vh, 520px);
  border-radius: var(--radius);
}

.lightbox__content p {
  margin: 16px 0 0;
  font-weight: 900;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes steam {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    border-radius: 45% 55% 58% 42%;
  }
  50% {
    transform: translate3d(18px, -28px, 0) rotate(18deg);
    border-radius: 58% 42% 44% 56%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 700px) {
  .feature-cards,
  .scene-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row--full,
  .form-note,
  .contact-form .btn,
  .form-status {
    grid-column: 1 / -1;
  }

  .company-list div {
    grid-template-columns: 190px 1fr;
  }
}

@media (min-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    gap: clamp(14px, 1.8vw, 24px);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .header-actions {
    gap: 12px;
  }

  .header-link {
    font-size: 0.82rem;
    font-weight: 800;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    display: grid;
    align-items: center;
    padding-top: 118px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
    align-items: center;
  }

  .section__grid {
    grid-template-columns: 0.92fr 1fr;
    align-items: start;
  }

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

  .service-card {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }

  .flow-list {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .flow-step {
    scroll-snap-align: start;
  }

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

  .photo-card,
  .photo-card__visual {
    min-height: 248px;
  }

  .gallery-grid .photo-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid .photo-card:first-child .photo-card__visual {
    min-height: 512px;
  }

  .takonoza__panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .contact {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
    align-items: start;
  }

  .contact > * {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.72rem, 12vw, 3.28rem);
  }

  .hero h1 span,
  .section h2 span {
    white-space: normal;
  }

  #services-title {
    font-size: clamp(1.85rem, 9.4vw, 2.72rem);
  }

  .hero__actions .btn,
  .takonoza__actions .btn,
  .contact__buttons .btn {
    width: 100%;
  }

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

  .bottom-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
