/* ========================================
   LIT 広島駅前 — Style Sheet
   ======================================== */

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

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f5f0;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-accent: #c8a87c;
  --color-accent-dark: #a88a5c;
  --color-dark: #2c2c2c;
  --color-white: #ffffff;

  --font-serif: "Noto Serif JP", "Georgia", serif;
  --font-sans: "Noto Sans JP", "Helvetica Neue", sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-logo: "Bungee Inline", "Impact", sans-serif;

  --header-height: 180px;
  --section-padding: 100px;
  --container-width: 1100px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.pc-only {
  display: none;
}

.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .pc-only {
    display: inline;
  }
  .sp-only {
    display: none;
  }
}

/* ---------- Section Common ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 400;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 36px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 14px;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  border-radius: 9999px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
}

.btn--primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ---------- Fade In Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

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

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

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

.header__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 1001;
}

.header__logo-img {
  width: min(100%, 150px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.header.is-scrolled .header__logo-img {
  filter: none;
}

.header__logo-text {
  display: none;
}

@media (max-width: 1023px) {
  .header__logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.4s ease;
    color: var(--color-white);
  }

  .header__logo-text-en {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .header__logo-text-jp {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
  }

  .header.is-scrolled .header__logo-text {
    color: var(--color-dark);
  }
}

/* Nav */
.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header.is-scrolled .header__nav-link {
  color: var(--color-dark);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
}

.header__instagram {
  color: var(--color-white);
  transition: color 0.4s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__instagram-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.header__instagram:hover {
  color: var(--color-accent);
}

.header.is-scrolled .header__instagram {
  color: var(--color-dark);
}

.header.is-scrolled .header__instagram:hover {
  color: var(--color-accent);
}

.header__cta {
  display: none;
  padding: 8px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  background-color: var(--color-accent);
  color: var(--color-white);
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--color-accent-dark);
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-block;
  }
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.header.is-scrolled .header__burger span {
  background-color: var(--color-dark);
}

.header__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.header__nav.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.97);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.header__nav.is-open .header__nav-list {
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.header__nav.is-open .header__nav-link {
  font-size: 18px;
  color: var(--color-white);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__slider {
  width: 100%;
  height: 100%;
}

.hero__slider .swiper-wrapper {
  height: 100%;
}

.hero__slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  width: 90%;
  max-width: 600px;
}

/* hero__content mobile override moved to bottom responsive block */

.hero__logo-wrap {
  position: absolute;
  left: -5%;
  top: 35%;
  transform: none;
  z-index: 2;
  width: 550px;
  opacity: 0;
  animation: fadeUp 1s ease 0.1s forwards;
}

.hero__logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* hero__logo-wrap mobile override moved to bottom responsive block */

.hero__subtitle {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 300;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

@media (min-width: 768px) {
  .hero__content {
    max-width: 1100px;
  }
  .hero__title {
    font-size: 48px;
  }
}

/* hero__title/subtitle mobile override moved to bottom responsive block */

.hero__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(200, 168, 124, 0.4);
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero__badge-icon {
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.hero__badge-text {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.hero__badge-text strong {
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  margin-left: 2px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.hero__scroll span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* ========================================
   CONCEPT
   ======================================== */
.concept__body {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.concept__lead {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .concept__lead {
    font-size: 20px;
  }
}

.concept__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 16px;
}

.concept__desc--highlight {
  color: var(--color-text);
  font-size: 15px;
  margin-top: 24px;
  padding: 20px;
  background-color: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
}

.concept__desc--highlight strong {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.concept__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .concept__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.concept__feature {
  text-align: center;
  padding: 32px 20px;
}

.concept__feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  color: var(--color-accent);
}

.concept__feature-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.concept__feature-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   ROOMS
   ======================================== */
.rooms__gallery {
  margin-bottom: 48px;
  overflow: hidden;
}

.rooms__slider {
  border-radius: 8px;
  overflow: hidden;
}

.rooms__slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .rooms__slider img {
    height: 520px;
  }
}

.rooms__slider .swiper-button-prev,
.rooms__slider .swiper-button-next {
  color: var(--color-white);
}

.rooms__slider .swiper-button-prev::after,
.rooms__slider .swiper-button-next::after {
  font-size: 20px;
}

.rooms__slider .swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: 0.5;
}

.rooms__slider .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--color-accent);
}

.rooms__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .rooms__info {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.rooms__details {
  flex: 1;
}

.rooms__details-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.rooms__details-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
}

.rooms__checkinout {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.rooms__time {
  text-align: center;
  padding: 20px 28px;
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.rooms__time-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.rooms__time-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.rooms__amenities-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-align: center;
}

.rooms__amenities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .rooms__amenities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rooms__amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.rooms__amenities-list li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ========================================
   FACILITIES
   ======================================== */
.facilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .facilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.facilities__card {
  background-color: var(--color-bg-alt);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.facilities__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.facilities__card-img {
  overflow: hidden;
  height: 220px;
}

.facilities__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.facilities__card-body {
  padding: 24px;
}

.facilities__card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.facilities__card-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ========================================
   FAMILY BANNER
   ======================================== */
.family-banner {
  position: relative;
  padding: 100px 24px;
  background-image: url('https://lit-hiroshimaekimae.com/serviceimg/gourmet/315698/pg-1757646229155-5667.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .family-banner {
    background-attachment: scroll;
  }
}

.family-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.7);
}

.family-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.family-banner__label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.family-banner__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .family-banner__title {
    font-size: 36px;
  }
}

.family-banner__desc {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ========================================
   ACCESS
   ======================================== */
.access__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .access__body {
    flex-direction: row;
    gap: 48px;
  }
}

.access__map {
  flex: 1;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .access__map iframe {
    min-height: 400px;
  }
}

.access__info {
  flex: 1;
}

.access__detail-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.access__dl {
  margin-bottom: 32px;
}

.access__dl dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 4px;
  margin-top: 16px;
}

.access__dl dt:first-child {
  margin-top: 0;
}

.access__dl dd {
  font-size: 14px;
  line-height: 1.8;
}

.access__dl dd a {
  color: var(--color-accent-dark);
}

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

.access__nearby-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.access__nearby-list li {
  font-size: 14px;
  color: var(--color-text-light);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.access__nearby-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* ========================================
   RESERVATION
   ======================================== */
.reservation__body {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.reservation__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 40px;
}

.reservation__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.reservation__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out);
}

.reservation__btn:hover {
  border-color: var(--color-accent);
  background-color: var(--color-bg-alt);
}

.reservation__btn-arrow {
  color: var(--color-accent);
  display: flex;
  transition: transform 0.3s ease;
}

.reservation__btn:hover .reservation__btn-arrow {
  transform: translateX(4px);
}

.reservation__phone {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reservation__phone-label {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.reservation__phone-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.reservation__phone-number svg {
  color: var(--color-accent);
}

.reservation__phone-number:hover {
  color: var(--color-accent);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

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

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__address {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer__address a {
  color: rgba(255, 255, 255, 0.8);
}

.footer__address a:hover {
  color: var(--color-accent);
}

.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  display: inline-flex;
}

.footer__social a:hover {
  color: var(--color-accent);
}

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

.footer__nav a {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__group-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer__group-link {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.footer__group-link:hover {
  color: var(--color-accent);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE — Tablet & Mobile (max-width: 1023px)
   ======================================== */
@media (max-width: 1023px) {
  :root {
    --header-height: 64px;
    --section-padding: 72px;
  }

  /* Header tablet/mobile */
  .header__logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
  }

  .header__logo-img {
    width: auto;
    height: 52px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .header__actions {
    display: none;
  }

  /* Hero tablet/mobile */
  .hero__logo-wrap {
    display: none;
  }

  .hero__content {
    bottom: 14%;
  }
}

/* ========================================
   RESPONSIVE — Mobile (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
  }

  .header__burger {
    width: 24px;
    height: 24px;
  }

  /* Hero mobile */
  .hero__content {
    bottom: auto;
    top: auto;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
  }

  .hero__title {
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    transform: translateX(13px);
  }

  .hero__tags {
    font-size: 12px;
  }

  .hero__badge {
    padding: 10px 22px;
    gap: 8px;
    margin-top: 16px;
  }

  .hero__badge-text {
    font-size: 13px;
  }

  .hero__badge-text strong {
    font-size: 17px;
  }

  .hero__badge-icon svg {
    width: 15px;
    height: 15px;
  }

  .hero__scroll {
    bottom: 16px;
  }

  /* Section headers mobile */
  .section__header {
    margin-bottom: 36px;
  }

  .section__title {
    font-size: 24px;
  }

  /* Concept mobile */
  .concept__body {
    margin-bottom: 40px;
  }

  .concept__lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .concept__desc {
    font-size: 13px;
  }

  .concept__desc--highlight {
    font-size: 14px;
    padding: 16px;
  }

  .concept__feature {
    padding: 20px 16px;
  }

  .concept__features {
    gap: 16px;
  }

  /* Rooms mobile */
  .rooms__slider img {
    height: 280px;
  }

  .rooms__gallery {
    margin-bottom: 32px;
  }

  .rooms__details-title {
    font-size: 17px;
  }

  .rooms__info {
    margin-bottom: 32px;
  }

  .rooms__checkinout {
    justify-content: center;
  }

  .rooms__time {
    padding: 16px 22px;
  }

  .rooms__time-value {
    font-size: 24px;
  }

  /* Facilities mobile */
  .facilities__card-img {
    height: 180px;
  }

  .facilities__card-body {
    padding: 20px;
  }

  /* Family banner mobile */
  .family-banner {
    padding: 60px 20px;
  }

  .family-banner__title {
    font-size: 24px;
  }

  .family-banner__desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  /* Access mobile */
  .access__detail-title {
    font-size: 18px;
  }

  .access__map {
    min-height: 240px;
  }

  .access__map iframe {
    min-height: 240px;
  }

  /* Reservation mobile */
  .reservation__btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Footer mobile */
  .footer {
    padding: 40px 0 20px;
  }

  .footer__logo-img {
    height: 64px;
  }

  .footer__inner {
    gap: 28px;
    margin-bottom: 28px;
  }
}
