/* =========================================================
   Vermont.co.jp — site.css
   Japanese editorial travel magazine style
   Theme: handmade America / Green Mountains / maple / bridges
   ========================================================= */

:root {
  --ink: #211b16;
  --ink-soft: #51483f;
  --paper: #f7f1e6;
  --paper-warm: #efe3cf;
  --cream: #fbf7ee;
  --maple: #9f2f22;
  --maple-dark: #6f2019;
  --pine: #244232;
  --pine-soft: #456653;
  --lake: #486f7c;
  --gold: #bd8b3a;
  --bridge: #7b5135;
  --line: rgba(33, 27, 22, 0.16);
  --line-strong: rgba(33, 27, 22, 0.32);
  --shadow: 0 24px 70px rgba(33, 27, 22, 0.18);
  --shadow-soft: 0 14px 38px rgba(33, 27, 22, 0.12);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(189, 139, 58, 0.12), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(72, 111, 124, 0.13), transparent 30rem),
    linear-gradient(180deg, #fbf7ee 0%, #f3eadb 48%, #e9dcc7 100%);
  color: var(--ink);
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    "Times New Roman",
    serif;
  line-height: 1.9;
  letter-spacing: 0.035em;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--maple);
}

::selection {
  background: rgba(159, 47, 34, 0.22);
}

/* =========================================================
   Layout
   ========================================================= */

.container,
.wrap,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

main {
  overflow: hidden;
}

section {
  position: relative;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 54px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--maple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow {
  color: var(--maple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.32;
  font-weight: 700;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.35rem, 6vw, 5.9rem);
  letter-spacing: 0.045em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.65rem);
  letter-spacing: 0.04em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 2.12;
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-soft);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 46px 0;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1240px, calc(100% - 28px));
  margin-inline: auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo,
.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
}

.logo strong,
.brand strong {
  font-size: 1.25rem;
}

.logo span,
.brand span {
  margin-top: 5px;
  color: var(--pine-soft);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
}

.site-nav,
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.site-nav a,
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.nav a:hover,
.site-nav a[aria-current="page"],
.nav a[aria-current="page"] {
  background: var(--pine);
  color: #fff7ea;
  transform: translateY(-1px);
}

/* Two-row-friendly menu */
@media (min-width: 780px) {
  .site-nav,
  .nav {
    row-gap: 8px;
    max-width: 900px;
    margin-left: auto;
  }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background: var(--pine);
}

.hero.hero-page {
  min-height: 58vh;
}

.hero-image,
.hero img.bg,
.hero > img:first-child {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 25, 19, 0.88) 0%, rgba(20, 25, 19, 0.62) 42%, rgba(20, 25, 19, 0.25) 100%),
    linear-gradient(0deg, rgba(20, 25, 19, 0.88) 0%, rgba(20, 25, 19, 0.08) 58%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, var(--paper) 0%, transparent 100%);
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 92px;
  color: #fff7ea;
}

.hero .kicker,
.hero .eyebrow {
  color: #f4c977;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  color: #fff7ea;
  max-width: 930px;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.56);
}

.hero .lead,
.hero p {
  max-width: 770px;
  margin-top: 24px;
  color: rgba(255, 247, 234, 0.93);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn,
.button,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: #fff7ea;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.button:hover,
.cta:hover {
  transform: translateY(-2px);
  background: var(--maple-dark);
  color: #fff7ea;
  box-shadow: var(--shadow);
}

.btn.secondary,
.button.secondary,
.cta.secondary {
  background: rgba(255, 247, 234, 0.13);
  color: #fff7ea;
  border-color: rgba(255, 247, 234, 0.45);
  box-shadow: none;
}

.btn.light,
.button.light {
  background: var(--cream);
  color: var(--ink);
}

/* =========================================================
   Intro / Editorial Blocks
   ========================================================= */

.intro {
  padding: 82px 0 58px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-title {
  position: sticky;
  top: 112px;
}

.intro-title h2 {
  margin-top: 12px;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.editorial-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(239, 227, 207, 0.72)),
    var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}

.note-card {
  padding: 24px;
  border-left: 4px solid var(--maple);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* =========================================================
   Cards
   ========================================================= */

.card-grid,
.features-grid,
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  overflow: hidden;
  background: rgba(255, 247, 234, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(159, 47, 34, 0.35);
}

.card-image,
.card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-warm);
}

.card-image img,
.card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card:hover .card-image img,
.card:hover figure img {
  transform: scale(1.045);
}

.card-body,
.card-content {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(36, 66, 50, 0.1);
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* =========================================================
   Feature Band / Start Here
   ========================================================= */

.start-here,
.feature-band {
  margin: 70px auto;
  width: min(var(--max), calc(100% - 40px));
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 66, 50, 0.96), rgba(70, 102, 83, 0.94)),
    var(--pine);
  color: #fff7ea;
  box-shadow: var(--shadow);
}

.start-here-inner,
.feature-band-inner {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
}

.start-here h2,
.feature-band h2,
.start-here h3,
.feature-band h3 {
  color: #fff7ea;
}

.start-here p,
.feature-band p {
  margin-top: 14px;
  color: rgba(255, 247, 234, 0.86);
}

.start-here-links,
.band-links {
  display: grid;
  gap: 10px;
}

.start-here-links a,
.band-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 16px;
  background: rgba(255, 247, 234, 0.08);
  color: #fff7ea;
  font-weight: 800;
}

.start-here-links a:hover,
.band-links a:hover {
  background: rgba(255, 247, 234, 0.17);
  color: #fff7ea;
}

/* =========================================================
   Split Feature
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-warm);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy .lead {
  color: var(--ink-soft);
}

/* =========================================================
   Article Pages
   ========================================================= */

.article-header {
  padding: 76px 0 34px;
}

.article-wrap {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
}

.article-wrap.wide {
  width: min(1080px, calc(100% - 40px));
}

.article-title {
  margin-top: 12px;
}

.article-deck {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
  line-height: 2.12;
  color: var(--ink-soft);
}

.article-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-body {
  padding: 34px 0 92px;
}

.article-body p {
  margin: 0 0 1.55em;
  font-size: 1.04rem;
  line-height: 2.2;
}

.article-body h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(1.65rem, 3.3vw, 2.7rem);
}

.article-body h3 {
  margin: 2em 0 0.65em;
}

.article-body a {
  color: var(--maple);
  border-bottom: 1px solid rgba(159, 47, 34, 0.32);
}

.article-body blockquote {
  margin: 44px 0;
  padding: 30px 34px;
  border-left: 5px solid var(--maple);
  background: rgba(255, 247, 234, 0.72);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 2.05;
}

.article-body figure {
  margin: 48px 0;
}

.article-body figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

figcaption,
.caption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* =========================================================
   Real Places / Directory Cards
   ========================================================= */

.place-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.place-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.76);
  box-shadow: 0 10px 28px rgba(33, 27, 22, 0.08);
}

.place-card h3 {
  margin-bottom: 8px;
}

.place-card p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.place-card a {
  color: var(--maple);
  font-weight: 800;
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery-hero {
  padding: 70px 0 34px;
}

.gallery-grid {
  width: min(1320px, calc(100% - 30px));
  margin: 42px auto 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper-warm);
  box-shadow: 0 12px 28px rgba(33, 27, 22, 0.12);
  aspect-ratio: 4 / 3;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span,
.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(33, 27, 22, 0.72);
  color: #fff7ea;
  font-size: 0.78rem;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background:
    linear-gradient(180deg, rgba(36, 66, 50, 0.98), rgba(25, 38, 30, 1));
  color: rgba(255, 247, 234, 0.86);
  padding: 64px 0 34px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 46px;
}

.footer-brand strong {
  display: block;
  color: #fff7ea;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 420px;
  color: rgba(255, 247, 234, 0.72);
  line-height: 1.85;
}

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

.footer-links h3 {
  color: #fff7ea;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 247, 234, 0.76);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f4c977;
}

.copyright {
  width: min(var(--max), calc(100% - 40px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 247, 234, 0.16);
  color: rgba(255, 247, 234, 0.58);
  font-size: 0.78rem;
}

/* =========================================================
   Utility
   ========================================================= */

.text-center {
  text-align: center;
}

.max-narrow {
  max-width: 760px;
}

.max-medium {
  max-width: 920px;
}

.mx-auto {
  margin-inline: auto;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }
.mt-4 { margin-top: 48px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 32px; }
.mb-4 { margin-bottom: 48px; }

.paper-card {
  background: rgba(255, 247, 234, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}

.maple-rule {
  width: 76px;
  height: 3px;
  background: var(--maple);
  border-radius: 99px;
  margin: 18px 0 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .site-nav,
  .nav {
    justify-content: flex-start;
  }

  .intro-grid,
  .split,
  .start-here-inner,
  .feature-band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-title {
    position: static;
  }

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

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

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

@media (max-width: 680px) {
  body {
    letter-spacing: 0.02em;
  }

  .container,
  .wrap,
  .section-inner,
  .article-wrap {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding: 120px 0 70px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(20, 25, 19, 0.91) 0%, rgba(20, 25, 19, 0.68) 62%, rgba(20, 25, 19, 0.34) 100%),
      linear-gradient(0deg, rgba(20, 25, 19, 0.9) 0%, rgba(20, 25, 19, 0.18) 60%);
  }

  .site-nav a,
  .nav a {
    font-size: 0.76rem;
    min-height: 34px;
    padding: 6px 9px;
  }

  .card-grid,
  .features-grid,
  .destinations-grid,
  .gallery-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .split-media img {
    min-height: 280px;
  }

  .article-body p {
    font-size: 1rem;
    line-height: 2.05;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
