/* =========================================================
   Wisconsin.co.jp / site.css
   Japanese editorial travel magazine style
   湖・森・建築・食卓のウィスコンシン
   ========================================================= */

:root {
  --ink: #17211d;
  --muted: #5d6762;
  --soft: #f5f1e8;
  --paper: #fffaf0;
  --cream: #fbf6ea;
  --lake: #234f5f;
  --lake-2: #356e7e;
  --pine: #1f4a35;
  --field: #c59a4a;
  --cherry: #9f3f3f;
  --night: #10201f;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 20px 55px rgba(16, 32, 31, 0.14);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 154, 74, 0.14), transparent 34rem),
    linear-gradient(180deg, var(--paper), var(--soft));
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    "Times New Roman",
    serif;
  line-height: 1.9;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p {
  margin: 0 0 1.2rem;
}

strong {
  font-weight: 700;
}

::selection {
  background: rgba(197, 154, 74, 0.38);
}

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

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

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section-tight {
  padding: clamp(36px, 5vw, 70px) 0;
}

.grid {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-narrow {
  max-width: 820px;
  margin-inline: auto;
}

.content-wide {
  max-width: 1040px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--lake);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.kicker {
  color: var(--field);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.7rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
}

h4 {
  font-size: 1.08rem;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 2.05;
  color: #33413c;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo,
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--night);
  font-weight: 800;
  line-height: 1.05;
}

.logo .domain,
.site-logo .domain {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: 0.08em;
}

.logo .tagline,
.site-logo .tagline {
  color: var(--muted);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.6rem;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  color: #23312d;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: #fff;
  background: var(--lake);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  padding: 0.62rem 0.9rem;
  color: var(--ink);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 800;
}

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

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 850px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 24, 0.86), rgba(10, 25, 24, 0.48) 42%, rgba(10, 25, 24, 0.18)),
    linear-gradient(0deg, rgba(10, 25, 24, 0.72), transparent 44%);
  z-index: 1;
}

.hero img,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 88px;
  max-width: 920px;
  margin-left: max(18px, calc((100vw - var(--max)) / 2));
}

.hero .eyebrow {
  color: #f3d58b;
}

.hero h1 {
  max-width: 860px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.hero .lead {
  max-width: 760px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-card-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hero-mini-card {
  padding: 1.2rem;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.hero-mini-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--lake);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-mini-card p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

.btn,
.button,
.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.18rem;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.btn-primary,
.button-primary {
  background: var(--lake);
  color: #fff;
  box-shadow: 0 12px 28px rgba(35, 79, 95, 0.23);
}

.btn-secondary,
.button-secondary {
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline,
.button-outline,
.read-more {
  background: transparent;
  color: var(--lake);
  border-color: rgba(35, 79, 95, 0.25);
}

.btn:hover,
.button:hover,
.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 32, 31, 0.16);
}

.btn-primary:hover,
.button-primary:hover {
  background: var(--pine);
}

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 12px 34px rgba(16, 32, 31, 0.08);
}

.card:hover {
  box-shadow: var(--shadow);
}

.card-img,
.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd2bc;
}

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

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

.card-body,
.card-content {
  padding: clamp(1.15rem, 2.2vw, 1.7rem);
}

.card h3 {
  margin-bottom: 0.7rem;
}

.card p {
  color: #46534e;
  font-size: 0.98rem;
}

.card .meta {
  margin-bottom: 0.65rem;
  color: var(--lake);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
  gap: 0;
  align-items: stretch;
}

.feature-card .card-img,
.feature-card .card-image {
  aspect-ratio: auto;
  min-height: 360px;
}

.feature-card .card-body,
.feature-card .card-content {
  padding: clamp(1.8rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
   Editorial intro blocks
   ========================================================= */

.intro-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(245, 241, 232, 0.8)),
    radial-gradient(circle at top right, rgba(35, 79, 95, 0.12), transparent 22rem);
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 4.5vw, 4rem);
}

.intro-panel h2 {
  margin-bottom: 1rem;
}

.intro-columns {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.pullquote,
blockquote {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-left: 5px solid var(--field);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 250, 240, 0.75);
  color: var(--night);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.65;
}

.pullquote cite,
blockquote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* =========================================================
   Destination / region rows
   ========================================================= */

.destination-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px) 0;
  border-top: 1px solid var(--line);
}

.destination-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.destination-row:nth-child(even) .destination-image {
  order: 2;
}

.destination-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.destination-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.destination-copy h3 {
  margin-bottom: 0.9rem;
}

.destination-copy p {
  color: #44514c;
}

.info-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.92rem;
}

.info-list li {
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.7);
}

/* =========================================================
   Feature index
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(20px, 3vw, 34px);
}

.feature-main {
  min-height: 520px;
}

.feature-main .card-img,
.feature-main .card-image {
  aspect-ratio: 16 / 9;
}

.feature-stack {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.mini-feature {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.75);
}

.mini-feature img {
  width: 120px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-feature h3 {
  font-size: 1rem;
}

.mini-feature p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* =========================================================
   Article pages
   ========================================================= */

.article-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(42px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(35, 79, 95, 0.13), transparent 42%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.article-header {
  width: min(920px, calc(100% - 36px));
  margin-inline: auto;
}

.article-header h1 {
  color: var(--night);
  font-size: clamp(2.1rem, 5vw, 4.45rem);
}

.article-header .lead {
  margin-top: 1.2rem;
}

.article-image {
  width: min(1120px, calc(100% - 36px));
  margin: clamp(28px, 5vw, 56px) auto 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-image img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-body {
  width: min(830px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
  font-size: clamp(1.02rem, 1.45vw, 1.14rem);
}

.article-body h2 {
  margin: 2.6rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.article-body h3 {
  margin: 2rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.35rem;
}

.article-body a {
  color: var(--lake);
  border-bottom: 1px solid rgba(35, 79, 95, 0.28);
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
}

.article-body li {
  margin-bottom: 0.65rem;
}

.place-card {
  margin: 2rem 0;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 10px 26px rgba(16, 32, 31, 0.07);
}

.place-card h3 {
  margin-top: 0;
}

.place-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--muted);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
}

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

.gallery-hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(36px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 32, 31, 0.92), rgba(35, 79, 95, 0.82)),
    var(--night);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #ded3bd;
  box-shadow: 0 12px 28px rgba(16, 32, 31, 0.1);
}

.gallery-item a,
.gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

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

.gallery-item figcaption,
.gallery-caption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(16, 32, 31, 0.76);
  color: #fff;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 15, 14, 0.92);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  color: #fff;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
}

.lightbox-next {
  right: 20px;
  top: 50%;
}

/* =========================================================
   Tables / sitemap
   ========================================================= */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--lake);
  background: rgba(35, 79, 95, 0.08);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.sitemap-list a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.72);
  color: var(--lake);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 800;
}

.sitemap-list a:hover {
  background: var(--lake);
  color: #fff;
}

/* =========================================================
   CTA / footer
   ========================================================= */

.cta {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 74, 53, 0.98), rgba(35, 79, 95, 0.94)),
    var(--pine);
  box-shadow: var(--shadow);
}

.cta::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: rgba(243, 213, 139, 0.18);
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  margin-top: clamp(50px, 8vw, 100px);
  padding: clamp(42px, 7vw, 76px) 0 30px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--night);
}

.footer-grid {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand h2,
.footer-brand .domain {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links h3 {
  margin-bottom: 0.8rem;
  color: #f3d58b;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.footer-links a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.9rem;
}

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

.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.82rem;
}

/* =========================================================
   Utilities
   ========================================================= */

.bg-cream {
  background: var(--cream);
}

.bg-lake {
  background: var(--lake);
  color: #fff;
}

.bg-pine {
  background: var(--pine);
  color: #fff;
}

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

.text-muted {
  color: var(--muted);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: var(--shadow);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(32px, 5vw, 60px) 0;
}

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

@media (max-width: 980px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-card-strip,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .intro-columns,
  .destination-row,
  .destination-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .destination-row:nth-child(even) .destination-image {
    order: initial;
  }

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

  .sitemap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .container,
  .wrap,
  .site-wrap {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .navbar {
    width: min(100% - 24px, var(--max));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    padding-top: 0.5rem;
  }

  .nav-links.open,
  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: calc(50% - 0.35rem);
    text-align: center;
    background: rgba(255, 250, 240, 0.9);
    border: 1px solid var(--line);
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(10, 25, 24, 0.82), rgba(10, 25, 24, 0.42)),
      linear-gradient(90deg, rgba(10, 25, 24, 0.72), rgba(10, 25, 24, 0.2));
  }

  .hero-content {
    width: min(100% - 24px, var(--max));
    margin-left: auto;
    padding: 88px 0 72px;
  }

  .hero-card-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .sitemap-list,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .feature-card .card-img,
  .feature-card .card-image {
    min-height: 260px;
  }

  .mini-feature {
    grid-template-columns: 92px 1fr;
  }

  .mini-feature img {
    width: 92px;
    height: 78px;
  }

  .article-image img {
    aspect-ratio: 4 / 3;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 20px;
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }
}

@media (max-width: 420px) {
  .nav-links a {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .button,
  .read-more {
    width: 100%;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .btn,
  .button,
  .read-more,
  .lightbox {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .card,
  .intro-panel,
  .place-card,
  .cta {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  a {
    text-decoration: underline;
  }
}
