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

:root {
  --ink:        #1a1e1b;
  --ivory:      #f7f3ea;
  --paper:      #fbfaf6;
  --ivory-dark: #ede9df;
  --sage:       #6f7f68;
  --sage-light: #eef2ec;
  --deep-green: #1d3128;
  --wine:       #7a2f36;
  --wine-dark:  #5c2028;
  --gold:       #b89b5e;
  --gold-light: #f5eedf;
  --white:      #ffffff;
  --wa:         #1f7f4f;
  --text:       #2a2e2b;
  --sub:        #636860;
  --border:     #dde3d9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,246,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, height 0.3s;
}
header.shrunk { box-shadow: 0 2px 24px rgba(26,30,27,0.09); }
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 16px;
  transition: height 0.3s;
}
header.shrunk .nav-wrap { height: 56px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { height: 36px; width: auto; }
.logo-word { height: 23px; width: auto; }
.logo-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.08rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink);
}
.logo-travel {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--deep-green); text-transform: uppercase;
  margin-left: 3px; opacity: 0.7;
}
nav { display: flex; align-items: center; gap: 6px; }
nav ul { list-style: none; display: flex; gap: 0; }
nav ul a {
  text-decoration: none; color: #4f5851; font-size: 0.82rem;
  font-weight: 500; padding: 6px 12px; border-radius: 4px;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--ink); }
.nav-cta {
  background: var(--deep-green); color: var(--white) !important;
  border-radius: 5px; padding: 9px 18px;
  font-size: 0.83rem; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: #10261d; }
.nav-wa { display: none; }
.language-switch {
  display: inline-flex; align-items: center;
  gap: 4px; margin-left: 8px;
  padding: 3px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--paper);
}
.language-switch a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 28px; padding: 4px 12px;
  border-radius: 999px;
  color: var(--text); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.02em; line-height: 1;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.language-switch a:hover {
  background: var(--ivory-dark); color: var(--ink);
}
.language-switch a.active {
  background: var(--deep-green); color: var(--white);
}
.language-switch a.active:hover {
  background: var(--deep-green); color: var(--white);
}
@media (max-width: 720px) {
  .language-switch { margin-left: 4px; }
  .language-switch a { padding: 4px 8px; font-size: 0.68rem; }
}
/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(18,27,22,0.78) 0%,
    rgba(29,49,40,0.54) 44%,
    rgba(0,0,0,0.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 80px 0 100px;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--gold); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 22px; opacity: 0.95;
}
.hero-h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 24px; letter-spacing: 0;
}
.hero-sub {
  font-size: 1.02rem; opacity: 0.9;
  margin-bottom: 40px; line-height: 1.85;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1f7f4f; color: var(--white);
  padding: 14px 28px; border-radius: 5px;
  text-decoration: none; font-weight: 700; font-size: 0.93rem;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  border: none; cursor: pointer; font-family: inherit;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(10,76,42,0.25);
}
.btn-wa:hover {
  background: #176a40;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10,76,42,0.34);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.55); color: var(--white);
  padding: 13px 24px; border-radius: 5px;
  text-decoration: none; font-weight: 600; font-size: 0.93rem;
  transition: all 0.2s; letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.9); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); color: var(--ink);
  padding: 11px 22px; border-radius: 5px;
  text-decoration: none; font-weight: 700; font-size: 0.87rem;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 8px;
}
.btn-outline-dark:hover { border-color: var(--ink); background: var(--ivory); }
.btn-submit-wa { width: 100%; justify-content: center; font-size: 0.97rem; padding: 15px; }

/* ── HERO SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.12); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #172b23; padding: 14px 0;
  border-bottom: 1px solid rgba(184,155,94,0.32);
}
.trust-inner {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: center; gap: 0;
}
.trust-item {
  color: rgba(255,255,255,0.82); font-size: 0.76rem; font-weight: 600;
  padding: 4px 26px; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
}
.trust-num {
  color: var(--gold); font-weight: 900; font-size: 0.95rem;
  letter-spacing: 0; line-height: 1;
}
.trust-sep {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-ivory { background: var(--ivory); }
.bg-dark  { background: var(--ink); }
.bg-green { background: var(--deep-green); }

.section-header { margin-bottom: 52px; }
.section-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.section-label.light { color: rgba(255,255,255,0.45); }
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700; margin-bottom: 14px;
  line-height: 1.22; letter-spacing: 0;
  color: var(--ink);
}
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--sub); font-size: 0.93rem; line-height: 1.85;
  max-width: 640px;
}
.section-sub.light { color: rgba(255,255,255,0.62); }

/* ── TRAVEL SCENES ── */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.scene-card {
  min-height: 250px;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid rgba(29,49,40,0.12);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.28s, transform 0.28s;
}
.scene-card:hover {
  box-shadow: 0 12px 40px rgba(26,30,27,0.09);
  transform: translateY(-3px);
}
.scene-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.scene-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  color: var(--deep-green);
  margin: 18px 0 12px;
}
.scene-card p {
  color: var(--sub);
  font-size: 0.88rem;
  line-height: 1.8;
}
.scene-card strong {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.7;
}
.scene-band {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 6px;
  background: #edf2ec;
  border-left: 3px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.scene-band-label {
  display: block;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.scene-band p {
  color: var(--deep-green);
  font-weight: 700;
  line-height: 1.65;
}

/* ── FEATURES ── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.promo-grid-single {
  grid-template-columns: minmax(280px, 360px);
}
.promo-card {
  display: block;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(29,49,40,0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(26,30,27,0.12);
}
.promo-image {
  position: relative;
  min-height: 172px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: center/cover no-repeat;
  overflow: hidden;
}
.promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,27,22,0.84), rgba(18,27,22,0.12));
}
.promo-badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(159,29,45,0.88);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-image strong {
  position: relative;
  z-index: 1;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.42rem;
  line-height: 1.28;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.promo-card h3 {
  min-height: 72px;
  padding: 14px 16px 16px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.45;
  color: var(--deep-green);
}
.promo-more {
  margin-top: 32px;
  text-align: center;
}
.promo-more a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 34px;
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
  background: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
}

/* ── CITY GRID ── */
.tour-carousel-wrap {
  position: relative;
}
.tour-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 22px;
}
.tour-carousel::-webkit-scrollbar { display: none; }
.city-card {
  position: relative; border-radius: 6px; overflow: hidden;
  text-decoration: none;
  background: #8a9e94 center/cover no-repeat;
  display: block;
  height: 280px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.city-card:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(26,30,27,0.22); }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,27,22,0.9) 0%, rgba(0,0,0,0.08) 62%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px 22px;
  transition: background 0.3s;
}
.city-card:hover .city-overlay {
  background: linear-gradient(to top, rgba(26,30,27,0.92) 0%, rgba(0,0,0,0.15) 65%);
}
.city-region {
  color: rgba(255,255,255,0.6); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 4px;
}
.city-overlay h3 {
  color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 3px;
}
.city-desc { color: rgba(255,255,255,0.72); font-size: 0.76rem; }
.city-card--soon { cursor: default; opacity: 0.35; pointer-events: none; }
.tour-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(29,49,40,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--deep-green);
  box-shadow: 0 12px 34px rgba(26,30,27,0.15);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.tour-arrow:hover {
  background: var(--deep-green);
  color: #fff;
  box-shadow: 0 16px 42px rgba(26,30,27,0.22);
  transform: translateY(-50%) scale(1.06);
}
.tour-arrow-prev { left: -22px; }
.tour-arrow-next { right: -22px; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid rgba(29,49,40,0.12); border-radius: 6px;
  overflow: hidden; background: var(--white);
  transition: box-shadow 0.28s, transform 0.28s;
}
.service-item:hover { box-shadow: 0 14px 40px rgba(26,30,27,0.1); transform: translateY(-3px); }
.service-img {
  background: #aaa center/cover no-repeat;
  min-height: 160px;
}
.service-body { padding: 24px 22px; }
.service-tag {
  display: inline-block;
  background: var(--gold-light); color: var(--gold);
  font-size: 0.67rem; font-weight: 800;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.07em; margin-bottom: 10px;
}
.service-body h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--deep-green);
  display: flex; align-items: center; gap: 10px;
}
.service-body h3::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.service-body p { font-size: 0.85rem; color: var(--sub); line-height: 1.75; }

/* ── SPECIAL (dark bg) ── */
.special-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.special-item {
  padding: 36px 30px;
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 2px solid var(--gold);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  transition: background 0.25s;
}
.special-item:hover { background: rgba(255,255,255,0.07); }
.special-num {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 3.8rem; font-weight: 400; color: var(--gold);
  opacity: 0.25; line-height: 1; margin-bottom: 16px;
  letter-spacing: 0;
}
.special-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.4; }
.special-item p { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.85; }

/* ── FLOW ── */
.flow-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 44px;
}
.flow-item {
  padding: 34px 28px;
  border: 1px solid rgba(29,49,40,0.12); border-radius: 6px;
  border-top: 2px solid var(--sage);
  background: var(--white);
  transition: box-shadow 0.28s;
}
.flow-item:hover { box-shadow: 0 8px 30px rgba(26,30,27,0.08); }
.flow-num {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 3rem; font-weight: 400; color: var(--sage);
  opacity: 0.3; line-height: 1; margin-bottom: 14px;
}
.flow-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--deep-green); margin-bottom: 8px; }
.flow-item p { font-size: 0.85rem; color: var(--sub); line-height: 1.78; }
.flow-cta { text-align: center; }

/* ── BIZ ── */
.biz-wrap {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}
.biz-desc {
  color: var(--sub); font-size: 0.93rem; line-height: 1.85;
  margin: 18px 0 24px;
}
.biz-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.biz-features li {
  font-size: 0.88rem; color: var(--text); font-weight: 600;
  padding: 11px 16px 11px 18px;
  border-left: 3px solid var(--sage);
  background: rgba(111,127,104,0.06);
  border-radius: 0 4px 4px 0;
}
.biz-panel {
  min-height: 420px;
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(29,49,40,0.94), rgba(17,26,21,0.96)),
    radial-gradient(circle at 20% 20%, rgba(184,155,94,0.18), transparent 34%);
  color: var(--white);
  box-shadow: 0 24px 64px rgba(26,30,27,0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.biz-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  pointer-events: none;
}
.biz-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.biz-panel-head strong {
  color: var(--gold);
  font-size: 0.78rem;
}
.biz-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 58px 0;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
.biz-route i {
  height: 1px;
  background: linear-gradient(90deg, rgba(184,155,94,0.15), rgba(184,155,94,0.85), rgba(184,155,94,0.15));
  position: relative;
}
.biz-route i::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(184,155,94,0.12);
}
.biz-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.biz-panel-grid div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 18px;
}
.biz-panel-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.biz-panel-grid strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.biz-panel-grid p {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ── ABOUT ── */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: start;
}
.about-lead {
  padding: 32px 30px;
  background: var(--ivory); border-radius: 6px;
  border-left: 4px solid var(--gold);
  font-size: 1rem; line-height: 1.88; color: var(--sub);
}
.about-table {
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.about-row {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 16px; padding: 13px 20px; font-size: 0.87rem;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.about-row:last-child { border-bottom: none; }
.about-row:nth-child(odd) { background: var(--ivory); }
.about-label { font-weight: 700; color: var(--deep-green); font-size: 0.8rem; }

/* ── CONTACT ── */
.contact-wrap { max-width: 900px; }
.contact-cols {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: start;
}
.contact-direct {
  display: flex; flex-direction: column; gap: 12px;
}
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  background: rgba(255,255,255,0.04);
  text-decoration: none; color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.contact-method:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.contact-method.wa { border-color: rgba(37,211,102,0.3); }
.contact-method.wa:hover { border-color: var(--wa); background: rgba(37,211,102,0.08); }
.contact-icon {
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-method strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.contact-method span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.03em; }
.required { color: #f08080; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 5px;
  padding: 10px 14px; font-size: 0.9rem;
  font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s;
  background: rgba(255,255,255,0.07); color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: #2a2e2b; color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(111,127,104,0.18);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.73rem; color: rgba(255,255,255,0.38); margin-top: -8px; }

/* ── FOOTER ── */
footer { background: #111614; color: rgba(255,255,255,0.55); padding: 52px 0 32px; }
.footer-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px; text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo .logo-name { color: rgba(255,255,255,0.8); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.82rem; transition: color 0.2s;
}
.footer-ig:hover { color: rgba(255,255,255,0.9); }
.footer-copy { font-size: 0.7rem; opacity: 0.3; letter-spacing: 0.06em; margin-top: 4px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 1; transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ── FLOATING WhatsApp ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 13px 22px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.86rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.02em;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .tour-carousel { grid-auto-columns: minmax(280px, 42vw); }
  .tour-arrow-prev { left: -10px; }
  .tour-arrow-next { right: -10px; }
  .scene-grid { grid-template-columns: 1fr; }
  .scene-card { min-height: auto; }
  .scene-band { flex-direction: column; align-items: flex-start; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid-single { grid-template-columns: minmax(280px, 360px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 160px 1fr; }
  .special-grid { grid-template-columns: 1fr 1fr; }
  .biz-wrap { grid-template-columns: 1fr; gap: 36px; }
  .biz-panel { min-height: 340px; }
  .about-wrap { grid-template-columns: 1fr; }
  .contact-cols { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  nav ul { display: none; }
  .nav-cta { display: none; }
  .nav-wa {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--wa); color: #fff; padding: 8px 14px;
    border-radius: 5px; font-weight: 700; font-size: 0.82rem;
    text-decoration: none;
  }
  .hero-content { padding: 60px 0 80px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 36px; }
  .tour-carousel {
    grid-auto-columns: minmax(250px, 82vw);
    gap: 12px;
    padding-bottom: 18px;
  }
  .city-card { height: 230px !important; }
  .tour-arrow { display: none; }
  .promo-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 130px 1fr; }
  .special-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; }
  .trust-sep { width: 40px; height: 1px; background: rgba(255,255,255,0.14); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.4rem; }
  .service-item { grid-template-columns: 1fr; }
  .service-img { min-height: 120px; }
  .biz-features li { font-size: 0.84rem; }
  .biz-panel { padding: 24px; }
  .biz-route { font-size: 1.55rem; gap: 12px; margin: 38px 0; }
  .biz-panel-grid { grid-template-columns: 1fr; }
}
