@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #0D3B5E;
  --teal:       #0E8080;
  --teal-light: #E8F4F4;
  --light-blue: #B8D4E8;
  --salmon:     #F07878;
  --red:        #CC3344;

  --sky:        #0E8080;
  --sky-dark:   #0A6060;
  --ocean:      #0D3B5E;
  --sand:       #B8D4E8;
  --sand-dark:  #94BCDA;
  --forest:     #0D3B5E;
  --leaf:       #0E8080;
  --coral:      #F07878;
  --deep-red:   #CC3344;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray-50:    #FAFAFA;
  --gray-100:   #F2F3F5;
  --gray-200:   #E4E6EA;
  --gray-300:   #CDD0D7;
  --gray-400:   #9AA0AC;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-800:   #1F2937;
  --dark:       #0D3B5E;

  --accent: #F45B69;
--accent-dark: #D93E57;
--accent-soft: rgba(244,91,105,.10);

--font-display: 'Georgia', 'Times New Roman', serif;
--font-body: 'Inter', 'Noto Sans JP', sans-serif;
  --font-mono:    'SF Mono', 'Fira Code', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:  0 4px 20px rgba(0,0,0,.10);
  --shadow-sky: 0 4px 16px rgba(14,128,128,.18);

  --transition: 0.18s ease;
  --max-w:      1160px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--gray-800);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  display: flex;
  align-items: center;
  padding: 0 clamp(12px, 3vw, 32px);
  gap: 0;
}

/* LOGO */
.header-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-right: 28px;
  flex-shrink: 0;
}
.header-logo .logo-w  { color: #0A3D5C; }
.header-logo .logo-n  { color: #0E8080; }
.header-logo .logo-h  { color: #0A3D5C; }
.header-logo .logo-dot { color: #C8D8E8; }
.header-logo .logo-com { color: #F05C5C; }

/* NAV */
.header-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  height: 100%;
}
.nav-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-left: auto;
}

/* Language selector */
.lang-select {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  transition: border-color var(--transition);
  cursor: pointer;
}
.lang-select:hover { border-color: var(--teal); }
.lang-select select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  outline: none;
  appearance: none;
}

.btn-login {
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  background: var(--white);
  transition: all var(--transition);
}
.btn-login:hover { border-color: var(--navy); color: var(--navy); }

.btn-signup {
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  transition: all var(--transition);
}
.btn-signup:hover { background: var(--sky-dark); }

/* ============================================================
   DESTINATION BAR
   ============================================================ */
.destination-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 clamp(12px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: var(--header-h);
  height: 44px;
}
.destination-bar::-webkit-scrollbar { display: none; }
.destination-bar-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid var(--gray-200);
  margin-right: 8px;
  flex-shrink: 0;
}
.dest-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 44px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-600);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.dest-btn:hover { color: var(--navy); background: var(--gray-50); }
.dest-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 600;
}
.dest-btn .flag { font-size: .95rem; }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
   .page-content {
    min-height: calc(100vh - var(--header-h));
    padding: 32px clamp(16px, 4vw, 48px) 64px;
    margin-top: var(--header-h);
  }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-desc {
  font-size: .9rem;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.65;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--gray-100);
}
.card-body { padding: 14px 16px; }
.card-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.card-tag.working { background: var(--teal-light); color: var(--teal); }
.card-tag.stay    { background: rgba(240,120,120,.10); color: #b03050; }
.card-tag.holiday { background: rgba(13,59,94,.08); color: var(--navy); }
.card-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  line-height: 1.35;
}
.card-meta {
  font-size: .75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  padding: clamp(24px, 4vw, 52px);
  margin-bottom: 32px;
}
/* information hero compact version */



.information-page .hero-content {
  max-width: 760px;
}

.information-page .hero-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: .96;
  margin-bottom: 18px;
}

.information-page .hero-sub {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.information-page .hero-actions {
  margin-top: 10px;
}

.information-page .hero-pattern {
  opacity: .22;
}

.information-page .hero-bg {
  opacity: .5;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(14,128,128,.45) 0%, transparent 50%),
    linear-gradient(to top, rgba(13,59,94,.95) 0%, rgba(13,59,94,.4) 60%, transparent 100%);
  pointer-events: none;
}
/* subtle grid pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-title em { font-style: normal; color: var(--light-blue); }
.hero-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-hero-primary {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 10px 30px rgba(244,91,105,.22);
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(244,91,105,.28);
  background: linear-gradient(135deg, var(--sky-dark), var(--accent-dark));
}
.btn-hero-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(244,91,105,.28);

  background: linear-gradient(
    135deg,
    #0E8080,
    var(--accent-dark)
  );
}
.hero-badge {
  background:
    linear-gradient(
      135deg,
      rgba(14,128,128,.18),
      rgba(244,91,105,.18)
    );

  border:
    1px solid rgba(244,91,105,.18);

  color: white;
}
.card:hover {
  border-color: rgba(244,91,105,.35);

  box-shadow:
    0 18px 50px rgba(244,91,105,.10);
}
.stat-number {
  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--accent)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-signup {
  background: var(--accent);
}

.btn-signup:hover {
  background: var(--accent-dark);
}
.btn-hero-secondary {
  padding: 9px 22px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.25);
  transition: all var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.20); }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--white);
  padding: 18px 16px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================================
   SECTION HEADER ROW
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 8px;
}
.btn-view-all {
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all var(--transition);
}
.btn-view-all:hover { border-color: var(--teal); background: var(--teal-light); }

/* ============================================================
   TABS
   ============================================================ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 20px;
}
.tab-btn {
  padding: 9px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  background: none;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.alert-info {
  background: rgba(14,128,128,.06);
  border-left: 3px solid var(--teal);
  color: var(--gray-700);
}
.alert-warn {
  background: rgba(204,51,68,.05);
  border-left: 3px solid var(--red);
  color: var(--gray-700);
}

/* ============================================================
   INFORMATION PAGE SIDEBAR
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}
@media(max-width:900px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-sidebar { position: static !important; }
}
.info-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px;
  position: sticky;
  top: calc(var(--header-h) + 52px);
}
.sidebar-title {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
  padding: 0 8px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  margin-bottom: 1px;
  cursor: pointer;
}
.sidebar-link:hover, .sidebar-link.active {
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 600;
}
.sidebar-divider { height: 1px; background: var(--gray-100); margin: 6px 0; }
.sidebar-section-head {
  font-size: .62rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 8px 2px;
}

/* Article */
.info-article {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 36px);
}
.info-article h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.info-article .lead {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}
.info-article h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
  padding: 6px 10px;
  background: var(--gray-50);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.info-article h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin: 14px 0 5px;
}
.info-article p {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 10px;
}
.info-article ul {
  padding-left: 0;
  margin-bottom: 12px;
}
.info-article ul li {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 5px;
  padding-left: 16px;
  position: relative;
  list-style: none;
}
.info-article ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
  top: -1px;
}
.country-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
}
.country-chip:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ============================================================
   COMMUNITY
   ============================================================ */
.post-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: box-shadow var(--transition);
  overflow: hidden;
}
.post-card:hover { box-shadow: var(--shadow-md); }
.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.post-author { font-size: .82rem; font-weight: 600; color: var(--gray-800); }
.post-date   { font-size: .72rem; color: var(--gray-400); }
.post-title  { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.post-body   { font-size: .82rem; color: var(--gray-600); line-height: 1.6; }
.post-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.post-action {
  display: flex; align-items: center; gap: 4px;
  font-size: .75rem; color: var(--gray-400); font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}
.post-action:hover { color: var(--teal); }
.btn-post {
  padding: 7px 16px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-post:hover { background: var(--sky-dark); }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-field { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .875rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(14,128,128,.12);
}
.search-input {
  flex: 1;
  min-width: 180px;
  padding: 7px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .82rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.search-input:focus { border-color: var(--teal); }
.filter-select {
  padding: 7px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .82rem;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.filter-select:focus { border-color: var(--teal); }

/* ============================================================
   MODAL (auth)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,59,94,.45);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%; max-width: 400px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  position: relative;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.modal-sub { font-size: .8rem; color: var(--gray-400); margin-bottom: 20px; }
.btn-full {
  width: 100%;
  padding: 10px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-top: 4px;
}
.btn-full:hover { background: var(--sky-dark); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--gray-600);
  cursor: pointer; transition: all var(--transition);
}
.modal-close:hover { background: var(--gray-200); }

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.upload-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  background: var(--gray-50);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 20px;
}
.upload-zone:hover { border-color: var(--teal); background: var(--teal-light); }
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-text { font-size: .82rem; color: var(--gray-500); }
.upload-text strong { color: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 36px clamp(12px, 3vw, 32px) 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.footer-brand .header-logo { color: var(--white); margin-bottom: 8px; }
.footer-brand .logo-w,
.footer-brand .logo-h { color: rgba(255,255,255,.9); }
.footer-brand .logo-dot { color: rgba(255,255,255,.3); }
.footer-brand p { font-size: .78rem; line-height: 1.6; max-width: 220px; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col a {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  flex-wrap: wrap;
  gap: 6px;
}
@media(max-width:900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .header-nav { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   SKELETON
   ============================================================ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .4s ease both; }
.fade-up-1 { animation-delay: .08s; }
.fade-up-2 { animation-delay: .15s; }
.fade-up-3 { animation-delay: .22s; }
.fade-up-4 { animation-delay: .30s; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.user-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--gray-400);
  padding: 2px 8px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
}
/* ============================================================
/* ============================================================
   GLOBAL PAGE LAYOUT — 왼쪽 Destination 사이드바 + 콘텐츠
   ============================================================ */
 /* ============================================================
   GLOBAL PAGE LAYOUT — 왼쪽 Destination 사이드바 + 콘텐츠
   ============================================================ */
/* ============================================================
   GLOBAL PAGE LAYOUT - Left Destination Sidebar + Content
   ============================================================ */
   .site-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    min-height: calc(100vh - var(--header-h));
    align-items: start;
    margin-top: var(--header-h);
  }
  
  .dest-sidebar {
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    scrollbar-width: none;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    padding: 24px 0 40px;
  }
  .dest-sidebar::-webkit-scrollbar { display: none; }
  
  .dest-sidebar-heading {
    font-size: .65rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 0 18px 14px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 6px;
  }
  
  .dest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 18px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    border-left: 3px solid transparent;
    line-height: 1.3;
    user-select: none;
  }
  .dest-item:hover {
    background: var(--gray-50);
    color: var(--navy);
  }
  .dest-item.active {
    background: var(--teal-light);
    color: var(--teal);
    font-weight: 700;
    border-left-color: var(--teal);
  }
  .dest-item-inner {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .dest-flag { font-size: 1.1rem; flex-shrink: 0; line-height: 1; }
  .dest-label { font-size: .85rem; }
  .dest-count {
    font-size: .68rem;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 1px 6px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .dest-item.active .dest-count {
    background: rgba(14,128,128,.15);
    color: var(--teal);
  }
  
  .site-main {
    min-width: 0;
    padding: 32px clamp(16px, 3vw, 40px) 64px;
  }
  
  @media (max-width: 900px) {
    .site-layout { grid-template-columns: 1fr; }
    .dest-sidebar { display: none; }
    .site-main { padding: 20px 16px 48px; }
  }

  /* ============================================================
   HAMBURGER + MOBILE DRAWER
   ============================================================ */

/* 햄버거 버튼 — 모바일에서만 표시 */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  padding: 8px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.hamburger-btn:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}
.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}

/* 열렸을 때 X 모양 */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 오버레이 */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background:rgba(247,243,238,.92);
  backdrop-filter:none;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* 드로어 패널 */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}

/* 드로어 헤더 */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid var(--navy);
  flex-shrink: 0;
}

/* 드로어 링크 */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.drawer-link {
  display: flex;
  align-items: center;
  padding: 13px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.drawer-link:hover {
  background: var(--gray-50);
  color: var(--navy);
  border-left-color: var(--gray-300);
}
.drawer-link.active {
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 700;
  border-left-color: var(--teal);
}

/* 모바일에서만 햄버거 표시, 기존 nav 숨김 */
@media (max-width: 640px) {
  .hamburger-btn { display: flex; }
  .header-nav    { display: none; }
  .btn-login,
  .btn-signup,
  .user-menu-wrap { display: none; }
  .lang-select   { display: none; }
}
/* Orange / coral accent */
:root {
  --orange: #F07878;
  --orange-dark: #CC3344;
}

.hero-badge {
  background: linear-gradient(135deg, var(--teal), var(--orange));
}


.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--sky-dark), var(--orange-dark));
}

.nav-link.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.cpill.fee,
.card-tag.stay {
  background: rgba(240,120,120,.12);
  color: var(--orange-dark);
}

.info-article h3 {
  border-left-color: var(--orange);
}

.qstat-num {
  color: var(--teal);
}

.country-card:hover {
  border-color: var(--orange);
}
/* Premium editorial colour refresh */

:root {
  --navy: #0B2545;
  --deep-blue: #13315C;
  --petrol: #134E5E;
  --accent: #9C735D;
  --accent-dark: #7F5A47;
  --accent-soft: rgba(194,122,99,.12);
  --light-blue: #BFD6E6;
  --dark: #0B2545;
}

/* Hero: calmer premium gradient */
.hero {
  background:
    linear-gradient(180deg, #134E5E 0%, #0B2545 100%);
}

/* Remove loud button gradient */
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194,122,99,.22);
}

.btn-hero-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 38px rgba(194,122,99,.28);
}

/* Softer secondary button */
.btn-hero-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.92);
}

/* Badge: modern museum tone */
.hero-badge {
  background: rgba(194,122,99,.16);
  color: #E8B7A6;
  border: 1px solid rgba(194,122,99,.24);
}

/* Active nav */
.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Sign up button */
.btn-signup {
  background: var(--accent);
}

.btn-signup:hover {
  background: var(--accent-dark);
}

/* Stats: no pink gradient */
.stat-number {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--accent);
}

/* Tags */
.card-tag.working {
  background: rgba(19,78,94,.10);
  color: var(--petrol);
}

.card-tag.stay {
  background: rgba(194,122,99,.12);
  color: var(--accent-dark);
}

.card-tag.holiday {
  background: rgba(11,37,69,.08);
  color: var(--navy);
}

/* Card hover: quieter */
.card:hover {
  border-color: rgba(194,122,99,.35);
  box-shadow: 0 18px 45px rgba(11,37,69,.08);
}

/* Small links/buttons */
.btn-view-all {
  color: var(--petrol);
}

.btn-view-all:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard {
  width: 100%;
  max-width: 420px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard-card {
  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 20px;

  padding: 20px;

  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 40px rgba(0,0,0,.12);
}

.dashboard-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(255,255,255,.72);

  margin-bottom: 14px;
}

.progress-bar {
  width: 100%;
  height: 10px;

  background: rgba(255,255,255,.08);

  border-radius: 999px;

  overflow: hidden;

  margin-bottom: 10px;
}

.progress-fill {
  width: 70%;
  height: 100%;

  background: var(--accent);

  border-radius: 999px;
}

.dashboard-small {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-left: 0;
  margin: 0;

  list-style: none;

  color: rgba(255,255,255,.86);
}

.dashboard-text {
  color: rgba(255,255,255,.84);
  line-height: 1.7;
}

@media (max-width: 980px) {

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
  }

}
.hero-map {
  position: relative;
  height: 260px;
  max-width: 520px;
  margin-left: auto;
}

.map-orbit {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.destination-pin {
  position: absolute;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
}

.pin-au { left: 40px; top: 60px; }
.pin-ca { right: 70px; top: 30px; }
.pin-jp { right: 20px; bottom: 60px; }
.pin-nz { left: 100px; bottom: 35px; }
.hero {
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-map {
  position: relative;
  z-index: 1;
  width: min(46%, 560px);
  height: 300px;
  margin-left: auto;
  opacity: .95;
}

.map-globe {
  position: absolute;
  inset: 42px 70px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 42% 58% 55% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.28);
  font-size: 4rem;
}

.map-line {
  position: absolute;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
}

.line-1 {
  inset: 74px 30px 94px 20px;
  transform: rotate(-8deg);
}

.line-2 {
  inset: 42px 80px 48px 92px;
  transform: rotate(18deg);
}

.line-3 {
  inset: 110px 120px 70px 42px;
  transform: rotate(35deg);
}

.map-pin {
  position: absolute;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.pin-au { left: 38px; top: 82px; }
.pin-ca { right: 72px; top: 36px; }
.pin-jp { right: 28px; bottom: 72px; }
.pin-nz { left: 120px; bottom: 42px; }

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-map {
    width: 100%;
    height: 220px;
    margin-left: 0;
  }
}
/* Journal style header/footer refresh */

.site-header {
  background: rgba(247,243,238,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #D8CEC2;
  height: 64px;
}

.header-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.header-logo .logo-w,
.header-logo .logo-h {
  color: #2F2A26;
}

.header-logo .logo-n {
  color: #A67C63;
  font-style: italic;
  margin: 0 1px;
}

.header-logo .logo-dot,
.header-logo .logo-com {
  color: #8C8178;
  font-size: .9em;
}

.nav-link {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6F6760;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  color: #2F2A26;
}

.nav-link.active {
  color: #A67C63;
  border-bottom-color: #A67C63;
}

.lang-select,
.btn-login {
  background: transparent;
  border-color: #D8CEC2;
  color: #5D5753;
}

.btn-signup {
  background: #A67C63;
  border-radius: 999px;
}

.btn-signup:hover {
  background: #8D6650;
}

/* Footer */
.site-footer {
  background: #EFE7DD;
  color: #6A625C;
  border-top: 1px solid #D8CEC2;
}

.footer-brand .header-logo .logo-w,
.footer-brand .header-logo .logo-h {
  color: #2F2A26;
}

.footer-brand .header-logo .logo-n {
  color: #A67C63;
}

.footer-brand .logo-dot,
.footer-brand .logo-com {
  color: #8C8178;
}

.footer-col h4 {
  color: #2F2A26;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .95rem;
  text-transform: none;
  letter-spacing: 0;
}

.footer-col a {
  color: #6A625C;
}

.footer-col a:hover {
  color: #A67C63;
}

.footer-bottom {
  color: #8C8178;
  border-top: 1px solid #D8CEC2;
  padding-top: 18px;
}
/* Editorial logo redesign */

.header-logo{
  display:flex;
  align-items:flex-end;
  gap:6px;

  text-decoration:none;
}

.logo-main{

  font-family:
  "Georgia",
  "Times New Roman",
  serif;

  font-size:1.45rem;
  font-weight:600;

  letter-spacing:-.045em;

  color:#2F2A26;

  line-height:1;
}

.logo-n{

  display:inline-block;

  margin:0 2px;

  color:#B07B63;

  font-style:italic;

  transform:
  rotate(-6deg);

  font-weight:500;
}

.logo-sub{

  font-size:.72rem;

  letter-spacing:.12em;

  text-transform:uppercase;

  color:#9A9088;

  padding-bottom:2px;
}

/* hover */

.header-logo:hover .logo-main{
  opacity:.82;
}

.header-logo:hover .logo-n{
  transform:
  rotate(-10deg)
  translateY(-1px);
}
/* Soft professional logo */

.header-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  text-decoration: none;
}

.logo-word {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #2F2A26;
}

.logo-domain {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #A67C63;
}

.header-logo:hover .logo-word {
  color: #3A342F;
}

.header-logo:hover .logo-domain {
  color: #8D6650;
}
.editorial-page {
  background: #F7F3EE;
  color: #2F2A26;
}

.editorial-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  min-height: 70vh;
  padding: clamp(32px, 5vw, 72px) 0;
}

.editorial-copy { max-width: 560px; }

.editorial-kicker {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A67C63;
  margin-bottom: 18px;
}

.editorial-title {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: #2F2A26;
  margin-bottom: 28px;
  font-family: Georgia, 'Times New Roman', serif;
}

.editorial-sub {
  font-size: 1.02rem;
  line-height: 1.95;
  color: #625B56;
  max-width: 520px;
}

.editorial-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  filter: saturate(.82) contrast(.95) brightness(.98);
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.editorial-section {
  margin-top: 28px;
}

.editorial-section-head {
  margin-bottom: 36px;
}

.editorial-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #2F2A26;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.journal-card {
  background: #FCFAF7;
  border: 1px solid #D8CEC2;
  border-radius: 26px;
  padding: 30px;
}

.journal-label {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A67C63;
  margin-bottom: 14px;
}

.journal-title {
  font-size: 1.35rem;
  line-height: 1.4;
  color: #2F2A26;
  margin-bottom: 14px;
}

.journal-text {
  line-height: 1.9;
  color: #68605B;
}

.editorial-quote {
  margin-top: 96px;
  padding: clamp(40px,5vw,72px);
  background: #EFE7DD;
  border-radius: 34px;
  text-align: center;
}

.editorial-quote p {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.45;
  letter-spacing: -.035em;
  color: #2F2A26;
}

@media(max-width: 900px) {
  .editorial-hero,
  .journal-grid {
    grid-template-columns: 1fr;
  }
}
.info-board {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.info-board-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  background: rgba(255,255,255,.52);
  border: 1px solid #D8CEC2;
  border-radius: 28px;
  padding: 22px;
}

.info-board-title {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A67C63;
  margin-bottom: 16px;
}

.info-board-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216,206,194,.75);
  color: #4F4843;
  font-size: .9rem;
  cursor: pointer;
}

.info-board-link:hover {
  color: #A67C63;
}

.info-board-main {
  display: grid;
  gap: 22px;
}

.info-panel {
  background: rgba(255,255,255,.55);
  border: 1px solid #D8CEC2;
  border-radius: 30px;
  padding: 30px;
}

.info-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #2F2A26;
}

.info-panel p,
.info-panel li {
  color: #625B56;
  line-height: 1.8;
}

.info-stat-grid,
.country-mini-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.info-stat,
.country-mini,
.check-mini {
  background: #F7F3EE;
  border: 1px solid #D8CEC2;
  border-radius: 18px;
  padding: 18px;
}

.info-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #A67C63;
  margin-bottom: 4px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 26px;
  margin-top: 14px;
}

.info-list li {
  list-style: none;
  border-bottom: 1px solid #E1D7CC;
  padding-bottom: 8px;
}

@media(max-width: 900px) {
  .info-board {
    grid-template-columns: 1fr;
  }

  .info-board-sidebar {
    position: static;
  }

  .info-stat-grid,
  .country-mini-grid,
  .check-grid,
  .info-list {
    grid-template-columns: 1fr;
  }
}
/* Final compact hero override for information page */
.information-page .hero {
  min-height: 220px !important;
  padding: 36px 42px !important;
  margin-bottom: 22px !important;
  align-items: center !important;
}

.information-page .hero-title {
  font-size: clamp(2rem, 3.6vw, 3.4rem) !important;
  margin-bottom: 12px !important;
}

.information-page .hero-sub {
  font-size: .9rem !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
  max-width: 560px !important;
}

.information-page .hero-badge {
  margin-bottom: 10px !important;
}

.information-page .stats-row {
  margin-bottom: 22px !important;
}

/* Compact information editorial hero */
body:has(title) .editorial-page .editorial-hero {
  min-height: auto;
}

body.editorial-page .editorial-hero {
  min-height: 360px;
  padding: 36px 0 28px;
  gap: 32px;
}

body.editorial-page .editorial-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

body.editorial-page .editorial-sub {
  font-size: .95rem;
  line-height: 1.75;
}

body.editorial-page .editorial-image {
  max-height: 360px;
  aspect-ratio: 5 / 3.2;
}
/* Readable board system for info / jobs / community */

.info-board {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  background: #F1E8DD;
  border: 1px solid #D7C8B8;
  border-radius: 32px;
  padding: 24px;
}

.info-board-sidebar {
  background: #FFFFFF;
  border: 1px solid #D7C8B8;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(47,42,38,.05);
}

.info-board-title {
  color: #8F624E;
  font-weight: 800;
  margin-bottom: 14px;
}

.info-board-link {
  color: #3E3833;
  font-size: .9rem;
  font-weight: 600;
  padding: 11px 10px;
  border-radius: 12px;
  border-bottom: none;
}

.info-board-link:hover {
  background: #F7F3EE;
  color: #8F624E;
}

.info-board-main {
  gap: 18px;
}

.info-panel {
  background: #FFFFFF;
  border: 1px solid #D7C8B8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(47,42,38,.055);
}

.info-panel h2 {
  color: #2F2A26;
  font-size: 1.45rem;
  line-height: 1.25;
}

.info-panel p,
.info-panel li {
  color: #4A433E;
  font-size: .92rem;
  line-height: 1.75;
}

.info-stat,
.country-mini,
.check-mini {
  background: #FAF8F5;
  border: 1px solid #DDD0C3;
  border-radius: 16px;
  padding: 16px;
}

.info-stat strong,
.country-mini strong,
.check-mini strong {
  color: #2F2A26;
  font-weight: 800;
}

.info-stat strong {
  color: #9B6A55;
  font-size: 1.5rem;
}

.country-mini p,
.check-mini p {
  color: #5E5650;
  font-size: .86rem;
  line-height: 1.65;
  margin-top: 6px;
}

.info-list {
  gap: 10px 18px;
}

.info-list li {
  color: #3F3934;
  background: #FAF8F5;
  border: 1px solid #DDD0C3;
  border-radius: 14px;
  padding: 12px 14px;
}

@media(max-width: 900px) {
  .info-board {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
/* Dashboard board layout */

.info-dashboard {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
  background: #F4EEE7;
  border: 1px solid #D8C9BA;
  border-radius: 30px;
  padding: 22px;
}

.dashboard-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  background: #FFFDF9;
  border: 1px solid #DACBBC;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(47,42,38,.04);
}

.dash-title {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8F624E;
  margin-bottom: 16px;
}

.dash-link {
  display: block;
  padding: 11px 12px;
  border-radius: 13px;
  color: #3D3732;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.dash-link:hover,
.dash-link.active {
  background: #E8F1EE;
  color: #174F4A;
}

.sidebar-box {
  margin-top: 20px;
  padding: 16px;
  background: #FAF7F2;
  border: 1px solid #E0D3C7;
  border-radius: 18px;
}

.sidebar-box h4 {
  color: #2F2A26;
  margin-bottom: 8px;
}

.sidebar-box p,
.sidebar-box a {
  font-size: .82rem;
  color: #5A524C;
  line-height: 1.6;
}

.sidebar-box a {
  display: inline-block;
  margin-top: 10px;
  color: #174F4A;
  font-weight: 700;
}

.dashboard-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dash-panel {
  background: #FFFFFF;
  border: 1px solid #DACBBC;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(47,42,38,.045);
}

.dash-panel.wide {
  grid-column: span 2;
}

.panel-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8F624E;
  margin-bottom: 8px;
}

.dash-panel h2 {
  font-size: 1.35rem;
  color: #2F2A26;
  margin-bottom: 10px;
}

.dash-panel p,
.dash-panel li,
.dash-table td {
  color: #443E39;
  font-size: .9rem;
  line-height: 1.7;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.dash-stats div {
  background: #F7F3EE;
  border: 1px solid #E0D3C7;
  border-radius: 16px;
  padding: 16px;
}

.dash-stats strong {
  display: block;
  color: #0F5C56;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.dash-stats span {
  color: #5B544E;
  font-size: .8rem;
}

.tip-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: #FAF7F2;
  border: 1px solid #E0D3C7;
}

.country-board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.country-board-card {
  border: 1px solid #E0D3C7;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFDF9;
}

.country-board-card img {
  height: 95px;
  width: 100%;
  object-fit: cover;
}

.country-board-card h3 {
  font-size: .95rem;
  padding: 12px 12px 4px;
  color: #2F2A26;
}

.country-board-card p {
  padding: 0 12px 14px;
  font-size: .82rem;
}

.clean-list,
.icon-list {
  display: grid;
  gap: 10px;
}

.clean-list li,
.icon-list li {
  background: #FAF7F2;
  border: 1px solid #E0D3C7;
  border-radius: 14px;
  padding: 11px 13px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-stack {
  display: grid;
  gap: 10px;
}

.mini-stack div {
  background: #FAF7F2;
  border: 1px solid #E0D3C7;
  border-radius: 14px;
  padding: 14px;
}

.mini-stack strong {
  color: #2F2A26;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 14px;
}

.dash-table th {
  background: #EFE6DC;
  color: #2F2A26;
  text-align: left;
  padding: 10px;
  font-size: .78rem;
}

.dash-table td {
  padding: 10px;
  border-bottom: 1px solid #E8DCD0;
}

.timeline-list {
  display: grid;
  gap: 12px;
}

.timeline-list div {
  display: flex;
  gap: 12px;
}

.timeline-list span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #DDEBE7;
  color: #174F4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.community-panel {
  background: linear-gradient(135deg, #FFFDF9, #F1E4D8);
}

.dash-button {
  display: inline-block;
  margin-top: 16px;
  background: #0F5C56;
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.dash-disclaimer {
  grid-column: span 2;
  background: #FFFDF9;
  border: 1px solid #DACBBC;
  border-radius: 18px;
  padding: 16px 18px;
}

.dash-disclaimer strong {
  color: #2F2A26;
}

.dash-disclaimer p {
  color: #5B544E;
  font-size: .84rem;
}

@media(max-width: 980px) {
  .info-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
  }

  .dashboard-main,
  .dash-panel.wide,
  .dash-disclaimer {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .dash-stats,
  .country-board-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 560px) {
  .dash-stats,
  .country-board-grid {
    grid-template-columns: 1fr;
  }
}
.tab-panel{
  display:none;
}

.tab-panel.active{
  display:block;
}

.tab-btn{
  width:100%;
}

.tab-btn.active{
  background:#E8F1EE;
}
/* Click-to-open dashboard panels */

.dashboard-sidebar .dash-link {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
}

.dashboard-main > .dash-panel {
  display: none;
}

.dashboard-main > .dash-panel.active {
  display: block;
  animation: boardFade .18s ease;
}

.dashboard-main {
  display: block;
}

.dash-panel.wide {
  grid-column: auto;
}

@keyframes boardFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile information board */

@media (max-width: 760px) {
  .info-dashboard {
    display: block;
    padding: 14px;
    border-radius: 24px;
    margin-top: 32px;
  }

  .dashboard-sidebar {
    position: static;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 20px;
  }

  .dashboard-sidebar .dash-title {
    margin-bottom: 12px;
  }

  .dashboard-sidebar .dash-link {
    display: inline-flex;
    width: auto;
    white-space: nowrap;
    margin: 0 6px 8px 0;
    padding: 9px 13px;
    border-radius: 999px;
    background: #F7F3EE;
    border: 1px solid #E0D3C7;
    font-size: .82rem;
  }

  .dashboard-sidebar .dash-link.active {
    background: #0F5C56;
    color: #fff;
    border-color: #0F5C56;
  }

  .sidebar-box {
    display: none;
  }

  .dashboard-main {
    display: block;
  }

  .dash-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .dash-panel h2 {
    font-size: 1.25rem;
  }

  .dash-stats,
  .country-board-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dash-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .clean-list li,
  .icon-list li {
    font-size: .86rem;
  }
}

@media (max-width: 430px) {
  .dash-stats,
  .country-board-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    overflow-x: auto;
    white-space: nowrap;
  }
}
/* Jobs board */

.jobs-board-section{
  margin-top:100px;
}

.jobs-board-header{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-end;

  margin-bottom:28px;
}

.jobs-tabs{
  display:flex;
  gap:10px;
}

.tab-btn{
  border:none;
  background:#EFE7DD;

  padding:12px 18px;

  border-radius:999px;

  cursor:pointer;

  font-weight:700;

  color:#5E5751;
}

.tab-btn.active{
  background:#174F4A;
  color:white;
}

.jobs-toolbar{
  margin-bottom:20px;
}

.jobs-search{
  width:100%;

  padding:16px 18px;

  border-radius:18px;

  border:1px solid #DACBBC;

  background:white;
}

#jobs-container{
  display:grid;
  gap:16px;
}

.job-list-item{
  background:white;

  border:1px solid #DACBBC;

  border-radius:24px;

  padding:24px;

  display:flex;
  justify-content:space-between;
  gap:20px;
}

.job-company{
  font-size:.78rem;

  text-transform:uppercase;

  letter-spacing:.08em;

  color:#8F624E;

  margin-bottom:8px;
}

.job-title-text{
  font-size:1.3rem;
  color:#2F2A26;

  margin-bottom:12px;
}

.job-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.job-tag{
  background:#F7F3EE;

  border:1px solid #E2D5C8;

  border-radius:999px;

  padding:7px 12px;

  font-size:.78rem;
}

.job-apply-btn{
  border:none;

  background:#174F4A;

  color:white;

  padding:12px 18px;

  border-radius:999px;

  cursor:pointer;

  font-weight:700;
}

.job-post-form{
  background:white;

  border:1px solid #DACBBC;

  border-radius:28px;

  padding:28px;
}

.form-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:14px;

  margin-bottom:14px;
}

.form-grid input,
.job-post-form textarea{
  width:100%;

  border:1px solid #DACBBC;

  border-radius:16px;

  padding:14px;

  background:#FAF7F2;
}

.job-post-form textarea{
  min-height:140px;

  margin-bottom:18px;
}

.submit-job-btn{
  border:none;

  background:#174F4A;

  color:white;

  padding:14px 22px;

  border-radius:999px;

  font-weight:700;

  cursor:pointer;
}

@media(max-width:760px){

  .jobs-board-header,
  .job-list-item{
    flex-direction:column;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

}
/* Working page layout tuning */

body.editorial-page .editorial-section {
  margin-top: 20px;
}

body.editorial-page .journal-card {
  padding: 22px;
}

body.editorial-page .journal-title {
  font-size: 1.08rem;
}

body.editorial-page .journal-text {
  font-size: .88rem;
  line-height: 1.7;
}

.jobs-board-section {
  margin-top: 64px;
  background: #F4EEE7;
  border: 1px solid #D8C9BA;
  border-radius: 34px;
  padding: 32px;
}

#jobs-container {
  display: grid;
  gap: 18px;
}

.job-list-item {
  min-height: 150px;
}

.community-board {
  margin-top: 28px;
  background: #F4EEE7;
  border: 1px solid #D8C9BA;
  border-radius: 34px;
  padding: 32px;
}

.community-board-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.editorial-sub-small {
  color: #625B56;
  line-height: 1.8;
  max-width: 620px;
}

.community-write-btn,
.community-login-btn,
#submit-post-btn {
  background: #174F4A;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}

.community-preview,
#posts-container {
  display: grid;
  gap: 16px;
}

.community-post-card {
  background: white;
  border: 1px solid #DACBBC;
  border-radius: 24px;
  padding: 24px;
}

.post-type {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8F624E;
  font-weight: 800;
  margin-bottom: 8px;
}

.community-post-card h3 {
  color: #2F2A26;
  margin-bottom: 10px;
}

.community-post-card p {
  color: #625B56;
  line-height: 1.7;
}

.login-wall {
  background: #FFFDF9;
  border: 1px dashed #CBB8A6;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.community-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.community-filter {
  border: 1px solid #DACBBC;
  background: white;
  color: #5E5751;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.community-filter.active {
  background: #174F4A;
  color: white;
  border-color: #174F4A;
}

.post-modal {
  position: fixed;
  inset: 0;
  background: rgba(47,42,38,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.post-modal.open {
  display: flex;
}

.post-modal-box {
  width: min(560px, 100%);
  background: #FFFDF9;
  border-radius: 28px;
  padding: 28px;
  position: relative;
}

.post-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.post-modal-box input,
.post-modal-box select,
.post-modal-box textarea {
  width: 100%;
  border: 1px solid #DACBBC;
  border-radius: 16px;
  padding: 14px;
  background: #FAF7F2;
  margin-bottom: 12px;
}

.post-modal-box textarea {
  min-height: 160px;
}

@media(max-width: 760px) {
  .community-board-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .community-board {
    padding: 20px;
  }
}
/* Stay board */

.stay-board-section {
  margin-top: 64px;
  background: #F4EEE7;
  border: 1px solid #D8C9BA;
  border-radius: 34px;
  padding: 32px;
}

.stay-board-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.stay-tabs {
  display: flex;
  gap: 10px;
}

.stay-toolbar {
  margin-bottom: 20px;
}

.stay-search {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #DACBBC;
  background: white;
}

#stays-container {
  display: grid;
  gap: 16px;
}

.stay-list-item {
  background: white;
  border: 1px solid #DACBBC;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stay-source {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8F624E;
  margin-bottom: 8px;
}

.stay-title-text {
  font-size: 1.3rem;
  color: #2F2A26;
  margin-bottom: 12px;
}

.stay-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stay-tag {
  background: #F7F3EE;
  border: 1px solid #E2D5C8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
}

.stay-contact-btn {
  border: none;
  background: #174F4A;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.stay-post-form {
  background: white;
  border: 1px solid #DACBBC;
  border-radius: 28px;
  padding: 28px;
}

.stay-post-form textarea {
  width: 100%;
  min-height: 140px;
  margin-bottom: 18px;
  border: 1px solid #DACBBC;
  border-radius: 16px;
  padding: 14px;
  background: #FAF7F2;
}

.submit-stay-btn {
  border: none;
  background: #174F4A;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

@media(max-width:760px) {
  .stay-board-header,
  .stay-list-item {
    flex-direction: column;
  }
}
.login-wall {
  margin-top: 20px;
  background: #FFFDF9;
  border: 1px dashed #CBB8A6;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.login-wall h3 {
  color: #2F2A26;
  margin-bottom: 8px;
}

.login-wall p {
  color: #625B56;
  line-height: 1.7;
  margin-bottom: 18px;
}

.login-wall button {
  background: #174F4A;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}

.member-only-board {
  display: none;
}

.preview-only-board {
  display: grid;
  gap: 16px;
}
/* Holiday board */

.holiday-board-section {
  margin-top: 64px;
  background: #F4EEE7;
  border: 1px solid #D8C9BA;
  border-radius: 34px;
  padding: 32px;
}

.holiday-board-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.holiday-tabs {
  display: flex;
  gap: 10px;
}

.holiday-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.holiday-search,
.holiday-select {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #DACBBC;
  background: white;
}

.holiday-search {
  flex: 1;
}

#holiday-container {
  display: grid;
  gap: 16px;
}

.holiday-list-item {
  background: white;
  border: 1px solid #DACBBC;
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 20px;
  align-items: center;
}

.holiday-list-item img {
  width: 180px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
}

.holiday-source {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8F624E;
  margin-bottom: 8px;
}

.holiday-title-text {
  font-size: 1.25rem;
  color: #2F2A26;
  margin-bottom: 10px;
}

.holiday-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.holiday-tag {
  background: #F7F3EE;
  border: 1px solid #E2D5C8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
}

.holiday-detail-btn {
  border: none;
  background: #174F4A;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.holiday-post-form {
  background: white;
  border: 1px solid #DACBBC;
  border-radius: 28px;
  padding: 28px;
}

.holiday-post-form textarea {
  width: 100%;
  min-height: 140px;
  margin-bottom: 18px;
  border: 1px solid #DACBBC;
  border-radius: 16px;
  padding: 14px;
  background: #FAF7F2;
}

.submit-holiday-btn {
  border: none;
  background: #174F4A;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

@media(max-width:760px) {
  .holiday-board-header,
  .holiday-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .holiday-list-item {
    grid-template-columns: 1fr;
  }

  .holiday-list-item img {
    width: 100%;
    height: 180px;
  }
}
/* Footer logo fixed */

.footer-brand {
  display: block;
  margin-bottom: 0;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 12px;
}

.footer-logo-main {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #2F2A26;
}

.footer-logo-domain {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #A67C63;
}

.footer-tagline {
  display: block;
  margin-top: 0;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.75;
  color: #7C726B;
  max-width: 230px;
}
/* Member board pages */

.board-page {
  background: #F7F3EE;
}

.member-board-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 96px 32px 64px;
}

.member-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  background: #FFFDF9;
  border: 1px solid #DACBBC;
  border-radius: 24px;
  padding: 20px;
}

.member-sidebar-title {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8F624E;
  margin-bottom: 16px;
}

.member-nav {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  color: #3D3732;
  font-weight: 700;
}

.member-nav.active,
.member-nav:hover {
  background: #E8F1EE;
  color: #174F4A;
}

.member-main {
  min-width: 0;
}

.board-hero{
  background:#FFFDF9;

  border:1px solid #DACBBC;
  border-radius:24px;

  padding:22px 26px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:20px;

  margin-bottom:18px;
}

.board-hero h1{
  font-size:clamp(1.6rem, 2.2vw, 2.4rem);

  line-height:1.08;

  letter-spacing:-0.04em;

  margin-bottom:10px;
}

.board-hero p{
  color:#6B645E;

  line-height:1.6;

  font-size:.92rem;

  max-width:520px;
}

.board-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  margin-bottom: 20px;
}

.board-toolbar input,
.board-toolbar select,
.board-form-panel input,
.board-form-panel textarea {
  width: 100%;
  border: 1px solid #DACBBC;
  border-radius: 16px;
  padding: 14px;
  background: #FFFDF9;
}

.board-list {
  display: grid;
  gap: 16px;
  margin-top:0;
}

.board-card{
  background:#FFFFFF;

  border:1px solid #DACBBC;
  border-radius:20px;

  padding:18px 20px;

  display:grid;
  grid-template-columns:1fr auto;

  gap:16px;

  transition:.18s ease;
}

.board-card:hover{
  transform:translateY(-2px);
  border-color:#CDB7A1;
}

.board-card-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8F624E;
  font-weight: 800;
  margin-bottom: 8px;
}

.board-card h3{
  font-size:1.08rem;
  line-height:1.3;

  margin-bottom:8px;
}

.board-card p{
  color:#6B645E;

  line-height:1.6;

  font-size:.88rem;

  max-width:90%;
}

.board-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.board-tags span {
  background: #F7F3EE;
  border: 1px solid #E2D5C8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
}

.board-primary-btn,
.board-secondary-btn{
  background:#174F4A;
  color:#fff;

  border-radius:999px;

  padding:10px 16px;

  height:42px;

  font-size:.82rem;
  font-weight:700;

  align-self:center;

  white-space:nowrap;

  transition:.18s ease;
}

.board-secondary-btn:hover{
  background:#113E3A;
}

.board-form-panel {
  margin-top: 24px;
  background: #FFFDF9;
  border: 1px solid #DACBBC;
  border-radius: 28px;
  padding: 28px;
  margin-bottom:24px;
}

.board-form-panel h2 {
  margin-bottom: 18px;
}

.board-form-panel textarea {
  min-height: 140px;
  margin: 14px 0;
}

@media(max-width: 860px) {
  .member-board-layout {
    grid-template-columns: 1fr;
    padding: 88px 16px 48px;
  }

  .member-sidebar {
    position: static;
  }

  .board-hero,
  .board-card {
    grid-template-columns: 1fr;
  }

  .board-toolbar {
    grid-template-columns: 1fr;
  }
}
.board-hero .editorial-kicker{
  margin-bottom:8px;
  font-size:.68rem;
}

.holiday-board-card{
  background:white;

  border:1px solid #DACBBC;
  border-radius:24px;

  overflow:hidden;

  display:grid;
  grid-template-columns:240px 1fr auto;

  gap:20px;

  padding:18px;
}

.holiday-board-card img{
  width:100%;
  height:180px;

  object-fit:cover;

  border-radius:18px;
}

.holiday-board-content{
  align-self:center;
}
.community-board-card{
  background:white;

  border:1px solid #DACBBC;
  border-radius:22px;

  padding:22px;

  display:grid;
  gap:12px;
}
.community-board-card {
  background: #fff;
  border: 1px solid #DACBBC;
  border-radius: 20px;
  padding: 20px;
}

.community-board-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.community-board-card p {
  color: #6B645E;
  line-height: 1.6;
}
/* Board page header spacing fix */

.board-page .member-board-layout {
  padding-top: 110px;
}

.board-page .site-header {
  display: flex;
}

.memory-section{
  margin-top:120px;
}

.memory-grid{
  display:grid;

  grid-template-columns:
  1.3fr .9fr;

  gap:28px;
}

.memory-card{
  position:relative;

  overflow:hidden;

  border-radius:30px;

  background:#EFE6DC;
}

.memory-card.large{
  min-height:520px;
}

.memory-card.large img,
.memory-card.small img{
  width:100%;
  height:100%;
  object-fit:cover;

  display:block;

  filter:
  saturate(.82)
  contrast(.95);
}

.memory-overlay{
  position:absolute;

  left:36px;
  bottom:36px;

  color:white;

  max-width:70%;
}

.memory-overlay span{
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;

  opacity:.78;
}

.memory-overlay h3{
  margin-top:14px;

  font-size:2.2rem;
  line-height:1.2;

  letter-spacing:-.03em;
}

.memory-card.quote{
  padding:54px;

  display:flex;
  align-items:center;

  background:#EFE7DD;
}

.memory-card.quote p{
  font-size:1.45rem;
  line-height:1.9;

  color:#2E2926;
}

.memory-card.small{
  min-height:240px;
}

.memory-caption{
  position:absolute;

  left:24px;
  bottom:24px;

  color:white;

  font-size:1rem;
  line-height:1.7;

  max-width:75%;
}

@media(max-width:980px){

  .memory-grid{
    grid-template-columns:1fr;
  }

}
.journal-notes{
  margin-top:28px;
}

.notes-header span{
  font-size:.72rem;
  letter-spacing:.14em;
  color:#A27B63;
}

.notes-header h2{
  margin-top:12px;

  font-size:2.7rem;
  line-height:1.1;

  max-width:720px;
}

.notes-grid{
  margin-top:42px;

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:24px;
}

.note-card{
  background:#FCFAF7;

  border:1px solid #DED4C8;

  border-radius:26px;

  overflow:hidden;
}

.note-card img{
  width:100%;
  height:220px;

  object-fit:cover;

  display:block;

  filter:
  saturate(.82)
  contrast(.96);
}

.note-copy{
  padding:24px;
}

.note-copy span{
  font-size:.72rem;

  letter-spacing:.12em;

  color:#A27B63;
}

.note-copy p{

  margin-top:14px;

  font-family:
  var(--font-body);

  font-size:1.02rem;

  line-height:1.8;

  color:#5F5650;

}

.note-card.text-only{
  padding:38px;

  display:flex;
  align-items:center;

  background:#F2EAE0;
}

.note-card.text-only p{

  font-family:
  var(--font-body);

  font-size:1.15rem;

  line-height:1.9;

  color:#3D3733;

}

@media(max-width:980px){

  .notes-grid{
    grid-template-columns:1fr;
  }

}

.community-board-card{
  padding:14px 18px;
  border-radius:16px;
}

.community-board-card .board-card-label{
  font-size:.68rem;
  margin-bottom:6px;
}

.community-board-card h3{
  font-size:.95rem;
  margin-bottom:6px;
}

.community-board-card p{
  font-size:.82rem;
  line-height:1.5;
  margin:0;
}
.post-thumb{
  width:100%;
  max-height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}
.post-thumb{
  width:100%;
  max-height:220px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}
.board-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}

.delete-post-btn{

  border:none;

  background:none;

  color:#c03040;

  font-size:.75rem;

  cursor:pointer;

}
.post-actions{

  margin-top:12px;

  display:flex;
  gap:10px;

}

.like-btn{

  border:none;

  background:#fff;

  border:1px solid #e6e6e6;

  border-radius:999px;

  padding:6px 12px;

  cursor:pointer;

  font-size:.82rem;

  transition:.2s;

}

.like-btn:hover{

  background:#f7f7f7;

}
.comment-box{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid #eee;
}

.comment-input{
  width:100%;
  padding:8px 10px;
  border:1px solid #e5e5e5;
  border-radius:10px;
  font-size:.82rem;
  margin-bottom:8px;
}

.comment-btn{
  padding:6px 12px;
  border-radius:999px;
  background:#0E8080;
  color:white;
  font-size:.78rem;
}

.comments-list{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.comment-item-small{
  background:#f7f7f7;
  border-radius:10px;
  padding:7px 9px;
  font-size:.78rem;
}

.comment-item-small strong{
  display:block;
  font-size:.72rem;
  margin-bottom:2px;
}
.comment-top{

  display:flex;

  justify-content:
  space-between;

  align-items:center;

  margin-bottom:4px;

}

.delete-comment-btn{

  border:none;

  background:none;

  color:#c24a4a;

  cursor:pointer;

  font-size:.7rem;

}
.board-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.card-right-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.comment-toggle-btn{
  margin-top:10px;
  border:1px solid #e6e6e6;
  background:#fff;
  border-radius:999px;
  padding:6px 12px;
  font-size:.82rem;
  cursor:pointer;
}
@media (max-width: 640px){

  .member-board-layout{
    padding:18px 14px;
    gap:16px;
  }

  .member-sidebar{
    padding:20px;
    border-radius:22px;
  }

  .member-sidebar-title{
    font-size:.72rem;
    margin-bottom:14px;
  }

  .member-nav{
    padding:11px 18px;
    font-size:.95rem;
  }

  .board-hero{
    padding:24px 22px;
    border-radius:22px;
    display:block;
  }

  .board-hero h1{
    font-size:2rem;
    line-height:1.08;
    max-width:260px;
  }

  .board-hero p{
    font-size:1.05rem;
    line-height:1.55;
    margin-top:12px;
  }

  .board-hero .board-primary-btn{
    margin-top:18px;
    width:100%;
    justify-content:center;
  }

}
@media (max-width: 640px){

  .member-board-layout{
    padding:14px !important;
    gap:14px !important;
  }

  .member-sidebar{
    padding:16px !important;
    border-radius:18px !important;
  }

  .member-nav{
    padding:9px 14px !important;
    font-size:.86rem !important;
  }

  .board-hero{
    padding:18px !important;
    border-radius:18px !important;
    display:block !important;
  }

  .board-hero h1{
    font-size:1.45rem !important;
    line-height:1.15 !important;
    max-width:100% !important;
  }

  .board-hero p{
    font-size:.9rem !important;
    line-height:1.45 !important;
  }

  .board-hero .board-primary-btn{
    margin-top:14px !important;
    width:100% !important;
  }

}
@media (max-width: 768px){

  .member-sidebar{
    display:none !important;
  }

}
@media only screen and (max-width: 900px){
  body.board-page .member-sidebar{
    display:none !important;
  }
}
/* Mobile drawer logo fix */
.mobile-drawer .drawer-header{
  border-bottom:1px solid #D8CEC2 !important;
  background:#F7F3EE !important;
}

.mobile-drawer .header-logo{
  display:inline-flex !important;
  align-items:baseline !important;
  gap:3px !important;
}

.mobile-drawer .logo-main,
.mobile-drawer .logo-word{
  font-family:"Inter","Noto Sans JP",sans-serif !important;
  font-size:1.22rem !important;
  font-weight:700 !important;
  letter-spacing:-0.045em !important;
  color:#2F2A26 !important;
  font-style:normal !important;
  transform:none !important;
}

.mobile-drawer .logo-n{
  color:#2F2A26 !important;
  font-style:normal !important;
  transform:none !important;
  margin:0 !important;
  font-weight:700 !important;
}

.mobile-drawer .logo-sub,
.mobile-drawer .logo-domain,
.mobile-drawer .logo-dot,
.mobile-drawer .logo-com{
  font-family:"Inter","Noto Sans JP",sans-serif !important;
  font-size:.78rem !important;
  font-weight:600 !important;
  color:#A67C63 !important;
  letter-spacing:-0.02em !important;
  text-transform:none !important;
}

/* Mobile drawer colour match */
.drawer-overlay{
  background:rgba(247,243,238,.92) !important;
  backdrop-filter:none !important;
}

.mobile-drawer{
  background:#FFFDF9 !important;
  border-left:1px solid #D8CEC2 !important;
}

.drawer-nav{
  background:#FFFDF9 !important;
}

.drawer-link{
  background:#FFFDF9 !important;
  color:#3D3732 !important;
  border-left:0 !important;
}

.drawer-link:hover,
.drawer-link.active{
  background:#EFE7DD !important;
  color:#2F2A26 !important;
  border-left:4px solid #A67C63 !important;
}
.drawer-user-area{
  margin-top:auto;
  padding:18px 20px;
  border-top:1px solid #D8CEC2;
  background:#FFFDF9;
}

.drawer-user-name{
  font-weight:700;
  margin-bottom:10px;
  color:#2F2A26;
}

.drawer-logout-btn{
  width:100%;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(192,48,64,.28);
  background:rgba(192,48,64,.05);
  color:#C03040;
  font-weight:700;
}
@media (max-width: 640px){

  body{
    padding-top:64px;
  }



  .journal-hero{
    padding-top:24px !important;
  }

  .board-hero{
    margin-top:18px !important;
  }

}
@media (max-width: 640px){

  .editorial-page .page-content{
    padding-top:20px !important;
  }

}

  .editorial-page .editorial-hero{
    min-height:auto !important;
    padding:20px 0 28px !important;
    gap:22px !important;
  }

  .editorial-page .editorial-title{
    font-size:2.1rem !important;
    line-height:1.05 !important;
    margin-bottom:14px !important;
  }

  .editorial-page .editorial-sub{
    font-size:.95rem !important;
    line-height:1.65 !important;
  }

  .editorial-page .editorial-image{
    max-height:260px !important;
    aspect-ratio:4 / 3 !important;
    border-radius:22px !important;
  }

}
.home-wrap,
.member-board-layout{
  padding-top:88px !important;
}