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

:root {
  --color-primary: #8b5e3c;
  --color-primary-dark: #6b4528;
  --color-primary-light: #c4915a;
  --color-secondary: #5a7a5a;
  --color-accent: #d4a853;
  --color-text: #2c2c2c;
  --color-text-light: #666;
  --color-bg: #faf8f5;
  --color-bg-light: #f2ede6;
  --color-white: #ffffff;
  --color-border: #e0d6c8;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

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

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

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

ul {
  list-style: none;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.4;
}

/* ===========================
   LAYOUT HELPERS
=========================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

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

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.section-divider span {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-primary-light);
  position: relative;
}
.section-divider span::before,
.section-divider span::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.section-divider span::before { left: -10px; }
.section-divider span::after  { right: -10px; }

.section-desc {
  color: var(--color-text-light);
  font-size: 0.97rem;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   NAVBAR
=========================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 252, 247, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-kanji {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.navbar.scrolled .logo-kanji {
  color: var(--color-primary);
}
.logo-roman {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: var(--transition);
}
.navbar.scrolled .logo-roman {
  color: var(--color-text-light);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.nav-links a.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-family: var(--font-serif);
}
.nav-links a.nav-cta:hover {
  background: var(--color-primary-dark);
}
.nav-links a.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  opacity: 0.85;
  font-family: var(--font-serif);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.92;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.hero-scroll-indicator span {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 1.5s ease infinite;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* ===========================
   NOTICE BAR
=========================== */
.notice-bar {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 12px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.concept-image-wrap {
  position: relative;
}
.concept-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.concept-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
}

.concept-text h3 {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
}
.concept-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 2;
}

.concept-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
  font-size: 0.88rem;
  font-weight: 500;
}
.feature-item i {
  color: var(--color-primary);
  font-size: 1rem;
  min-width: 16px;
}

/* ===========================
   STATS
=========================== */
.stats-section {
  background: var(--color-primary-dark);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* ===========================
   ROOMS
=========================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-card--wide {
  grid-column: 1 / -1;
}
.room-card--wide .room-img-wrap img {
  height: 400px;
}
.room-card--wide .room-info {
  padding: 32px 40px;
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.room-badge--new { background: var(--color-secondary); }
.room-badge--premium { background: var(--color-accent); color: var(--color-text); }

.room-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-size {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.room-name {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}
.room-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}
.room-amenities li {
  font-size: 0.82rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-amenities li i {
  color: var(--color-secondary);
  font-size: 0.75rem;
}

.room-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.room-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}
.room-price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item--large img {
  height: 100%;
  min-height: 412px;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i {
  color: var(--color-white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 24px; font-size: 1.8rem; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ===========================
   PRICE TABLE
=========================== */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.92rem;
}
.price-table thead {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.price-table th {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.price-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.price-table tbody tr:hover {
  background: var(--color-bg-light);
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-premium td {
  background: #fff9f0;
  font-weight: 600;
  color: var(--color-primary-dark) !important;
}

.price-notes {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}
.price-notes h4 {
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-notes h4 i { color: var(--color-primary-light); }
.price-notes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.price-notes li {
  font-size: 0.88rem;
  color: var(--color-text-light);
  padding-left: 16px;
  position: relative;
}
.price-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}
.price-note-text {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ===========================
   ACCESS
=========================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.access-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.access-item > i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
}
.access-item h4 {
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  font-family: var(--font-serif);
}
.access-item p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.access-item small { font-size: 0.78rem; }

.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  gap: 12px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
}
.map-placeholder i {
  font-size: 3rem;
  color: var(--color-primary-light);
  opacity: 0.5;
}
.map-placeholder p { font-weight: 500; }
.map-placeholder small { font-size: 0.78rem; opacity: 0.7; }

/* ===========================
   REVIEWS
=========================== */
.reviews-section { }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* ===========================
   RESERVATION FORM
=========================== */
.reserve-section {
  background: linear-gradient(135deg, #f5ede3 0%, #faf8f5 100%);
}

.reserve-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.reserve-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
.required {
  color: #e25555;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}
.form-group textarea { resize: vertical; }

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-success {
  margin-top: 24px;
  padding: 20px;
  background: #edf7ed;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  text-align: center;
  color: #2e7d32;
}
.form-success i {
  font-size: 2rem;
  margin-bottom: 8px;
}
.form-success p { font-size: 0.9rem; line-height: 1.8; }

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: #1e1610;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-brand .logo-kanji {
  color: var(--color-accent);
  font-size: 1.6rem;
}
.footer-brand .logo-roman {
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact p i {
  color: var(--color-accent);
  margin-top: 3px;
  min-width: 14px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.75);
}

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .concept-grid { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--large { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .navbar.scrolled { padding: 12px 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #faf8f5;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--color-text) !important; font-size: 1rem; }
  .nav-links a.nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section { padding: 64px 0; }

  .concept-grid { grid-template-columns: 1fr; gap: 32px; }
  .concept-img { height: 300px; }
  .concept-img-accent { display: none; }
  .concept-features { grid-template-columns: 1fr; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--wide { grid-column: 1; }
  .room-card--wide .room-img-wrap img { height: 260px; }
  .room-card--wide .room-info { padding: 24px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--large img { min-height: 240px; }
  .gallery-item img { height: 160px; }

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

  .access-grid { grid-template-columns: 1fr; }
  .access-map { height: 280px; }

  .form-row { grid-template-columns: 1fr; }
  .reserve-form { padding: 28px 20px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }

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

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
