/* ===========================
   CSS Variables & Reset
=========================== */
:root {
  --green-dark:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --gold:         #c9a84c;
  --gold-light:   #e8d08a;
  --white:        #ffffff;
  --off-white:    #f7f5f0;
  --gray-light:   #e8e4dc;
  --gray-mid:     #9e9b93;
  --text-dark:    #1e1e1e;
  --text-mid:     #4a4a4a;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

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

/* ===========================
   Header
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 61, 43, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 700;
  border-radius: 6px;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,61,43,0.82) 0%,
    rgba(26,61,43,0.55) 60%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 64px;
  animation: fadeUp 0.9s ease both;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 36px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===========================
   Info Bar
=========================== */
.info-bar {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.info-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.info-item { color: rgba(255,255,255,0.8); font-size: 0.82rem; }
.info-divider { color: rgba(255,255,255,0.2); font-size: 0.9rem; }

/* ===========================
   Section Common
=========================== */
.section { padding: 96px 0; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-label-light { color: var(--gold-light); }

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.4;
  margin-bottom: 48px;
}
.section-title-light { color: var(--white); }

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.9;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}

.photo-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-sub > div {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   Feature Cards（写真背景カード）
=========================== */
.features { background: var(--white); }

.gallery-lead {
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,18,0.88) 0%, rgba(10,30,18,0.3) 55%, transparent 100%);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card:hover::before {
  background: linear-gradient(to top, rgba(10,30,18,0.94) 0%, rgba(10,30,18,0.5) 100%);
}

.feature-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  color: var(--white);
  z-index: 1;
}

.feature-num {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card-inner h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.feature-card-inner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.feature-card:hover .feature-card-inner p { max-height: 100px; }

/* ===========================
   Photo Strip（ホバーで拡大）
=========================== */
.photo-strip {
  overflow: hidden;
  height: 220px;
}

.photo-strip-inner {
  display: flex;
  height: 100%;
  gap: 4px;
}

.strip-item {
  flex: 1;
  overflow: hidden;
  transition: flex var(--transition);
}
.strip-item:hover { flex: 2; }

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.strip-item:hover img { transform: scale(1.05); }

/* ===========================
   Gallery（写真グリッド）
=========================== */
.gallery { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-large { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.82), transparent);
  color: var(--white);
  font-size: 0.78rem;
  padding: 24px 16px 12px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===========================
   Photo Rows（交互レイアウト）
=========================== */
.photo-rows { background: var(--white); }

.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.photo-row:last-child { margin-bottom: 0; }

.photo-row-rev { direction: rtl; }
.photo-row-rev > * { direction: ltr; }

.photo-row-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.photo-row-img img { transition: transform 0.6s ease; }
.photo-row-img:hover img { transform: scale(1.04); }

.photo-row-text .section-label { display: block; margin-bottom: 10px; }

.photo-row-text h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 18px;
}

.photo-row-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ===========================
   Hours（背景写真付き）
=========================== */
.hours {
  position: relative;
  padding: 96px 0;
}
.hours-bg {
  position: absolute;
  inset: 0;
}
.hours-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hours-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,18,0.84);
}
.hours-container { position: relative; z-index: 2; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hours-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  transition: var(--transition);
  color: var(--white);
}
.hours-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.13);
}

.hours-icon { font-size: 2.2rem; margin-bottom: 16px; }

.hours-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hours-period { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }

.hours-time {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hours-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
}

.hours-closed .hours-time { color: rgba(255,255,255,0.4); }

/* ===========================
   Price
=========================== */
.price { background: var(--green-dark); }

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

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-day {
  padding: 20px 24px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.price-amount {
  padding: 0 24px 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.price-unit { font-size: 1rem; color: rgba(255,255,255,0.7); }
.price-card-weekend .price-num { color: var(--gold); }

.price-img { height: 160px; overflow: hidden; }
.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.price-card:hover .price-img img { transform: scale(1.05); }

.price-notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.1);
}
.price-note-item { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ===========================
   Facility（背景写真付き＋設備写真）
=========================== */
.facility { position: relative; padding: 96px 0; }

.facility-bg { position: absolute; inset: 0; }
.facility-bg-img { width: 100%; height: 100%; object-fit: cover; }
.facility-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 18, 0.88);
}

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

.facility-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.facility-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.12);
}
.facility-photo img { transition: transform 0.5s ease; }
.facility-photo:hover img { transform: scale(1.06); }

.facility-photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  padding: 24px 14px 10px;
  font-weight: 500;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.facility-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.facility-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.facility-card.available { border-color: rgba(82,183,136,0.4); }
.facility-card.unavailable { opacity: 0.55; }

.facility-icon { font-size: 1.8rem; margin-bottom: 10px; }
.facility-name { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 8px; line-height: 1.4; }
.facility-status { font-size: 0.8rem; font-weight: 700; }
.facility-card.available .facility-status { color: var(--green-light); }
.facility-card.unavailable .facility-status { color: var(--gray-mid); }

/* ===========================
   Photo Banner（5分割帯）
=========================== */
.photo-banner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 280px;
}

.photo-banner-item {
  overflow: hidden;
  position: relative;
}
.photo-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-banner-item:hover img { transform: scale(1.08); }

.photo-banner-text {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
}
.photo-banner-text h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===========================
   Access（写真2枚追加）
=========================== */
.access { background: var(--off-white); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.access-address-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.access-address {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-light);
}
.access-address p { color: var(--text-mid); font-size: 0.95rem; }

.access-tel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-light);
}

.tel-link {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-mid);
  display: block;
  margin-top: 4px;
  transition: var(--transition);
}
.tel-link:hover { color: var(--green-dark); }

.access-routes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.access-route {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--gray-light);
}
.route-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.access-route strong { display: block; font-size: 0.85rem; color: var(--green-dark); margin-bottom: 4px; }
.access-route p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.map-btn { width: 100%; }

.access-photos { display: flex; flex-direction: column; gap: 12px; }

.access-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}
.access-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.access-photo-caption {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.access-photo-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.access-photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.access-photo-item img { transition: transform 0.5s ease; }
.access-photo-item:hover img { transform: scale(1.05); }

/* ===========================
   Contact
=========================== */
.contact { position: relative; padding: 96px 0; text-align: center; }

.contact-bg { position: absolute; inset: 0; }
.contact-bg-img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,61,43,0.92), rgba(10,20,15,0.88));
}
.contact > .container { position: relative; z-index: 2; }

.contact-desc { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 24px; }
.contact-tel {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-tel:hover { color: var(--white); }

.contact-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 32px; }

.contact-hours-mini {
  display: inline-flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.07);
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===========================
   Footer
=========================== */
.footer {
  background: var(--green-dark);
  padding: 48px 0 32px;
  border-top: 2px solid var(--gold);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.footer-info p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.8; }

.footer-notice {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.back-to-top {
  font-size: 0.8rem;
  color: var(--gold-light);
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.back-to-top:hover { background: rgba(201,168,76,0.1); }

/* ===========================
   Animations
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card { height: 280px; }
  .feature-card .feature-card-inner p { max-height: 80px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 1; }

  .photo-row, .photo-row-rev { grid-template-columns: 1fr; direction: ltr; }
  .photo-row-rev > * { direction: ltr; }
  .photo-row-img { aspect-ratio: 16/9; }

  .photo-banner { grid-template-columns: repeat(3, 1fr); height: auto; }
  .photo-banner-item { height: 180px; }
  .photo-banner-item:nth-child(4),
  .photo-banner-item:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(26,61,43,0.98);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; font-size: 1rem; width: 100%; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }

  .about-grid,
  .access-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { order: -1; }

  .info-bar-inner { gap: 6px 16px; }
  .info-divider { display: none; }

  .feature-cards { grid-template-columns: 1fr 1fr; }
  .feature-card { height: 300px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }

  .hours-grid { grid-template-columns: 1fr; gap: 14px; }

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

  .facility-photos,
  .facility-grid { grid-template-columns: 1fr 1fr; }

  .photo-banner { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-banner-item { height: 160px; }
  .photo-banner-item:nth-child(4),
  .photo-banner-item:nth-child(5) { display: none; }

  .photo-strip { height: 160px; }

  .access-photo-sub { grid-template-columns: 1fr 1fr; }

  .section { padding: 64px 0; }

  .contact-hours-mini { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .feature-cards,
  .facility-photos,
  .facility-grid,
  .gallery-grid { grid-template-columns: 1fr; }

  .photo-banner { grid-template-columns: 1fr; }
  .photo-banner-item:nth-child(2),
  .photo-banner-item:nth-child(4),
  .photo-banner-item:nth-child(5) { display: none; }

  .photo-banner-item { height: 180px; }

  .access-photo-sub { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
