@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --ink: #17211b;
  --muted: #56635c;
  --paper: #ffffff;
  --soft: #eef7f1;
  --soft-strong: #d9eee2;
  --forest: #1e6b4e;
  --forest-dark: #124231;
  --meadow: #58a96f;
  --coral: #d45248;
  --sun: #f0b33e;
  --sky: #2f87a8;
  --line: #d7e4dc;
  --shadow: 0 18px 42px rgba(23, 33, 27, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font-body: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbf8;
  font-family: var(--font-body);
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 20px;
}

.topbar-site {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(10, 24, 19, 0.94) 0%, rgba(12, 31, 23, 0.84) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(11, 22, 18, 0.24);
}

.topbar-site .topbar-shell {
  width: min(1400px, 100%);
  gap: 12px 16px;
}

.topbar-admin {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(23, 33, 27, 0.08);
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 22px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(100%, 390px);
}

.topbar-site .brand-logo {
  height: 56px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #214e3a 0%, #4e9b63 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(12, 31, 23, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

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

.brand-kicker {
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar-site .brand small {
  color: rgba(255, 255, 255, 0.74);
}

.topbar-admin .brand-kicker {
  color: var(--forest);
}

.topbar-admin .brand-mark {
  border-color: rgba(30, 107, 78, 0.12);
  box-shadow: 0 12px 24px rgba(30, 107, 78, 0.14);
}

.nav {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.95rem;
}

.topbar-site .nav {
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 0;
  font-size: 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.topbar-admin .nav {
  justify-content: flex-start;
  color: var(--muted);
}

.nav a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.topbar-site .nav a {
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  white-space: nowrap;
}

.topbar-site .nav a {
  padding: 10px 7px;
}

.topbar-site .nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.topbar-admin .nav a:hover {
  color: var(--forest);
  background: var(--soft);
}

.topbar-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}

.topbar-site .topbar-side {
  gap: 10px;
}

.contact-chip,
.admin-badge {
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.topbar-site .contact-chip {
  min-width: 146px;
  padding: 10px 11px;
}

.contact-chip small,
.admin-badge small {
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-chip small {
  color: rgba(255, 255, 255, 0.72);
}

.contact-chip strong,
.admin-badge strong {
  line-height: 1.15;
}

.contact-chip:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-chip[data-phone-reveal] {
  appearance: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.phone-reveal-link {
  text-decoration: none;
  font-weight: 700;
}

.phone-reveal-link:not(.button) {
  color: var(--forest);
}

.phone-reveal-link:not(.button):hover {
  text-decoration: underline;
}

.admin-badge {
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--forest-dark);
}

.topbar-action,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  color: var(--forest);
  background: #ffffff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button.topbar-cta {
  color: var(--forest-dark);
  background: #ffffff;
}

.topbar-site .button.topbar-cta {
  padding: 11px 14px;
}

.button.topbar-cta:hover {
  background: #f3f7f4;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  height: 82svh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  color: #ffffff;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(13, 31, 23, 0.72) 0%,
    rgba(13, 31, 23, 0.46) 44%,
    rgba(13, 31, 23, 0.22) 100%
  );
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd264;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 3.9rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.15rem;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.14rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
}

.button.primary:hover {
  background: #b93e36;
}

.button.secondary {
  color: var(--forest-dark);
  background: #ffffff;
  border-color: var(--line);
}

.band {
  background: var(--paper);
}

.section {
  padding: 82px 0;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.facts span,
.activity-grid article,
.lodging-card,
.calendar-panel,
.availability-list,
.period-form,
.periods-panel,
.login-form,
.admin-stats span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.facts span {
  padding: 18px;
  color: var(--muted);
}

.facts strong {
  display: block;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.lodging-card {
  overflow: hidden;
}

.lodging-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.lodging-body {
  padding: 22px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 6px;
}

.card-action {
  width: 100%;
  margin-top: 18px;
}

.availability-section {
  background: #edf7f2;
}

.calendar-controls {
  display: grid;
  gap: 10px;
  min-width: 280px;
}

.calendar-controls label,
.panel-heading label,
.period-form label,
.login-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.month-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
}

.month-controls strong {
  text-align: center;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest-dark);
  background: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.calendar-panel,
.availability-list {
  padding: 22px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.available,
.day.available {
  background: #dff3e5;
}

.dot.option,
.day.option {
  background: #fff0c5;
}

.dot.reserved,
.day.reserved {
  background: #ffd7d2;
}

.dot.closed,
.day.closed {
  background: #dce4e8;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.weekday {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.day,
.empty-day {
  display: grid;
  min-height: 70px;
  align-content: start;
  gap: 4px;
  padding: 8px;
  border-radius: var(--radius);
}

.day {
  border: 1px solid rgba(23, 33, 27, 0.08);
}

.dot.season-basse,
.day.season-basse {
  background: #ddf2e4;
}

.dot.season-moyenne,
.day.season-moyenne {
  background: #a9dfba;
}

.dot.season-haute,
.day.season-haute {
  background: #5bbd78;
}

.dot.season-tres-haute,
.day.season-tres-haute {
  color: #ffffff;
  background: #176a38;
}

.day.season-haute small,
.day.season-tres-haute small {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.day.option[class*="season-"] {
  color: #5c3a00;
  background: #ffd36a;
  border-color: #d89500;
  box-shadow: none;
}

.day.reserved[class*="season-"] {
  color: #ffffff;
  background: #d45248;
  border-color: #a8322b;
  box-shadow: none;
}

.day.option[class*="season-"] small {
  color: #5c3a00;
  font-weight: 800;
}

.day.reserved[class*="season-"] small {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.day.closed {
  color: var(--ink);
  background: #dce4e8;
  border-color: #aab8be;
  box-shadow: none;
}

.day strong {
  font-size: 0.95rem;
}

.day small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.period-card {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.period-card:last-child {
  border-bottom: 0;
}

.period-card strong {
  display: block;
}

.period-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap,
.period-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  color: var(--forest-dark);
  background: var(--soft);
}

tr:last-child td {
  border-bottom: 0;
}

.activities-band {
  background: #ffffff;
}

.blog-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card,
.related-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
  text-decoration: none;
}

.blog-card img,
.related-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.related-card img {
  height: 180px;
}

.blog-card-body,
.related-card-body {
  padding: 20px;
}

.blog-card-body h2,
.blog-card-body h3,
.related-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.detail-hero-content .blog-meta {
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.detail-hero-content .blog-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.blog-card p,
.related-card p {
  margin: 0;
  color: var(--muted);
}

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

.article-content {
  display: grid;
  gap: 22px;
}

.article-summary,
.article-callout {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.article-summary p:last-child,
.article-callout p:last-child {
  margin-bottom: 0;
}

.article-content h2 {
  font-size: 1.7rem;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-content ul {
  margin: 0;
  padding-left: 20px;
}

.article-content li + li {
  margin-top: 8px;
}

.article-figure {
  margin: 6px 0 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.article-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-figure figcaption,
.article-credit {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-credit {
  margin-top: -6px;
  padding-top: 0;
}

.article-credit a {
  color: var(--forest);
}

.article-facts,
.article-checklist {
  display: grid;
  gap: 14px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

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

.article-facts li,
.article-checklist li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.05);
}

.article-facts strong,
.article-checklist strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-dark);
  font-size: 1rem;
}

.article-checklist li {
  position: relative;
  padding-left: 46px;
}

.article-checklist li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  color: var(--forest);
  font-weight: 800;
}

.article-note {
  padding: 18px 20px;
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--soft);
  color: var(--forest-dark);
}

.article-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.05);
}

.article-table table {
  width: 100%;
}

.article-table th,
.article-table td {
  font-size: 0.98rem;
}

.group-hero > img {
  object-position: center 42%;
}

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

.activity-grid article {
  padding: 24px;
}

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

.activity-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.activity-feature img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.activity-feature-body {
  padding: 22px;
}

.activity-feature-body p,
.activity-list-card p,
.season-card p {
  color: var(--muted);
}

.activity-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-list-card,
.season-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.activity-list-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-dark);
  font-size: 1.05rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.season-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.season-card li + li {
  margin-top: 8px;
}

.activity-grid p,
.reunion p,
.contact-grid p {
  color: var(--muted);
}

.reunion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.reunion img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section {
  background: var(--forest-dark);
  color: #ffffff;
}

.contact-section .eyebrow,
.contact-section p {
  color: #d7f0df;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(360px, 400px);
  justify-content: space-between;
  gap: 32px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 28px;
  max-width: 720px;
}

.contact-intro {
  max-width: 720px;
}

.contact-card {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.contact-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.contact-links-inline .button {
  margin-top: 0;
}

.contact-owner .contact-links-inline {
  margin-top: 8px;
}

address,
.contact-owner {
  display: grid;
  gap: 8px;
  font-style: normal;
}

address .button {
  width: fit-content;
  margin-top: 12px;
}

.booking-inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.booking-inquiry-form label {
  display: grid;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
}

.field-with-mark {
  position: relative;
  display: block;
}

.field-with-mark input {
  padding-right: 28px;
}

.field-required-star {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #ff6b6b;
  font-size: 16px;
  font-weight: 800;
  pointer-events: none;
}

.booking-inquiry-form input::placeholder,
.booking-inquiry-form textarea::placeholder {
  color: #7f7f7f;
}

.booking-inquiry-form input,
.booking-inquiry-form select,
.booking-inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

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

.compact-inquiry-form {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.detail-side .booking-inquiry-form label {
  color: var(--forest-strong);
}

.inquiry-list {
  gap: 14px;
}

.admin-period-card,
.inquiry-card {
  gap: 10px;
}

.inquiry-card-top,
.inquiry-contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.inquiry-card p {
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.admin-page {
  background: #f1f8f4;
}

.admin-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.admin-login {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.admin-login h1,
.admin-dashboard h1 {
  font-size: 2.7rem;
}

.login-form,
.period-form,
.periods-panel {
  padding: 24px;
}

.login-form,
.period-form {
  display: grid;
  gap: 16px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--coral);
  font-weight: 700;
}

.admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.lodging-admin-layout {
  grid-template-columns: minmax(0, 1.1fr) 360px;
}

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.admin-stats span {
  padding: 10px 12px;
  color: var(--forest-dark);
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-heading label {
  width: 220px;
}

.admin-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
  align-items: end;
}

.admin-table .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.small-button {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest-dark);
  background: #ffffff;
  cursor: pointer;
}

.small-button.danger {
  color: #ffffff;
  background: var(--coral);
  border-color: var(--coral);
}

.import-pill {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(33, 59, 44, 0.12);
  color: var(--forest-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-label {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.status-label.available {
  color: #16532d;
  background: #dff3e5;
}

.status-label.option {
  color: #775408;
  background: #fff0c5;
}

.status-label.reserved {
  color: #8c231b;
  background: #ffd7d2;
}

.status-label.closed {
  color: #33414a;
  background: #dce4e8;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.tab-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest-dark);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  color: #ffffff;
  background: var(--forest);
  border-color: var(--forest);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.lodging-preview {
  position: sticky;
  top: 92px;
}

.lodging-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.detail-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.detail-hero > img,
.detail-hero .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero > img {
  object-fit: cover;
}

.detail-hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 72px;
}

.detail-hero-content h1 {
  max-width: 760px;
}

.detail-hero-content p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.12rem;
}

.detail-hero-content .pill {
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.92);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.detail-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-side {
  padding: 24px;
  background: var(--forest-dark);
  border-radius: var(--radius);
  color: #ffffff;
}

.detail-side p {
  color: #d7f0df;
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-cloud span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--soft);
  font-weight: 750;
}

.gallery-band,
.other-band {
  background: #ffffff;
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.gallery-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 700;
}

.detail-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.detail-section ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-section li + li {
  margin-top: 8px;
}

.detail-availability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.detail-month-controls {
  margin-bottom: 18px;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.price-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.07);
}

.price-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin-top: 8px;
  color: var(--forest);
  font-size: 1.7rem;
}

.other-lodging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.other-lodging {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  text-decoration: none;
}

.other-lodging img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
}

.other-lodging strong,
.other-lodging small {
  display: block;
}

.other-lodging small {
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-site .topbar-shell {
    gap: 14px;
  }

  .topbar-site .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .topbar-site .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .topbar-admin .nav {
    justify-content: flex-start;
  }

  .topbar-side {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .topbar-site .topbar-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .topbar-site .contact-chip {
    min-width: 0;
  }

  .hero {
    height: 78svh;
    min-height: 460px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-grid,
  .lodging-grid,
  .article-facts,
  .blog-grid,
  .blog-preview-grid,
  .calendar-layout,
  .activity-feature-grid,
  .activity-list-grid,
  .activity-grid,
  .reunion,
  .contact-grid,
  .admin-login,
  .admin-layout,
  .detail-layout,
  .detail-availability-grid,
  .detail-sections-grid,
  .gallery-grid,
  .price-card-grid,
  .related-grid,
  .other-lodging-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-controls {
    min-width: 0;
  }

  .admin-stats {
    justify-content: flex-start;
  }

  .lodging-preview {
    position: static;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 50px;
  }

  .nav {
    padding-bottom: 0;
  }

  .topbar-admin .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .topbar-admin .nav a {
    white-space: nowrap;
  }

  .topbar-side {
    flex-direction: column;
    align-items: stretch;
  }

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

  .topbar-site .nav a {
    white-space: normal;
  }

  .topbar-site .topbar-side {
    grid-template-columns: 1fr;
  }

  .contact-chip,
  .admin-badge,
  .topbar-action,
  .button.topbar-cta {
    width: 100%;
  }

  .hero {
    min-height: 440px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2,
  .admin-login h1,
  .admin-dashboard h1 {
    font-size: 1.75rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-inner,
  .admin-main {
    width: calc(100% - 28px);
  }

  .facts,
  .form-row {
    grid-template-columns: 1fr;
  }

  .travelers-row {
    grid-template-columns: 1fr;
  }

  .calendar {
    gap: 5px;
  }

  .day,
  .empty-day {
    min-height: 56px;
    padding: 6px;
  }

  .day small {
    display: none;
  }

  .footer {
    flex-direction: column;
  }

  .detail-hero {
    min-height: 440px;
  }

  .detail-hero-content {
    width: calc(100% - 28px);
    padding: 92px 0 48px;
  }

  .gallery-grid img {
    height: 210px;
  }

  .other-lodging {
    grid-template-columns: 1fr;
  }
}
