/* =============================================
   播磨自然高原 プレミアム山荘 LP - style.css
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #c8a96e;
  --gold-light: #e2c9a0;
  --gold-dark: #a07840;
  --dark: #1a1712;
  --text: #3a3228;
  --text-light: #6b5e52;
  --white: #ffffff;
  --border: #e0d8cc;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --shadow: 0 4px 24px rgba(30,20,10,0.10);
  --shadow-lg: 0 12px 48px rgba(30,20,10,0.16);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  /* 上部の黒筋を完全除去 */
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 14px;
}
.section-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.9; }

/* ---------- Button ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(160,120,64,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,120,64,0.45); }

/* =============================================
   HEADER — 黒筋ゼロ設計
   ============================================= */
html, body { margin-top: 0; padding-top: 0; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* 初期状態：透明 */
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  /* 黒線を出さない */
  border: none;
  border-bottom: none;
  outline: none;
}

.site-header.scrolled {
  background: rgba(20,16,10,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo { display: flex; flex-direction: column; }
.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.header-nav a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 0.8rem !important;
}

/* ハンバーガー */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(20,16,10,0.97);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 360px; }
.mobile-nav-link {
  padding: 14px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-cta { color: var(--gold-light) !important; font-weight: 500; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 上部に黒線が出ないよう margin/padding ゼロ */
  margin-top: 0;
  padding-top: 0;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  margin: 0;
  padding: 0;
  /* 黒筋対策：border/outline をゼロに */
  border: none;
  outline: none;
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,7,3,0.80) 0%,
    rgba(10,7,3,0.50) 55%,
    rgba(10,7,3,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 28px;
  padding-top: 70px; /* ヘッダー分の余白 */
  animation: fadeUp 1s ease 0.3s both;
}

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

.hero-eyecatch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyecatch::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.82rem, 2.5vw, 0.95rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.95;
  margin-bottom: 28px;
}

.hero-cta { font-size: 0.88rem; padding: 15px 24px; margin-bottom: 22px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(200,169,110,0.45);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* =============================================
   VALUE SECTION
   ============================================= */
.value-section { background: #fff; }

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

.value-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.value-card-img-wrap { height: 200px; overflow: hidden; }
.value-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.value-card:hover .value-card-img { transform: scale(1.06); }

.value-card-body { padding: 24px 20px; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.22em;
  color: var(--gold); margin-bottom: 8px;
  text-transform: uppercase;
}
.value-num span { font-size: 1.1rem; font-weight: 600; }
.value-card-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.value-card-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.85; }

/* =============================================
   GALLERY SECTION — 全写真表示
   ============================================= */
.gallery-section { background: #1a1712; padding: 72px 0; }
.gallery-section .section-title { color: #fff; }

/* スクロール可能なグリッド：全画像を必ず表示 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* 固定の縦横比で必ず表示 */
  aspect-ratio: 4/3;
  border-radius: 2px;
}

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

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,7,3,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-overlay { position: absolute; inset: 0; background: rgba(8,5,2,0.93); cursor: pointer; }

.lightbox-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: 92vw; max-height: 92vh;
}
.lightbox-img {
  max-width: 88vw; max-height: 78vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 12px; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute; color: rgba(255,255,255,0.8);
  font-size: 1.2rem; padding: 10px;
  transition: color 0.2s;
}
.lightbox-close { top: -44px; right: 0; font-size: 1.4rem; }
.lightbox-prev { left: -52px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -52px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold-light); }

/* =============================================
   SCENE SECTION
   ============================================= */
.scene-section { background: #f9f8f6; }

.scene-list { display: flex; flex-direction: column; gap: 64px; }

.scene-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.scene-item--right { direction: rtl; }
.scene-item--right > * { direction: ltr; }

.scene-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.scene-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.scene-item:hover .scene-img-wrap img { transform: scale(1.04); }

.scene-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.28em;
  color: var(--gold); margin-bottom: 10px; text-transform: uppercase;
}
.scene-num span { font-size: 1.3rem; font-weight: 600; }
.scene-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600; color: var(--dark);
  margin-bottom: 16px; line-height: 1.4;
  position: relative; padding-bottom: 14px;
}
.scene-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px; background: var(--gold);
}
.scene-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.95; }

/* =============================================
   SPEC SECTION
   ============================================= */
.spec-section { background: #fff; }

.spec-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spec-price-block {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 40px 32px; text-align: center;
}
.spec-price-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.8); margin-bottom: 6px; text-transform: uppercase;
}
.spec-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 600; color: #fff; line-height: 1;
}
.spec-price span { font-size: 1.2rem; font-weight: 400; margin-left: 4px; }
.spec-price-note { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 8px; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem; line-height: 1.7;
}
.spec-table th {
  width: 180px; color: var(--gold-dark);
  font-weight: 500; white-space: nowrap;
  font-family: var(--font-serif);
  background: #faf8f5;
}
.spec-table th i { margin-right: 6px; font-size: 0.82rem; }
.spec-table td { color: var(--text); }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }

/* =============================================
   AREA SECTION
   ============================================= */
.area-section { background: #f9f8f6; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.area-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff; font-size: 1.2rem;
}
.area-card-title { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.area-card-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.85; }

.area-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 340px;
}
.area-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: linear-gradient(160deg, #241c13 0%, #3a2b1e 100%);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-header { text-align: center; margin-bottom: 52px; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 600; color: #fff;
  line-height: 1.55; margin-bottom: 20px;
}
.contact-lead { font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 2; }

/* 連絡先ボックス */
.contact-info-box {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.contact-info-inner { padding: 8px 0; }

.contact-info-item {
  display: flex; align-items: center;
  gap: 24px; padding: 28px 40px;
}
.contact-info-divider {
  height: 1px;
  background: rgba(200,169,110,0.18);
  margin: 0 40px;
}
.contact-info-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
}
.contact-info-body { display: flex; flex-direction: column; gap: 4px; }
.contact-info-label {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: #fff; letter-spacing: 0.04em;
}
.contact-info-tel {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.06em; line-height: 1.2;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.contact-info-tel:hover { color: #fff; }
.contact-info-note { font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1a1712; padding: 52px 0 36px;
  text-align: center;
  border-top: 1px solid rgba(200,169,110,0.18);
}
.footer-inner { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.footer-logo { font-family: var(--font-serif); font-size: 1rem; color: var(--gold-light); margin-bottom: 6px; }
.footer-address { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-bottom: 24px; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 24px; margin-bottom: 28px; }
.footer-nav a { font-size: 0.78rem; color: rgba(255,255,255,0.48); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* =============================================
   FLOAT CTA
   ============================================= */
.float-cta {
  position: fixed; bottom: 24px; right: 20px;
  z-index: 900;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-cta-btn {
  font-size: 0.85rem; padding: 13px 22px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(160,120,64,0.5);
}

/* =============================================
   RESPONSIVE — TABLET ≤1024px
   ============================================= */
@media (max-width: 1024px) {
  .header-inner { padding: 14px 20px; }
  .header-nav { gap: 18px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-item { gap: 32px; }
}

/* =============================================
   RESPONSIVE — MOBILE ≤768px
   スマホ縦型完全対応
   ============================================= */
@media (max-width: 768px) {
  /* セクション余白を縮小 */
  .section { padding: 52px 0; }

  /* ヘッダー */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner { padding: 14px 18px; }
  .logo-main { font-size: 0.78rem; }

  /* ヒーロー：スマホで縦100vh、文字を収める */
  .hero { height: 100svh; min-height: 560px; }
  .hero-content {
    padding: 0 18px;
    padding-top: 80px;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(1.05rem, 5.5vw, 1.4rem); line-height: 1.7; }
  .hero-sub { font-size: 0.8rem; margin-bottom: 20px; }
  .hero-cta {
    font-size: 0.78rem;
    padding: 13px 16px;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
  }
  .hero-badges { gap: 6px; }
  .badge { font-size: 0.7rem; padding: 4px 10px; }

  /* Value：1列 */
  .value-grid { grid-template-columns: 1fr; gap: 18px; }
  .value-card-img-wrap { height: 180px; }

  /* Gallery：2列、全写真必ず表示 */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .gallery-item { aspect-ratio: 4/3; }

  /* Lightbox */
  .lightbox-prev { left: -14px; }
  .lightbox-next { right: -14px; }

  /* Scene：縦1列 */
  .scene-item,
  .scene-item--right {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 20px;
  }
  .scene-list { gap: 44px; }
  .scene-img-wrap { aspect-ratio: 16/9; }

  /* Spec テーブル */
  .spec-table th { width: 110px; font-size: 0.8rem; }
  .spec-table th,
  .spec-table td { padding: 13px 16px; font-size: 0.82rem; }
  .spec-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Area：2列 */
  .area-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .area-card { padding: 22px 14px; }
  .area-map-wrap { height: 240px; }

  /* Contact */
  .contact-info-item { padding: 22px 24px; gap: 16px; }
  .contact-info-divider { margin: 0 24px; }
  .contact-info-icon { width: 42px; height: 42px; font-size: 1rem; }
  .contact-info-value { font-size: 1rem; }
  .contact-info-tel { font-size: clamp(1.5rem, 8vw, 2rem); }

  /* Float CTA */
  .float-cta { bottom: 14px; right: 14px; }
  .float-cta-btn { font-size: 0.8rem; padding: 12px 18px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE ≤480px
   ============================================= */
@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .area-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.15rem; }
  .contact-info-item { padding: 18px 18px; gap: 14px; }
  .contact-info-divider { margin: 0 18px; }
}
