/* ===== Variables ===== */
:root {
  --color-white: #fafafa;
  --color-black: #1a1a1a;
  --color-dark: #0d1117;
  --color-grey: #6b7280;
  --color-grey-light: #e5e7eb;
  --color-accent: #c4704a;
  --color-accent-dark: #a85a38;
  --color-teal: #2a9d8f;
  --color-teal-dark: #238b7e;
  --color-sand: #f5f0eb;
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', 'Noto Sans', sans-serif;
  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--accent {
  position: relative;
  padding: 120px 0;
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

.section-title--light {
  color: var(--color-white);
}

.section-desc {
  font-size: 1rem;
  color: var(--color-grey);
  max-width: 560px;
  margin-bottom: 16px;
}

.section-desc--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: var(--transition);
}

.btn--primary {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 157, 143, 0.35);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1rem;
}

.btn--google {
  background: #1a73e8;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
}

.btn--google:hover:not(:disabled) {
  background: #1557b0;
}

.btn--google:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.7;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
}

.nav a:hover {
  opacity: 1;
  color: var(--color-teal);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  gap: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}

.header--scrolled .lang-switcher {
  background: var(--color-grey-light);
}

.lang-btn {
  padding: 6px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 6px;
  color: var(--color-grey);
  transition: var(--transition);
}

.lang-btn.active {
  background: white;
  color: var(--color-black);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover:not(.active) {
  color: var(--color-black);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header--menu-open {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.header--menu-open .logo,
.header--menu-open .lang-btn:not(.active) {
  color: var(--color-black);
}

.header--menu-open .menu-toggle span {
  background: var(--color-black);
}

.header:not(.header--scrolled) .logo,
.header:not(.header--scrolled) .nav a,
.header:not(.header--scrolled) .lang-btn {
  color: white;
}

.header:not(.header--scrolled) .lang-btn.active {
  color: var(--color-black);
}

.header:not(.header--scrolled) .menu-toggle span {
  background: white;
}

.header:not(.header--scrolled) .btn--primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header:not(.header--scrolled) .btn--primary:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: white;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  overflow: hidden;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.02);
}

/* ===== Rooms ===== */
.rooms {
  background: white;
}

.rooms__floors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 880px;
  margin: 0 auto;
}

.rooms__floor-label {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-grey-light);
}

.rooms__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-grey-light);
}

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

.rooms__name {
  font-weight: 600;
  font-size: 1rem;
}

.rooms__detail {
  font-size: 0.875rem;
  color: var(--color-grey);
}

/* ===== Gallery ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== Amenities ===== */
.amenities {
  background: var(--color-sand);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
  max-width: 880px;
  margin: 0 auto;
}

.amenity-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-grey-light);
}

.amenity-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.875rem;
  color: var(--color-grey);
  line-height: 1.6;
}

/* ===== Location ===== */
.location__bg {
  position: absolute;
  inset: 0;
}

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

.location__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.85), rgba(42, 157, 143, 0.6));
}

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

.location__text {
  max-width: 640px;
}

.location__highlights {
  margin-top: 32px;
}

.location__highlights li {
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* ===== Access ===== */
.access {
  background: var(--color-sand);
}

.access__list {
  max-width: 720px;
  margin: 0 auto;
}

.access__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-grey-light);
}

.access__item:last-child {
  border-bottom: none;
}

.access__item dt {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-grey);
  letter-spacing: 0.05em;
}

.access__item dd {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.access__item dd a {
  color: var(--color-teal);
}

.access__item dd a:hover {
  text-decoration: underline;
}

.modal__check-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--color-grey);
}

.footer__brand a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  transition: var(--transition);
}

.footer__brand a:hover {
  color: white;
}

.footer__brand p + p {
  margin-top: 6px;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  background: white;
}

.cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section .btn {
  margin-top: 32px;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__brand .logo {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer__brand p {
  font-size: 0.8125rem;
}

.footer__copy {
  font-size: 0.75rem;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.modal__close:hover {
  background: var(--color-grey-light);
  color: var(--color-black);
}

.modal {
  position: relative;
}

.modal__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--color-grey-light);
}

.modal__google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--color-grey);
  margin-bottom: 12px;
}

.modal__header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.modal__body {
  padding: 24px;
}

.modal__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--color-grey-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__price {
  font-size: 0.8125rem;
  color: var(--color-grey);
}

.modal__price strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-black);
  margin-top: 2px;
}

.modal__note {
  padding: 0 24px 16px;
  font-size: 0.6875rem;
  color: var(--color-grey);
  text-align: center;
}

/* ===== Calendar ===== */
.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--color-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.calendar__nav-btn:hover {
  background: var(--color-grey-light);
  color: var(--color-black);
}

.calendar__month {
  font-weight: 600;
  font-size: 0.9375rem;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar__weekday {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-grey);
  padding: 4px;
}

.calendar__weekday.sun { color: #e53935; }
.calendar__weekday.sat { color: #1a73e8; }

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  border-radius: 50%;
  transition: var(--transition);
  cursor: default;
}

.calendar__day--empty {
  visibility: hidden;
}

.calendar__day--available {
  cursor: pointer;
  color: var(--color-black);
}

.calendar__day--available:hover {
  background: #e8f0fe;
  color: #1a73e8;
}

.calendar__day--selected {
  background: #1a73e8 !important;
  color: white !important;
}

.calendar__day--unavailable {
  color: #ccc;
  text-decoration: line-through;
}

.calendar__day--today {
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #1a73e8;
}

.calendar__day.sun:not(.calendar__day--unavailable) { color: #e53935; }
.calendar__day.sat:not(.calendar__day--unavailable) { color: #1a73e8; }

/* ===== Booking Details ===== */
.booking-details {
  margin-top: 20px;
  padding: 16px 0;
  font-size: 0.875rem;
  border-top: 1px solid var(--color-grey-light);
  border-bottom: 1px solid var(--color-grey-light);
}

.booking-details__placeholder {
  color: var(--color-grey);
  text-align: center;
}

.booking-details__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-details__info strong {
  font-size: 1rem;
}

.time-slots {
  margin-top: 20px;
}

.time-slots h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-grey);
  margin-bottom: 8px;
  margin-top: 16px;
}

.time-slots h4:first-child {
  margin-top: 0;
}

.time-slots__grid {
  display: flex;
  gap: 8px;
}

.time-slot {
  padding: 8px 16px;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  font-size: 0.8125rem;
  transition: var(--transition);
}

.time-slot:hover {
  border-color: #1a73e8;
  color: #1a73e8;
}

.time-slot.selected {
  background: #1a73e8;
  color: white;
  border-color: #1a73e8;
}

.nights-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nights-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nights-btn:hover {
  border-color: #1a73e8;
  color: #1a73e8;
}

#nightsCount {
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-teal);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery__item--wide {
    grid-column: span 2;
  }

  .amenities__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }

  .rooms__floors {
    gap: 40px;
  }

  .nav {
    display: flex;
    flex: none;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 24px) 24px 40px;
    gap: 0;
    z-index: 101;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .nav a {
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 1;
    color: var(--color-black);
    padding: 18px 0;
    border-bottom: 1px solid var(--color-grey-light);
  }

  .nav a:hover {
    color: var(--color-teal);
  }

  .nav__mobile {
    display: block;
    margin-top: 32px;
    padding-top: 8px;
  }

  .nav__mobile .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .header__actions .btn--sm {
    display: none;
  }

  .header__brand {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .lang-switcher {
    padding: 2px;
    gap: 2px;
  }

  .lang-btn {
    padding: 5px 6px;
    font-size: 0.625rem;
  }

  .header__inner {
    padding: 0 16px;
    gap: 12px;
  }

  .header:not(.header--scrolled):not(.header--menu-open) .logo,
  .header:not(.header--scrolled):not(.header--menu-open) .lang-btn:not(.active) {
    color: white;
  }

  .header:not(.header--scrolled):not(.header--menu-open) .menu-toggle span {
    background: white;
  }
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .amenities__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rooms__floors {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
  }

  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 0 20px;
  }

  .hero__eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }

  .hero__title {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 260px;
  }

  .hero__content .btn--lg {
    padding: 10px 24px;
    font-size: 0.75rem;
  }

  .hero__scroll {
    display: none;
  }

  .access__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .lang-btn {
    padding: 4px 5px;
    font-size: 0.5625rem;
  }
}
