/* ==========================================================================
   Lino Premium — style.css
   Mobile-first / Responsive
========================================================================== */

/* ---------- Variables ---------- */
:root {
  --white:        #ffffff;
  --ivory:        #faf8f5;
  --beige-light:  #f5f0eb;
  --beige:        #ede5d8;
  --beige-dark:   #d8cfc5;
  --gold:         #c9a96e;
  --gold-light:   #dbbe94;
  --brown-dark:   #3a3632;
  --brown-mid:    #6b5f54;
  --brown-light:  #9b8e85;
  --brown-pale:   #c4b9b0;
  --line-green:   #06c755;

  --serif:  'Noto Serif JP', serif;
  --sans:   'Noto Sans JP', sans-serif;
  --en:     'Cormorant Garamond', serif;

  --header-h:   64px;
  --max-w:      1100px;
  --px:         24px;
  --radius:     2px;
  --shadow:     0 4px 32px rgba(58, 54, 50, 0.07);
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--brown-dark);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}
a:hover { opacity: 0.7; }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--sans);
  color: inherit;
}

small { font-size: 0.8em; }

/* ---------- Utility ---------- */
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--px);
}

.section__head {
  text-align: center;
  margin-bottom: 56px;
}

.section__en {
  font-family: var(--en);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--brown-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--brown-dark);
  color: var(--white);
  border: 1px solid var(--brown-dark);
}
.btn--dark:hover {
  background: transparent;
  color: var(--brown-dark);
  opacity: 1;
}

.btn--line {
  background: var(--line-green);
  color: var(--white);
  border: 1px solid var(--line-green);
  font-size: 1rem;
  padding: 17px 48px;
}
.btn--line:hover {
  opacity: 0.85;
}

/* ==========================================================================
   HEADER
========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(58, 54, 50, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--px);
  max-width: 1280px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header__logo-en {
  font-family: var(--en);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--brown-dark);
}

.header__logo-ja {
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  color: var(--brown-light);
  font-weight: 300;
}

/* Desktop nav — hidden on mobile */
.header__nav { display: none; }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--brown-mid);
  font-weight: 300;
  position: relative;
  padding-bottom: 2px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.header__nav-link:hover { opacity: 1; color: var(--brown-dark); }
.header__nav-link:hover::after { width: 100%; }

.header__nav-link--cta {
  padding: 8px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.header__nav-link--cta::after { display: none; }
.header__nav-link--cta:hover {
  background: var(--gold);
  color: var(--white);
  opacity: 1;
}

/* ---------- Hamburger ---------- */
.hamburger {
  position: relative;
  z-index: 1100;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--brown-dark);
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE NAV
========================================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  display: block;
  padding: 16px 48px;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--brown-dark);
  border-bottom: 1px solid var(--beige);
  transition: color var(--transition);
}

.mobile-nav__link:first-of-type { border-top: 1px solid var(--beige); }
.mobile-nav__link:hover { color: var(--gold); opacity: 1; }

.mobile-nav__link--line {
  margin-top: 28px;
  background: var(--line-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--sans);
}
.mobile-nav__link--line:hover { opacity: 0.85; color: var(--white); }

/* ==========================================================================
   HERO
========================================================================== */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--ivory);
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201, 169, 110, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 85%, rgba(237, 229, 216, 0.5) 0%, transparent 55%);
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: 'Lino Premium';
  position: absolute;
  bottom: -2vw;
  right: -1vw;
  font-family: var(--en);
  font-size: clamp(5rem, 14vw, 16rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(201, 169, 110, 0.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.hero__inner {
  text-align: center;
  padding: 48px var(--px);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero__en {
  font-family: var(--en);
  font-size: 0.8125rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.45;
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.hero__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.hero__sub {
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 2.1;
  color: var(--brown-mid);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-family: var(--en);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: var(--brown-pale);
}

.hero__scroll-bar {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--brown-pale) 0%, transparent 100%);
  animation: scrollFade 2.2s ease infinite;
  transform-origin: top;
}

@keyframes scrollFade {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  80%  { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ==========================================================================
   FOR YOU
========================================================================== */
.for-you { background: var(--beige-light); }

.for-you__list {
  max-width: 600px;
  margin: 0 auto 48px;
  border-top: 1px solid var(--beige-dark);
}

.for-you__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--beige-dark);
}

.for-you__dash {
  color: var(--gold);
  font-family: var(--en);
  font-size: 1rem;
  line-height: 1.7;
  flex-shrink: 0;
}

.for-you__item p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--brown-mid);
}

.for-you__message {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.07em;
  line-height: 2.1;
}

/* ==========================================================================
   ABOUT
========================================================================== */
.about { background: var(--white); }

.about__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}

.about__visual {
  background: var(--beige-light);
  aspect-ratio: 4 / 3;
  max-height: 320px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.about__visual-text {
  font-family: var(--en);
  font-size: 1.75rem;
  letter-spacing: 0.3em;
  color: var(--beige-dark);
  font-weight: 300;
  user-select: none;
}

.about__text p {
  font-size: 0.9375rem;
  line-height: 2.05;
  color: var(--brown-mid);
  margin-bottom: 18px;
}

.about__text p:last-child { margin-bottom: 0; }

.about__lead {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 2.5vw, 1.3125rem) !important;
  font-weight: 400 !important;
  color: var(--brown-dark) !important;
  letter-spacing: 0.06em;
  line-height: 1.9 !important;
  margin-bottom: 24px !important;
}

/* ---------- Reasons ---------- */
.reasons__title {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  color: var(--brown-dark);
}

.reasons__list {
  border-top: 1px solid var(--beige-dark);
}

.reasons__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid var(--beige-dark);
}

.reasons__item-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.reasons__num {
  font-family: var(--en);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.reasons__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.07em;
}

.reasons__desc {
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--brown-mid);
  padding-left: 52px;
}

/* ==========================================================================
   MENU
========================================================================== */
.menu { background: var(--beige-light); }

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.menu__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu__card-top {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--beige-light);
}

.menu__category {
  font-family: var(--en);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}

.menu__name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.08em;
}

.menu__card-body {
  padding: 22px 28px;
  flex: 1;
}

.menu__desc {
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--brown-mid);
  margin-bottom: 18px;
}

.menu__features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.menu__features li {
  font-size: 0.8125rem;
  color: var(--brown-light);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}

.menu__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6875rem;
  line-height: 1.85;
}

.menu__card-foot {
  padding: 20px 28px 28px;
  background: var(--ivory);
  border-top: 1px solid var(--beige-light);
}

.menu__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.menu__price-old {
  font-family: var(--en);
  font-size: 0.9375rem;
  color: var(--brown-pale);
  text-decoration: line-through;
  letter-spacing: 0.04em;
}

.menu__price-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.menu__price {
  font-family: var(--en);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

.menu__price--consult {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.menu__price-unit {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  letter-spacing: 0.05em;
}

.menu__time {
  font-size: 0.8125rem;
  color: var(--brown-light);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.menu__note {
  font-size: 0.8125rem;
  color: var(--brown-light);
  line-height: 2;
  text-align: center;
}

/* ==========================================================================
   FLOW
========================================================================== */
.flow { background: var(--white); }

.flow__steps {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.flow__steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, var(--beige-dark) 0%, var(--beige-light) 100%);
  pointer-events: none;
}

.flow__step {
  display: flex;
  gap: 28px;
  padding-bottom: 36px;
  position: relative;
}

.flow__step:last-child { padding-bottom: 0; }

.flow__step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow__step-num span {
  font-family: var(--en);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 300;
}

.flow__step-body {
  padding-top: 14px;
  flex: 1;
}

.flow__step-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.flow__step-desc {
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--brown-mid);
}

.flow__step-link {
  margin-top: 10px;
}

.flow__step-link a {
  font-size: 0.8125rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   FAQ
========================================================================== */
.faq { background: var(--beige-light); }

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--beige-dark);
}

.faq__item { border-bottom: 1px solid var(--beige-dark); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--brown-dark);
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.faq__q:hover { color: var(--gold); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-top: 3px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  padding: 2px 4px 22px;
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--brown-mid);
}

.faq__a[hidden] { display: none; }

/* ==========================================================================
   VOICE
========================================================================== */
.voice { background: var(--white); }

.voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.voice__card {
  background: var(--ivory);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

.voice__text {
  font-size: 0.9375rem;
  line-height: 2.05;
  color: var(--brown-mid);
  margin-bottom: 16px;
  position: relative;
  padding-top: 8px;
}

.voice__text::before {
  content: '\201C';
  font-family: var(--en);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  font-weight: 300;
}

.voice__meta {
  font-size: 0.8125rem;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  text-align: right;
}

/* ==========================================================================
   CTA
========================================================================== */
.cta { background: var(--brown-dark); }

.cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--px);
  text-align: center;
}

.cta__en {
  font-family: var(--en);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta__desc {
  font-size: 0.9375rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   ACCESS
========================================================================== */
.access { background: var(--ivory); }

.access__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access__dl {
  border-top: 1px solid var(--beige-dark);
}

.access__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--beige-dark);
  align-items: baseline;
}

.access__row dt {
  font-size: 0.8125rem;
  color: var(--brown-light);
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.access__row dd {
  font-size: 0.9375rem;
  color: var(--brown-dark);
  line-height: 1.85;
}

.access__map iframe {
  border-radius: var(--radius);
  min-height: 280px;
}

/* ==========================================================================
   FOOTER
========================================================================== */
.footer { background: var(--brown-dark); }

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--px) 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer__name {
  font-family: var(--en);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__nav a {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__nav a:hover { color: var(--white); opacity: 1; }

.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns a { color: rgba(255, 255, 255, 0.5); }
.footer__sns a:hover { color: var(--white); opacity: 1; }

.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__copy a {
  color: rgba(255, 255, 255, 0.45);
}
.footer__copy a:hover { color: var(--white); opacity: 1; }

/* ==========================================================================
   FIXED LINE BUTTON
========================================================================== */
.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  transition: transform var(--transition), opacity var(--transition);
}

.fixed-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.fixed-cta__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--line-green);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.38);
  transition: all var(--transition);
  white-space: nowrap;
}

.fixed-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.45);
  opacity: 1;
}

/* ==========================================================================
   SCROLL ANIMATION
========================================================================== */
.js-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ==========================================================================
   RESPONSIVE — Tablet (640px+)
========================================================================== */
@media (min-width: 640px) {

  .about__block {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .about__visual {
    flex: 0 0 240px;
    aspect-ratio: 3 / 4;
    max-height: none;
  }

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

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

  .reasons__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    border-top: none;
  }

  .reasons__item {
    border-top: 1px solid var(--beige-dark);
  }

  .reasons__desc {
    padding-left: 0;
  }
}

/* ==========================================================================
   RESPONSIVE — Desktop (1024px+)
========================================================================== */
@media (min-width: 1024px) {

  .header__nav { display: flex; }
  .hamburger { display: none; }

  .about__visual {
    flex: 0 0 300px;
  }

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

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

  .access__layout {
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }

  .access__info {
    flex: 0 0 360px;
  }

  .access__map {
    flex: 1;
  }

  .access__map-placeholder {
    min-height: 360px;
    height: 100%;
  }

  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px 56px;
  }

  .footer__nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 20px;
  }

  .footer__nav a {
    border-bottom: none;
    padding: 6px 0;
  }

  .footer__copy {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .fixed-cta { display: none; }
}
