@charset "UTF-8";

:root {
  --wa-white: #fcfaf7;
  --wa-off-white: #f8f5ee;
  --wa-sumi: #171717;
  --wa-sumi-soft: #2c2a27;
  --wa-gold: #9c844f;
  --wa-gold-deep: #7d6535;
  --wa-gold-light: #ccb88c;
  --wa-gold-bg: #f4efe5;
  --wa-border: #e5ddd2;
  --wa-shadow: 0 18px 50px rgba(21, 18, 12, 0.08);
  --wa-shadow-soft: 0 10px 30px rgba(21, 18, 12, 0.06);
  --header-h: 84px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--wa-sumi);
  font-family: var(--serif);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
  background-color: var(--wa-white);
  background-image: radial-gradient(circle at top, rgba(156, 132, 79, 0.06), transparent 35%), url('https://www.transparenttextures.com/patterns/natural-paper.png');
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(229, 221, 210, 0.9);
  background: rgba(252, 250, 247, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--sans);
  font-size: 1.12rem;
  letter-spacing: 0.36em;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 0.87rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--wa-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--wa-gold);
  border-radius: 999px;
  color: var(--wa-gold);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--wa-gold);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(156, 132, 79, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--wa-sumi);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 84px 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.62) 0%, rgba(12, 12, 12, 0.2) 48%, rgba(12, 12, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(18, 17, 15, 0.15), rgba(18, 17, 15, 0.08));
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.92) brightness(0.86);
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  gap: 54px;
  align-items: end;
}

.hero-copy {
  max-width: 640px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.section-label,
.section-label-light,
.lead-en {
  font-family: var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.8rem;
  color: var(--wa-gold-light);
  font-weight: 500;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  line-height: 1.28;
  font-weight: 900;
}

.text-accent {
  color: var(--wa-gold-light);
  border-bottom: 1px solid rgba(204, 184, 140, 0.9);
  padding-bottom: 4px;
}

.hero-text {
  max-width: 34rem;
  margin: 0 0 34px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions,
.mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

.btn-primary {
  color: var(--wa-sumi);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: #f7f3eb;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: var(--wa-sumi);
  color: #fff;
}

.btn-dark:hover {
  background: #0f0f0f;
}

.btn-ghost-dark {
  border: 1px solid rgba(23, 23, 23, 0.16);
  color: var(--wa-sumi);
  background: rgba(255, 255, 255, 0.7);
}

.btn-ghost-dark:hover {
  border-color: var(--wa-gold);
  color: var(--wa-gold-deep);
}

.hero-card {
  color: var(--wa-sumi);
}

.hero-card-body {
  padding: 34px;
  border: 1px solid rgba(229, 221, 210, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(252, 250, 247, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.mini-heading {
  margin: 0 0 18px;
  color: var(--wa-gold-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(156, 132, 79, 0.15);
  font-size: 0.98rem;
}

.hero-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--wa-gold);
}

.hero-list li:last-child {
  border-bottom: none;
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(156, 132, 79, 0.1);
  color: var(--wa-gold-deep);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-soft {
  background: var(--wa-gold-bg);
}

.section-white {
  background: #fff;
}

.section-wa-gold-bg {
  background: linear-gradient(180deg, #f7f2e9 0%, #f2ede3 100%);
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.center {
  text-align: center;
}

.section-label,
.section-label-light,
.lead-en {
  margin-bottom: 12px;
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wa-gold);
}

.section-label-light {
  color: var(--wa-gold-light);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.45;
  font-weight: 600;
}

.main-h2 {
  margin-bottom: 16px !important;
}

.section-lead,
.contact-text {
  margin: 16px auto 0;
  max-width: 760px;
  color: #5b5650;
  font-size: 1.02rem;
}

.worry-grid,
.service-grid,
.strength-grid {
  display: grid;
  gap: 22px;
}

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

.worry-card,
.service-card {
  padding: 34px 30px;
  border: 1px solid rgba(229, 221, 210, 0.92);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--wa-shadow-soft);
}

.worry-card h3,
.service-card h3 {
  margin: 0 0 12px;
  color: var(--wa-gold-deep);
  font-size: 1.16rem;
}

.worry-card p,
.service-card p,
.strength-card p,
.lead-block p,
.profile-content p,
.area-copy p {
  margin: 0;
  color: #4b4741;
}

.two-column {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.9fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.vertical-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-h2 {
  writing-mode: vertical-rl;
  margin-top: 18px;
  font-size: 2.15rem;
  letter-spacing: 0.22em;
  line-height: 1.7;
  height: 360px;
}

.concept-image-wrap {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--wa-shadow);
}

.concept-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-block {
  display: grid;
  gap: 18px;
  font-size: 1.03rem;
}

.service-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
}

.section-wa-gold-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(252, 250, 247, 0.6), rgba(244, 239, 229, 0.92));
  z-index: 1;
}

.relative-container {
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.95);
}

.service-card h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(229, 221, 210, 0.9);
}

.section-mid-cta {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff 0%, #f9f6f0 100%);
}

.mid-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(156, 132, 79, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--wa-shadow);
}

.mid-cta-copy p:last-child {
  margin-top: 12px;
}

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

.strength-card {
  padding: 18px 12px;
  text-align: center;
}

.strength-number {
  display: block;
  margin-bottom: 12px;
  color: var(--wa-gold);
  font-size: 2.3rem;
  font-weight: 900;
}

.strength-card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
}

.section-black {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(156, 132, 79, 0.25), transparent 26%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
}

.section-black .section-label {
  color: var(--wa-gold-light);
}

.price-flex {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 460px);
  gap: 56px;
  align-items: center;
}

.price-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.price-box {
  padding: 48px;
  border: 1px solid rgba(156, 132, 79, 0.38);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(204, 184, 140, 0.22);
}

.price-item:last-of-type {
  margin-bottom: 0;
}

.price-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price-value {
  font-size: 3rem;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--wa-gold-light);
  line-height: 1;
}

.price-value small {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.price-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  text-align: right;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.profile-image {
  position: relative;
}

.profile-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--wa-shadow);
}

.profile-frame {
  position: absolute;
  right: -18px;
  bottom: -18px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.95);
  border: 1px solid rgba(229, 221, 210, 0.9);
  font-family: var(--sans);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: rgba(23, 23, 23, 0.14);
}

.profile-content {
  display: grid;
  gap: 18px;
}

.profile-content h2 {
  margin: 0;
  font-size: 2.2rem;
}

.profile-sub {
  color: var(--wa-gold-deep) !important;
  font-size: 1rem;
  font-weight: 700;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 64px;
  align-items: center;
}

.area-details {
  padding: 24px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(229, 221, 210, 0.9);
}

.detail-row span {
  color: var(--wa-gold-deep);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-wa {
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.96)),
    radial-gradient(circle at center, rgba(156, 132, 79, 0.14), transparent 60%);
}

.contact-inner {
  max-width: 860px;
}

.contact-actions {
  justify-content: center;
  margin-top: 38px;
}

.btn-gold {
  background: var(--wa-gold);
  color: #fff;
  border: 1px solid var(--wa-gold);
}

.btn-gold:hover {
  background: var(--wa-gold-deep);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--wa-sumi);
}

.contact-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.floating-line {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  min-width: 148px;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #06c755 0%, #07b84f 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(6, 199, 85, 0.28);
  animation: floatPulse 2.4s ease-in-out infinite;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(229, 221, 210, 0.9);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #7d7770;
  font-size: 0.9rem;
}

.footer-logo {
  margin: 0;
  font-family: var(--sans);
  letter-spacing: 0.24em;
  color: var(--wa-sumi);
}

.footer-copy {
  margin: 0;
}

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

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 16px 34px rgba(6, 199, 85, 0.28);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(6, 199, 85, 0.34);
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .price-flex,
  .profile-grid,
  .area-grid,
  .two-column {
    gap: 40px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }

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

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 115;
    display: block;
    background: rgba(252, 250, 247, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 221, 210, 0.9);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-inner {
    width: min(100%, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 22px;
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 221, 210, 0.75);
    font-family: var(--sans);
    font-size: 0.95rem;
  }

  .mobile-menu-cta {
    color: var(--wa-gold-deep);
    font-weight: 700;
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .logo {
    font-size: 0.98rem;
    letter-spacing: 0.24em;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 36px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(252, 250, 247, 0.62) 0%, rgba(252, 250, 247, 0.82) 55%, rgba(252, 250, 247, 0.92) 100%);
  }

  .hero-bg-img {
    filter: blur(2px) saturate(0.9) brightness(1.02);
    opacity: 0.34;
    transform: scale(1.04);
  }

  .hero-inner,
  .two-column,
  .service-grid,
  .strength-grid,
  .price-flex,
  .profile-grid,
  .area-grid,
  .worry-grid,
  .mid-cta-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 22px;
    align-items: start;
  }

  .hero-copy {
    color: var(--wa-sumi);
    text-shadow: none;
  }

  .eyebrow {
    color: var(--wa-gold-deep);
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.42;
  }

  .text-accent {
    color: var(--wa-gold-deep);
    border-bottom-color: rgba(125, 101, 53, 0.5);
  }

  .hero-text {
    max-width: none;
    margin-bottom: 24px;
    color: #4a443d;
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.84rem;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .btn-primary {
    background: var(--wa-sumi);
    color: #fff;
  }

  .btn-secondary {
    color: var(--wa-sumi);
    border-color: rgba(23, 23, 23, 0.15);
    background: rgba(255, 255, 255, 0.74);
  }

  .hero-card-body,
  .worry-card,
  .service-card,
  .mid-cta-box,
  .price-box {
    padding: 26px;
  }

  .vertical-title-area {
    align-items: flex-start;
  }

  .vertical-h2 {
    writing-mode: horizontal-tb;
    height: auto;
    margin: 0;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }

  .concept-image-wrap {
    order: -1;
    height: 320px;
  }

  .service-bg-img {
    opacity: 0.12;
  }

  .mid-cta-actions,
  .contact-actions {
    width: 100%;
  }

  .mid-cta-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .strength-card {
    padding: 0;
  }

  .price-box {
    padding: 30px 26px;
  }

  .price-value {
    font-size: 2.25rem;
  }

  .price-note {
    text-align: left;
  }

  .profile-img {
    height: 360px;
  }

  .profile-frame {
    right: 12px;
    bottom: 12px;
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .detail-row {
    font-size: 0.95rem;
  }

  .floating-line {
    right: 16px;
    bottom: 16px;
    min-width: 132px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 42px 0 28px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    flex-basis: 100%;
  }

  .section h2 {
    font-size: 1.55rem;
  }

  .section-lead,
  .contact-text,
  .lead-block,
  .profile-content,
  .area-copy p,
  .worry-card p,
  .service-card p,
  .strength-card p {
    font-size: 0.95rem;
  }

  .worry-card,
  .service-card,
  .hero-card-body,
  .mid-cta-box,
  .price-box {
    border-radius: 18px;
  }

  .price-item {
    align-items: center;
  }

  .price-title {
    font-size: 1rem;
  }
}

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

  .reveal,
  .btn,
  .floating-line,
  .menu-toggle span,
  .nav a::after {
    transition: none !important;
    animation: none !important;
  }

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