:root {
  --bg: #f6f4ee;
  --surface: #ffffff;
  --ink: #17211c;
  --muted: #66736b;
  --line: #dcd8cc;
  --accent: #0d6b53;
  --accent-strong: #084736;
  --sun: #e1ad42;
  --water: #2f7d8c;
  --shadow: 0 18px 48px rgba(23, 33, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0 18px;
  transition: transform 160ms ease, background 160ms ease;
}

button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

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

.site-header {
  align-items: center;
  background: rgba(246, 244, 238, 0.92);
  border-bottom: 1px solid rgba(220, 216, 204, 0.7);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 124px;
  padding: 0 clamp(22px, 4.6vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  gap: 0;
}

.header-brand-block {
  align-items: flex-start;
  display: grid;
  gap: 2px;
}

.brand-mark {
  display: block;
  height: 120px;
  object-fit: contain;
  width: 120px;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3.2vw, 48px);
  color: #344039;
  font-size: 1.12rem;
  font-weight: 850;
}

.nav-links a {
  color: inherit;
  padding: 10px 0 14px;
  position: relative;
}

.nav-links a::after {
  background: #f0b84b;
  border-radius: 999px;
  bottom: 4px;
  content: "";
  height: 3px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 44px;
}

.nav-links a.is-active {
  color: var(--accent-strong);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover {
  color: var(--accent);
}

.language-switcher {
  align-items: center;
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid rgba(220, 216, 204, 0.9);
  border-radius: 999px;
  display: inline-flex;
  gap: 3px;
  padding: 4px;
}

.language-switcher button {
  background: transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  min-height: 36px;
  padding: 0 13px;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  background: var(--accent);
  color: #fff;
  transform: none;
}

.language-switcher button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.language-switcher button:disabled:hover {
  background: transparent;
  color: var(--muted);
}

body {
  top: 0 !important;
}

html.translated-ltr body,
html.translated-rtl body {
  top: 0 !important;
}

.nav-button,
.mobile-manager-link {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  min-height: 42px;
  padding: 0 14px;
}

.nav-button:hover,
.mobile-manager-link:hover {
  background: var(--accent-strong);
  color: #fff;
}

.mobile-manager-link {
  display: none;
}

.site-footer {
  background: radial-gradient(circle at 20% 10%, rgba(18, 118, 90, 0.22), transparent 32%), linear-gradient(135deg, #063b30, #03241f);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  padding: 34px clamp(18px, 4vw, 56px);
}

.site-footer-inner {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: auto 0.85fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1460px;
}

.site-footer-inner > div {
  display: grid;
  gap: 10px;
}

.footer-brand img {
  height: 86px;
  object-fit: contain;
  width: 86px;
}

.site-footer-inner strong {
  color: #ffffff;
  font-weight: 950;
}

.site-footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer nav {
  align-items: start;
  display: grid;
  gap: 8px;
  justify-content: start;
}

.site-footer a,
.site-footer button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0;
}

.site-footer a:hover,
.site-footer button:hover {
  color: #f0b84b;
}

.legal-page {
  padding: clamp(28px, 5vw, 62px) clamp(16px, 4vw, 56px);
}

.legal-document {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(220, 216, 204, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(24px, 4vw, 48px);
}

.legal-document h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  margin: 0 0 10px;
}

.legal-document h2 {
  color: var(--accent-strong);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  margin: 30px 0 10px;
}

.legal-document p,
.legal-document li {
  color: #3f554b;
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
  margin-top: 0;
}

.legal-placeholder-list {
  background: rgba(239, 235, 222, 0.46);
  border: 1px dashed rgba(13, 107, 83, 0.28);
  border-radius: 8px;
  list-style: none;
  padding: 14px 16px;
}

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

.legal-table-wrapper {
  overflow-x: auto;
}

.legal-table {
  border-collapse: collapse;
  min-width: 620px;
  width: 100%;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(220, 216, 204, 0.9);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(13, 107, 83, 0.08);
  color: var(--accent-strong);
}

.cookie-consent {
  bottom: 18px;
  left: 18px;
  position: fixed;
  right: 18px;
  z-index: 2500;
}

.cookie-consent-card {
  align-items: end;
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid rgba(220, 216, 204, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(23, 33, 28, 0.2);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px;
}

.cookie-consent-main h2 {
  font-size: 1.35rem;
  margin: 0 0 6px;
}

.cookie-consent-main p {
  color: #41564d;
  margin: 0;
}

.cookie-consent-options {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
}

.cookie-consent-options label {
  align-items: center;
  background: rgba(239, 245, 241, 0.72);
  border: 1px solid rgba(220, 216, 204, 0.85);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
}

.cookie-consent-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent-refuse {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  min-height: 42px;
  padding: 0 14px;
}

.cookie-consent-refuse:hover {
  background: #0c1410;
}

.beta-banner {
  background: linear-gradient(90deg, rgba(225, 173, 66, 0.16), rgba(225, 173, 66, 0.08));
  border-bottom: 1px solid rgba(225, 173, 66, 0.45);
  position: relative;
}

.beta-banner-inner {
  align-items: center;
  display: grid;
  gap: 4px 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 10px clamp(18px, 4vw, 48px);
}

.beta-banner-badge {
  background: var(--sun);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.beta-banner-message {
  color: var(--ink);
  font-size: 0.92rem;
  grid-column: 2;
  line-height: 1.5;
  margin: 0;
}

.beta-banner-message strong {
  color: var(--accent-strong);
}

.beta-banner-thanks {
  color: var(--muted);
  font-size: 0.85rem;
  grid-column: 2;
  margin: 0;
}

.beta-banner-close {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font-size: 1.3rem;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.beta-banner-close:hover {
  background: rgba(23, 33, 28, 0.08);
  color: var(--ink);
}

.menu-toggle {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 48px;
  justify-content: center;
  min-height: 48px;
  padding: 0;
  width: 48px;
}

.menu-toggle span {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 3px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 22px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 124px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 78px) clamp(18px, 4vw, 56px);
}

.hero::after {
  background: transparent;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-media {
  background: url("assets/hero-bivvy-sunrise.svg?v=20260619-light") center / cover;
  inset: 0;
  position: absolute;
  z-index: -2;
}

.home-header {
  background: linear-gradient(180deg, #fbf2e3 0%, #f5ead9 100%);
  box-shadow: 0 10px 34px rgba(36, 31, 20, 0.09);
  min-height: 92px;
  padding: 0 clamp(56px, 5.5vw, 92px);
}

.home-header .brand-mark {
  height: 90px;
  width: 90px;
}

.home-header .nav-links {
  gap: clamp(58px, 7.2vw, 110px);
  font-size: 1.22rem;
  transform: translateX(18px);
}

.home-header .language-switcher {
  padding: 5px;
}

.home-header .language-switcher button {
  min-height: 42px;
  min-width: 46px;
}

.home-hero {
  align-items: stretch;
  min-height: calc((100vh - 92px) * 0.9375);
  padding: 0 clamp(56px, 5.5vw, 92px);
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 18, 16, 0.76) 0%, rgba(7, 18, 16, 0.42) 34%, rgba(7, 18, 16, 0.05) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.home-hero .hero-media {
  background-image: url("assets/hero-carp-sunrise.png?v=20260625");
  background-position: center center;
}

.home-hero .hero-content {
  align-content: end;
  display: grid;
  max-width: 100%;
  padding-bottom: clamp(70px, 8vw, 118px);
  transform: none;
}

.home-hero .hero-slogan {
  color: #fff;
  font-size: clamp(3.25rem, 4.55vw, 4.85rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.56);
  white-space: nowrap;
}

.home-hero .hero-subtitle {
  color: rgba(255, 246, 218, 0.94);
  font-size: clamp(1.25rem, 1.48vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 18px 0 24px;
  max-width: 760px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.52);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 50px;
}

.hero-primary-link,
.hero-secondary-link,
.gold-link-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
}

.hero-primary-link {
  background: linear-gradient(135deg, #0e5b48, #07372f);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.hero-secondary-link {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.gold-link-button {
  background: linear-gradient(135deg, #d89a1d, #b9770d);
  color: #ffffff;
}

.home-hero .search-panel {
  align-items: end;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(70, 48, 25, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(20, 25, 20, 0.24);
  gap: 20px;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1.26fr) minmax(156px, 0.86fr) minmax(156px, 0.86fr) minmax(170px, 0.72fr) minmax(180px, auto) 48px;
  margin: 0 auto -44px;
  max-width: 1580px;
  padding: 28px 26px;
  width: 100%;
  z-index: 2;
}

.home-hero .search-panel label {
  font-size: 0.98rem;
  gap: 10px;
  position: relative;
}

.home-hero .search-panel label:nth-child(1),
.home-hero .search-panel label:nth-child(2) {
  padding-left: 54px;
}

.home-hero .search-panel label:nth-child(1)::before,
.home-hero .search-panel label:nth-child(2)::before,
.home-hero .search-panel label:nth-child(5)::before {
  align-items: center;
  background: #efe8da;
  border-radius: 999px;
  bottom: 10px;
  color: #102820;
  content: "⌖";
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  left: 0;
  line-height: 1;
  position: absolute;
  width: 46px;
}

.home-hero .search-panel label:nth-child(3)::after,
.home-hero .search-panel label:nth-child(4)::after,
.home-hero .search-panel label:nth-child(5)::after {
  align-items: center;
  bottom: 19px;
  color: #162820;
  display: inline-flex;
  font-size: 1.12rem;
  height: 22px;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 14px;
  width: 22px;
}

.home-hero .search-panel label:nth-child(3)::after,
.home-hero .search-panel label:nth-child(4)::after {
  content: "▦";
}

.home-hero .search-panel label:nth-child(5)::after {
  content: "⌄";
}

.home-hero .search-panel label:nth-child(5)::before {
  bottom: 18px;
  color: #162820;
  content: "♙";
  font-size: 1.15rem;
  left: 14px;
  line-height: 1;
  position: absolute;
}

.home-hero .search-panel label:nth-child(5) input {
  padding-left: 42px;
  padding-right: 38px;
}

.home-hero .search-panel label:nth-child(1)::before,
.home-hero .search-panel label:nth-child(2)::before {
  content: "";
}

.home-hero .search-panel label:nth-child(1)::after,
.home-hero .search-panel label:nth-child(2)::after {
  border: 2px solid #102820;
  border-radius: 999px;
  bottom: 23px;
  content: "";
  height: 13px;
  left: 16px;
  pointer-events: none;
  position: absolute;
  width: 13px;
}

.home-hero .search-panel label:nth-child(3)::after,
.home-hero .search-panel label:nth-child(4)::after {
  display: none;
}

.home-hero .search-panel input,
.home-hero .search-panel select {
  background-color: rgba(255, 255, 255, 0.74);
  border-color: rgba(119, 93, 58, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  min-height: 62px;
}

.home-hero .search-panel .search-field {
  padding-left: 0 !important;
  position: relative;
}

.home-hero .search-panel .search-field::before,
.home-hero .search-panel .search-field::after,
.home-hero .search-panel label.search-field::before,
.home-hero .search-panel label.search-field::after {
  content: none !important;
  display: none !important;
}

.search-label {
  display: block;
}

.home-hero .search-icon {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: #0f352c;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  left: 18px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 31px);
  transform: translateY(-50%);
  width: 24px;
  z-index: 2;
}

.home-hero .search-icon svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.home-hero .search-panel .search-field input,
.home-hero .search-panel .search-field select {
  padding-left: 50px;
}

.home-hero .search-panel .search-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #102820 50%), linear-gradient(135deg, #102820 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 38px;
}

#regionFilter,
#departmentFilter {
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  font-size: 0.92rem;
  padding-left: 54px;
  padding-right: 44px;
  text-align: left;
  text-align-last: center;
}

.home-hero .search-panel .search-field input[type="date"] {
  padding-right: 16px;
}

.date-search-field {
  position: relative;
}

.date-search-field .date-placeholder {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  left: 54px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 16px;
  text-align: center;
  top: calc(100% - 31px);
  transform: translateY(-50%);
  z-index: 2;
}

.date-search-field.has-date .date-placeholder {
  display: none;
}

.date-search-field input.is-empty-date {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.date-search-field input.is-empty-date::-webkit-datetime-edit {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.date-search-field input.is-empty-date::-webkit-calendar-picker-indicator {
  display: none;
}

.home-hero .search-panel .search-field input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

.home-hero .search-panel button[type="submit"] {
  background: linear-gradient(135deg, #0f4d3f, #052d27);
  box-shadow: 0 18px 34px rgba(6, 63, 53, 0.24);
  font-size: 1.18rem;
  min-height: 62px;
  padding: 0 34px;
}

.search-inline-error {
  background: #fff7e8;
  border: 1px solid #e2b46a;
  border-radius: 8px;
  color: #684917;
  font-size: 0.92rem;
  font-weight: 900;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  text-align: center;
}

.search-reset-button {
  align-items: center;
  align-self: end;
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(15, 77, 63, 0.26);
  box-shadow: none;
  color: #0f4d3f;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 0;
  width: 48px;
}

.search-reset-button svg {
  color: currentColor;
  display: block;
  flex: 0 0 auto;
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 22px;
}

.search-reset-button svg path {
  stroke: currentColor;
}

.search-reset-button:hover {
  background: #eef3f0;
  color: #073b30;
}

.search-reset-button.is-hidden {
  display: none;
}

.hero-content {
  color: #fff;
  max-width: 1180px;
  transform: translateY(-96px);
  width: 100%;
}

.eyebrow {
  display: none;
}

.hero-slogan {
  color: rgba(255, 255, 255, 0.95);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.9vw, 1.75rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 24px;
  max-width: 100%;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.search-panel {
  align-items: end;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(200px, 1.05fr) minmax(250px, 1.35fr) minmax(155px, 0.9fr) minmax(155px, 0.9fr) minmax(112px, 0.58fr) minmax(168px, auto);
  max-width: 1180px;
  padding: 20px;
}

.search-panel button {
  min-height: 54px;
  padding: 0 26px;
}

label {
  color: #314039;
  display: grid;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 8px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 54px;
  padding: 0 14px;
  width: 100%;
}

select {
  padding-right: 34px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

.stats-band {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.stats-band div {
  background: rgba(255, 255, 255, 0.045);
  padding: 24px clamp(18px, 4vw, 42px);
}

.stats-band strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
}

.stats-band span {
  color: #d4ded9;
  display: block;
  margin-top: 8px;
}

.section-shell,
.booking-layout,
.manager-band,
.manager-section {
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(56px, 8vw, 98px) clamp(18px, 4vw, 32px);
}

.manager-section.requests-page {
  max-width: 1500px;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-note {
  color: var(--muted);
  margin: 0;
  max-width: 440px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  margin: 0;
}

.filter-bar {
  align-items: end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) 210px auto;
  margin-bottom: 24px;
  padding: 18px 0;
}

.map-section {
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(56px, 8vw, 98px) clamp(18px, 4vw, 32px) 0;
}

.map-title {
  color: #26382f;
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  font-weight: 850;
  line-height: 1.08;
}

.pond-map {
  background: #dfe8e3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: clamp(420px, 58vh, 620px);
  overflow: hidden;
  width: 100%;
}

.map-popup {
  display: grid;
  gap: 5px;
  min-width: 220px;
}

.map-popup-photo {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.map-popup strong {
  color: var(--ink);
}

.map-popup span {
  color: var(--muted);
}

.map-popup-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}

.map-book-button,
.map-detail-button {
  margin-top: 0;
  min-height: 36px;
  padding: 0 10px;
}

.map-detail-button {
  background: #eef3f0;
  color: var(--accent-strong);
}

.map-detail-button:hover {
  background: #dde9e3;
  color: var(--accent-strong);
}

.leaflet-control-zoom a {
  min-height: 42px;
  min-width: 42px;
}

.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
  z-index: 1;
}

.toggle-label {
  align-items: center;
  display: flex;
  gap: 10px;
  min-height: 46px;
}

.toggle-label input {
  min-height: auto;
  width: 18px;
}

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

#etangs.section-shell {
  max-width: 1460px;
  padding-top: clamp(86px, 9vw, 124px);
}

.home-section-heading {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.home-section-heading h2 {
  color: #073b30;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  position: relative;
}

.home-section-heading h2::after {
  background: #d89a1d;
  border-radius: 999px;
  bottom: -14px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 56px;
}

#etangs .filter-bar {
  background: rgba(255, 252, 246, 0.74);
  border: 1px solid rgba(220, 216, 204, 0.82);
  border-radius: 8px;
  margin: 34px 0 24px;
  padding: 14px;
}

#etangs .pond-grid {
  gap: 32px;
}

#etangs .pond-card {
  background: #fffdf8;
  border: 1px solid rgba(218, 213, 200, 0.8);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(20, 41, 33, 0.1);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
}

#etangs .pond-card img {
  aspect-ratio: 16 / 8.2;
  border-radius: 14px 14px 0 0;
  display: block;
  object-fit: cover;
  width: 100%;
}

#etangs .pond-card-body {
  background: #fffdf8;
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 2.1vw, 24px);
}

#etangs .pond-card-body h3 {
  color: #0a332b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#etangs .pond-card-info-grid {
  display: grid;
  gap: 16px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 132px;
}

#etangs .pond-card-info {
  align-items: center;
  display: grid;
  gap: 11px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-width: 0;
}

#etangs .pond-card-icon {
  align-items: center;
  background: #eaf1df;
  border-radius: 999px;
  color: #0a332b;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

#etangs .pond-card-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 25px;
}

#etangs .pond-card-info span:last-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

#etangs .pond-card-info em {
  color: #6b716d;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}

#etangs .pond-card-info strong {
  color: #0a332b;
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  font-weight: 950;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

#etangs .card-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2px;
}

#etangs .card-actions .secondary-button {
  background: #fffdf8;
  border: 2px solid #0a332b;
  color: #0a332b;
  min-height: 48px;
}

#etangs .card-actions button:not(.secondary-button) {
  background: linear-gradient(135deg, #063d31, #052b24);
  color: #ffffff;
  min-height: 48px;
}

#etangs .card-actions button {
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 950;
  justify-content: center;
  width: 100%;
}

.home-feature-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1460px;
  padding: 0 clamp(18px, 4vw, 32px) clamp(54px, 7vw, 86px);
}

.home-feature-card {
  align-items: center;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(220, 216, 204, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.08);
  display: grid;
  min-height: 265px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}

.home-feature-card::after {
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0 0 0 45%;
  opacity: 0.55;
  position: absolute;
}

.home-feature-card > div {
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.home-feature-card h2 {
  color: #073b30;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.home-feature-card p {
  color: #314039;
  margin: 0 0 24px;
}

.home-map-card::after {
  background-image: linear-gradient(90deg, rgba(255, 252, 246, 0.96), rgba(255, 252, 246, 0.28)), url("assets/hero-carp-sunrise.png?v=20260625");
  filter: saturate(0.5) brightness(1.25);
}

.home-manager-card::after {
  background-image: linear-gradient(90deg, rgba(255, 252, 246, 0.96), rgba(255, 252, 246, 0.18)), url("assets/hero-carp-sunrise.png?v=20260625");
}

.map-section {
  max-width: 1460px;
  padding-top: 0;
  padding-bottom: clamp(56px, 8vw, 98px);
}

.map-page {
  background: #f6f4ee;
  min-height: calc(100vh - 104px);
  padding: clamp(18px, 3vw, 34px);
}

.map-page-hero {
  align-items: center;
  display: flex;
  gap: 18px;
  margin: 0 auto 22px;
  max-width: 1680px;
}

.map-title-icon {
  align-items: center;
  color: #183f2f;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.map-title-icon svg {
  fill: none;
  height: 54px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 54px;
}

.map-page-hero h1 {
  color: #081712;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  margin: 0;
}

.map-page-hero p {
  color: #44544d;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin: 8px 0 0;
}

.interactive-map-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1680px;
  position: relative;
}

.map-filter-toggle {
  display: none;
}

.map-filter-panel {
  align-self: start;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(220, 216, 204, 0.9);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(23, 33, 28, 0.08);
  display: grid;
  gap: 20px;
  padding: 18px;
}

.map-filter-heading,
.map-services-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.map-filter-heading h2 {
  font-size: 1.45rem;
  margin: 0;
}

.map-reset-button,
.map-services-more {
  align-items: center;
  background: transparent;
  color: var(--accent-strong);
  display: inline-flex;
  font-size: 0.9rem;
  gap: 7px;
  min-height: auto;
  padding: 0;
}

.map-filter-group {
  display: grid;
  gap: 10px;
}

.map-filter-group label,
.map-filter-group > span,
.map-services-heading strong {
  color: #1c2924;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-filter-group select,
.map-filter-group input[type="range"] {
  width: 100%;
}

.map-filter-group select {
  min-height: 42px;
}

.map-radius-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.map-radius-control {
  grid-template-columns: minmax(0, 1fr) 112px;
}

.map-inline-number {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(220, 216, 204, 0.95);
  border-radius: 8px;
  color: #14251e;
  display: grid;
  font-weight: 900;
  gap: 4px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 42px;
  padding: 0 10px;
}

.map-inline-number input {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  min-height: 36px;
  padding: 0;
  text-align: right;
  width: 100%;
}

.map-inline-number input:focus {
  box-shadow: none;
  outline: 0;
}

.map-inline-number span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: none;
}

.map-price-number {
  min-width: 112px;
}

.map-radius-row strong {
  color: #14251e;
  font-size: 0.95rem;
  min-width: 64px;
  text-align: right;
}

.map-radius-row input[type="range"] {
  accent-color: var(--accent-strong);
}

.map-radius-scale {
  color: #374b42;
  display: flex;
  font-size: 0.82rem;
  justify-content: space-between;
}

.map-location-button {
  min-height: 38px;
  width: 100%;
}

.map-filter-message {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.map-results-summary {
  color: #52665d;
  font-size: 0.9rem;
  font-weight: 900;
  margin: -8px 0 0;
  padding: 0;
  text-align: left;
}

.map-services-list {
  display: grid;
  gap: 8px;
}

.map-service-choice,
.map-service-option {
  align-items: center;
  color: #22342c;
  display: flex;
  font-size: 0.92rem;
  gap: 10px;
  line-height: 1.25;
}

.map-service-choice input,
.map-service-option input {
  height: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  width: 16px;
}

.map-results-button {
  background: linear-gradient(135deg, #174f2a, #0e3f24);
  width: 100%;
}

.map-canvas-wrap {
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(23, 33, 28, 0.1);
  min-height: min(760px, calc(100vh - 190px));
  overflow: hidden;
  position: relative;
}

.interactive-pond-map {
  height: min(760px, calc(100vh - 190px));
  min-height: 620px;
  width: 100%;
}

.map-empty-state {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(220, 216, 204, 0.92);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(23, 33, 28, 0.12);
  left: 50%;
  padding: 14px 18px;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  z-index: 550;
}

.map-help-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(220, 216, 204, 0.9);
  border-radius: 10px;
  bottom: 20px;
  box-shadow: 0 16px 36px rgba(23, 33, 28, 0.14);
  color: #23372e;
  display: grid;
  gap: 4px;
  left: 20px;
  max-width: 270px;
  padding: 16px 18px;
  position: absolute;
  z-index: 450;
}

.map-help-card strong {
  color: #11251c;
}

.map-help-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.map-popup-shell .leaflet-popup-content-wrapper {
  background: #fffdf8;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.2);
  overflow: hidden;
  padding: 0;
}

.map-popup-shell .leaflet-popup-content {
  margin: 0;
  width: min(320px, 78vw) !important;
}

.map-popup-shell .leaflet-popup-close-button {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  color: #18382d;
  display: flex;
  font-size: 1.25rem;
  height: 28px;
  justify-content: center;
  right: 8px;
  top: 8px;
  width: 28px;
}

.map-fishery-popup {
  display: grid;
  min-width: 0;
}

.map-fishery-popup img {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  display: block;
  object-fit: cover;
  width: 100%;
}

.map-fishery-popup-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.map-fishery-popup h3 {
  color: #071a15;
  font-size: 1.28rem;
  line-height: 1.15;
  margin: 0;
}

.map-fishery-popup p {
  color: #33473f;
  margin: 0;
}

.map-popup-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.map-popup-metrics span {
  background: #f6f2e9;
  border: 1px solid rgba(220, 216, 204, 0.8);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.map-popup-metrics small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.map-popup-metrics strong {
  color: #102820;
  font-size: 0.95rem;
}

.map-popup-services {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.map-popup-services span {
  background: #eef3f0;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 6px 9px;
}

.map-popup-detail,
.map-popup-detail-button {
  align-items: center;
  background: #fffdf8;
  border: 1px solid #12372b;
  border-radius: 8px;
  color: #12372b;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  justify-self: center;
  min-height: 42px;
  padding: 0 22px;
  text-decoration: none;
  width: min(190px, 100%);
}

.map-popup-detail:hover,
.map-popup-detail-button:hover {
  background: #f4efe4;
  color: #0b251d;
}

.map-popup-shell .map-popup-detail,
.map-popup-shell .map-popup-detail:visited {
  color: #12372b;
}

.map-popup-shell .map-popup-detail:hover {
  color: #0b251d;
}

.home-bottom-banner {
  background: linear-gradient(90deg, rgba(8, 71, 54, 0.1), rgba(225, 173, 66, 0.12), rgba(8, 71, 54, 0.1));
  border-top: 1px solid rgba(41, 63, 52, 0.08);
  height: 54px;
  margin-top: clamp(54px, 8vw, 96px);
}

.empty-state {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
}

.pond-empty-state {
  align-items: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.pond-empty-state p {
  margin: 0;
}

.pond-load-more,
.pond-reset-actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: 2px;
}

.pond-load-more .secondary-link-button,
.pond-reset-actions .secondary-link-button,
.pond-empty-state .secondary-link-button {
  min-height: 46px;
  padding: 0 22px;
}

.pond-reset-actions {
  padding-top: 0;
}

.pond-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
  overflow: hidden;
}

.pond-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.pond-photo-strip {
  background: #f7faf8;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(5, 1fr);
  padding: 4px;
}

.pond-photo-strip img {
  aspect-ratio: 1;
  border-radius: 4px;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.pond-card-body {
  padding: 18px;
}

.card-title-row {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.card-title-row h3 {
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 0;
}

.price {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

.location,
.description {
  color: var(--muted);
  margin: 9px 0 0;
}

.description {
  min-height: 72px;
}

.tag-list,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list {
  margin-top: 16px;
}

.tag-list span,
.trust-list span {
  background: #eaf1ed;
  border: 1px solid #d5e2dc;
  border-radius: 999px;
  color: #245243;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 6px 10px;
}

.card-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.secondary-button {
  background: #eef3f0;
  color: var(--accent-strong);
}

.secondary-button:hover {
  background: #dde9e3;
}

.secondary-link-button {
  align-items: center;
  background: #eef3f0;
  border-radius: 8px;
  color: var(--accent-strong);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  width: fit-content;
}

.secondary-link-button:hover {
  background: #dde9e3;
}

.add-pond-cta {
  background: var(--accent-strong);
  box-shadow: 0 12px 26px rgba(8, 71, 54, 0.18);
  color: #ffffff;
}

.add-pond-cta:hover {
  background: var(--accent);
  color: #ffffff;
}

.danger-button {
  background: #8f2f26;
  color: #fff;
}

.danger-button:hover {
  background: #6f211a;
}

.booking-layout {
  align-items: start;
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.booking-page-layout {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 70px);
}

.booking-page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0;
}

.booking-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 15px;
  padding: clamp(18px, 3vw, 30px);
}

.booking-back-link {
  justify-self: start;
}

.booking-pond-preview {
  align-items: center;
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 78px;
  padding: 8px;
}

.booking-pond-preview img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  height: 64px;
  object-fit: cover;
  width: 86px;
}

.booking-pond-preview strong,
.booking-pond-preview span {
  display: block;
}

.booking-pond-preview strong {
  font-size: 0.94rem;
  line-height: 1.2;
}

.booking-pond-preview span {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.booking-price-summary {
  background: #f1f7f4;
  border: 1px solid #cfe1d8;
  border-radius: 8px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.booking-price-summary div {
  background: rgba(255, 255, 255, 0.58);
  display: grid;
  gap: 4px;
  padding: 12px;
}

.booking-price-summary span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.booking-price-summary strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.1;
}

.booking-price-disclaimer {
  background: rgba(255, 255, 255, 0.58);
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 12px 12px;
}

.booking-calendar {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 9px;
  padding-bottom: 14px;
}

.booking-calendar-header {
  align-items: start;
  display: grid;
  gap: 8px;
}

.booking-calendar-header h3 {
  font-size: 1.12rem;
  line-height: 1.15;
  margin: 0;
}

.booking-calendar-grid .calendar-day {
  cursor: pointer;
  min-height: 50px;
  padding: 6px;
  text-align: left;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.booking-calendar .calendar-grid {
  gap: 4px;
}

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

.booking-calendar .calendar-weekday {
  font-size: 0.68rem;
  padding: 4px;
}

.booking-calendar .calendar-day-number {
  font-size: 0.88rem;
}

.booking-calendar .calendar-day-status {
  font-size: 0.66rem;
}

.booking-calendar-grid .calendar-day:hover:not([aria-disabled="true"]) {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.calendar-day.is-disabled,
.calendar-day.is-outside.is-disabled {
  background: #ececea;
  border-color: #d3d0c8;
  color: #8b8a83;
  cursor: not-allowed;
  opacity: 1;
}

.calendar-day.is-busy.is-disabled {
  opacity: 1;
}

.calendar-day.is-in-range,
.calendar-day.is-in-range.is-disabled {
  background: #fff2b8;
  border-color: #dba43a;
  color: #3c2c08;
}

.calendar-day.is-selected,
.calendar-day.is-range-start,
.calendar-day.is-range-end,
.calendar-day.is-selected.is-disabled,
.calendar-day.is-range-start.is-disabled,
.calendar-day.is-range-end.is-disabled {
  background: #ffd96a;
  border-color: #b97900;
  box-shadow: inset 0 0 0 2px #b97900, 0 0 0 3px rgba(225, 173, 66, 0.28);
  color: #2f2207;
}

.legend-selected {
  background: var(--sun);
}

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

.address-autocomplete {
  position: relative;
}

.address-autocomplete-suggestions {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 45, 36, 0.14);
  left: 0;
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 20;
}

.address-autocomplete-suggestion {
  cursor: pointer;
  font-weight: 500;
  padding: 9px 12px;
}

.address-autocomplete-suggestion:hover,
.address-autocomplete-suggestion:focus {
  background: #edf5ef;
}

.form-status {
  color: var(--accent-strong);
  font-weight: 850;
  margin: 0;
  min-height: 24px;
}

.booking-verification {
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  padding: 14px;
}

.booking-verification div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.booking-verification span {
  color: var(--muted);
  font-weight: 850;
}

.booking-verification strong {
  background: #17211c;
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  font-family: "Courier New", monospace;
  letter-spacing: 2px;
  min-width: 96px;
  padding: 8px 10px;
  text-align: center;
}

.booking-verification label {
  grid-column: 1 / -1;
}

.checkbox-line {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-weight: 850;
  gap: 10px;
}

.checkbox-line input {
  min-height: 22px;
  width: 22px;
}

.manager-band {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.8fr 1fr;
}

.manager-band p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.manager-section {
  border-top: 1px solid var(--line);
}

.manager-page {
  min-height: calc(100vh - 70px);
}

.manager-page h1 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  margin: 0;
}

.manager-intro {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.85fr 1fr;
  margin-bottom: 26px;
}

.manager-intro p:last-child,
.manager-intro-actions p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.manager-intro-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.form-help {
  color: var(--muted);
  margin: 0;
}

.manager-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1fr);
}

.secure-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
  display: grid;
  gap: 15px;
  padding: clamp(18px, 3vw, 28px);
  scroll-margin-top: 92px;
}

.secure-form h1,
.secure-form h2,
.secure-form h3 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.dashboard-locked p.form-help {
  margin-top: -4px;
}

.password-field {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.icon-button {
  background: #eef3f0;
  color: var(--accent-strong);
  min-width: 76px;
  padding: 0 12px;
}

.icon-button:hover {
  background: #dde9e3;
}

.text-link-button {
  background: transparent;
  color: var(--accent-strong);
  justify-self: start;
  min-height: 42px;
  padding: 8px 0;
  text-decoration: underline;
}

.text-link-button:hover {
  background: transparent;
  color: var(--ink);
}

.security-note {
  background: #fff8e6;
  border: 1px solid #ecd99f;
  border-radius: 8px;
  color: #66521b;
  font-size: 0.88rem;
  margin: 0;
  padding: 10px 12px;
}

.verification-panel {
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.reset-password-fields {
  display: grid;
  gap: 12px;
}

.reset-header {
  justify-content: center;
  min-height: 92px;
  padding-block: 12px;
}

.reset-header .brand {
  margin: 0;
}

.reset-password-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 116px);
  padding: clamp(24px, 5vw, 56px) 20px;
}

.reset-password-card {
  box-shadow: 0 18px 44px rgba(24, 36, 29, 0.11);
  gap: 22px;
  max-width: 560px;
  padding: clamp(24px, 4vw, 36px);
  width: min(100%, 560px);
}

.reset-password-heading {
  display: grid;
  gap: 8px;
}

.reset-password-heading h1 {
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.08;
  margin: 0;
}

.reset-password-heading p:not(.eyebrow) {
  color: #5f7469;
  font-weight: 700;
  margin: 0;
  max-width: 38rem;
}

.reset-password-card button[type="submit"] {
  min-height: 50px;
}

.private-panel-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.private-panel fieldset {
  border: 0;
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.pricing-panel {
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.pricing-panel h3 {
  font-size: 1.08rem;
  margin: 0;
}

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

.photo-preview-grid figure {
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.photo-preview-grid img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.photo-preview-grid figcaption {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 6px;
}

.photo-preview-actions {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 6px;
}

.photo-preview-actions button {
  background: #fffdf6;
  border: 1px solid #d9dfd5;
  border-radius: 6px;
  color: var(--deep);
  cursor: pointer;
  flex: 1;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.1;
  min-height: 30px;
  padding: 6px 5px;
}

.photo-preview-actions button:hover:not(:disabled) {
  border-color: var(--deep);
}

.photo-preview-actions button:disabled {
  color: var(--muted);
  cursor: default;
  opacity: 0.62;
}

.photo-preview-actions [data-photo-remove] {
  color: #962d26;
}

.private-panel.is-locked {
  opacity: 0.58;
}

.private-panel.is-locked::after {
  color: var(--muted);
  content: "Connectez-vous pour modifier cette fiche.";
  font-weight: 800;
}

.signup-panel {
  transition: opacity 180ms ease, transform 180ms ease;
}

.signup-panel.is-hidden {
  display: none;
}

.manager-dashboard {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.manager-dashboard.is-hidden,
.is-hidden {
  display: none;
}

[hidden],
.manager-alert-panel[hidden] {
  display: none !important;
}

.dashboard-header {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.dashboard-header h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.dashboard-header h1 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  margin: 0;
}

.compact-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.dashboard-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-stats div,
.dashboard-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
}

.dashboard-stats div {
  padding: 20px;
}

.dashboard-stats strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.dashboard-stats span {
  color: var(--muted);
  display: block;
  font-weight: 850;
  margin-top: 8px;
}

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

.admin-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
}

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

.admin-page {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1440px;
  padding: clamp(20px, 4vw, 44px);
}

.admin-hero {
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 33, 28, 0.08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 30px);
}

.admin-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  margin: 0;
}

.admin-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 10px 0 0;
}

.admin-stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 33, 28, 0.07);
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 16px;
}

.admin-stats-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-stats-grid strong {
  color: var(--accent-strong);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.9;
}

.admin-tabs {
  background: rgba(246, 244, 238, 0.88);
  border: 1px solid rgba(220, 216, 204, 0.72);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 33, 28, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding: 8px;
  position: sticky;
  top: 72px;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.admin-tabs button {
  background: transparent;
  color: #2d463a;
  flex: 1 1 150px;
  min-height: 40px;
  padding: 0 14px;
}

.admin-tabs button.is-active {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(220, 216, 204, 0.7), 0 8px 18px rgba(23, 33, 28, 0.07);
  color: var(--accent-strong);
}

.admin-tab-panel {
  display: none;
}

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

.admin-overview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 33, 28, 0.07);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-panel h2 {
  font-size: 1.22rem;
  line-height: 1.15;
  margin: 0;
}

.admin-panel-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.admin-panel-heading span {
  color: var(--muted);
  font-weight: 850;
}

.admin-mini-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-mini-list li {
  align-items: center;
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.74);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 10px;
}

.admin-mini-list-trigger {
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex: 1;
  font: inherit;
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

.admin-mini-list-trigger:hover strong,
.admin-mini-list-trigger:focus-visible strong {
  text-decoration: underline;
}

.admin-mini-list strong {
  color: var(--ink);
}

.admin-mini-list span,
.admin-empty {
  color: var(--muted);
}

.admin-alert-panel .admin-mini-list li {
  background: #fff8e6;
  border-color: #ecd99f;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  border-collapse: collapse;
  min-width: 980px;
  width: 100%;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-table tbody tr:hover {
  background: #fbfaf4;
}

.admin-table small {
  color: var(--muted);
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-action-row button,
.admin-action-row a {
  min-height: 34px;
  padding: 0 10px;
}

.admin-filters {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-security-toggle-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.admin-export-button {
  min-height: 52px;
}

.manager-request-filter-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manager-request-filter-grid label {
  background: linear-gradient(180deg, #fffefb, #fbfaf4);
  border: 1px solid rgba(220, 216, 204, 0.95);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 45, 36, 0.04);
  display: grid;
  gap: 0;
  font-weight: 900;
  min-height: 76px;
  padding: 14px 16px;
}

.manager-request-filter-grid input,
.manager-request-filter-grid select {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  min-height: 48px;
  padding: 4px 0;
  width: 100%;
}

.manager-request-filter-grid input:focus,
.manager-request-filter-grid select:focus {
  outline: 2px solid rgba(11, 68, 52, 0.14);
  outline-offset: 4px;
}

.manager-request-filter-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.manager-request-search {
  background: #fffdf7;
  border: 1px solid rgba(220, 216, 204, 0.95);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(20, 45, 36, 0.04);
  color: var(--text);
  flex: 1 1 340px;
  font: inherit;
  font-weight: 850;
  min-height: 44px;
  min-width: min(100%, 280px);
  padding: 0 18px;
}

.manager-request-search:focus {
  border-color: rgba(11, 68, 52, 0.38);
  outline: 3px solid rgba(11, 68, 52, 0.12);
}

.manager-request-filter-actions .secondary-button {
  background: #fffdf7;
  border-radius: 999px;
}

.manager-requests-table {
  min-width: 1220px;
  width: 100%;
  table-layout: fixed;
}

.manager-requests-table th,
.manager-requests-table td {
  padding: 12px 7px;
  overflow-wrap: break-word;
}

.manager-requests-table th {
  white-space: nowrap;
}

.manager-requests-table th:nth-child(1),
.manager-requests-table td:nth-child(1) {
  width: 92px;
}

.manager-requests-table th:nth-child(2),
.manager-requests-table td:nth-child(2) {
  width: 120px;
}

.manager-requests-table th:nth-child(3),
.manager-requests-table td:nth-child(3) {
  width: 190px;
}

.manager-requests-table th:nth-child(4),
.manager-requests-table td:nth-child(4) {
  width: 100px;
}

.manager-requests-table th:nth-child(5),
.manager-requests-table td:nth-child(5),
.manager-requests-table th:nth-child(6),
.manager-requests-table td:nth-child(6) {
  width: 95px;
}

.manager-requests-table th:nth-child(7),
.manager-requests-table td:nth-child(7) {
  text-align: center;
  width: 78px;
}

.manager-requests-table th:nth-child(8),
.manager-requests-table td:nth-child(8) {
  width: 190px;
}

.manager-requests-table th:nth-child(9),
.manager-requests-table td:nth-child(9) {
  width: 85px;
}

.manager-requests-table th:last-child,
.manager-requests-table td:last-child {
  width: 270px;
}

.manager-requests-table .admin-action-row {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.manager-requests-table .admin-action-row button,
.manager-requests-table .admin-action-row a {
  font-size: 0.88rem;
  min-height: 32px;
  padding: 0 9px;
  white-space: nowrap;
}

.manager-requests-table [data-accept-booking],
.manager-request-detail-actions [data-accept-booking] {
  background: #0f7d5f;
  color: #fffdf7;
}

.manager-requests-table [data-accept-booking]:hover,
.manager-request-detail-actions [data-accept-booking]:hover {
  background: #0a654d;
  color: #fff;
}

.manager-requests-table .request-date-cell {
  white-space: nowrap;
}

.manager-request-detail-modal,
.confirm-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 130;
}

.manager-request-detail-modal[hidden],
.manager-request-detail-modal.is-hidden,
.confirm-modal[hidden],
.confirm-modal.is-hidden {
  display: none !important;
}

.manager-request-detail-backdrop,
.confirm-modal-backdrop {
  background: rgba(9, 19, 15, 0.52);
  inset: 0;
  position: absolute;
}

.confirm-modal-card {
  background: #fffdf7;
  border: 1px solid rgba(220, 216, 204, 0.9);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(9, 19, 15, 0.28);
  display: grid;
  gap: 14px;
  max-width: 440px;
  padding: clamp(22px, 4vw, 32px);
  position: relative;
  text-align: center;
  width: min(100%, 440px);
}

.confirm-modal-close {
  align-items: center;
  background: #edf5ef;
  border: 1px solid rgba(11, 68, 52, 0.12);
  border-radius: 999px;
  color: var(--deep, var(--accent-strong));
  cursor: pointer;
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
}

.confirm-modal-icon {
  align-items: center;
  background: rgba(13, 107, 83, 0.12);
  border-radius: 999px;
  color: var(--accent);
  display: flex;
  font-size: 1.8rem;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  margin: 0 auto;
  width: 56px;
}

.confirm-modal-card h2 {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  margin: 0;
}

.confirm-modal-card p {
  color: var(--muted);
  margin: 0;
}

.confirm-modal-ok {
  justify-self: center;
  margin-top: 6px;
}

.manager-request-detail-card {
  background: #fffdf7;
  border: 1px solid rgba(220, 216, 204, 0.9);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(9, 19, 15, 0.28);
  display: grid;
  gap: 18px;
  max-height: calc(100vh - 36px);
  max-width: 760px;
  overflow-y: auto;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  width: min(100%, 760px);
}

.manager-request-detail-heading {
  align-items: start;
  border-bottom: 1px solid rgba(220, 216, 204, 0.9);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 14px;
}

.manager-request-detail-heading h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0;
}

.manager-request-detail-heading button {
  align-items: center;
  background: #edf5ef;
  border: 1px solid rgba(11, 68, 52, 0.12);
  border-radius: 999px;
  color: var(--deep);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.manager-request-detail-summary {
  display: grid;
  gap: 16px;
}

.manager-request-detail-main {
  align-items: center;
  background: linear-gradient(105deg, #fff8ed, #fffdf7);
  border: 1px solid rgba(216, 151, 63, 0.25);
  border-radius: 12px;
  display: grid;
  gap: 5px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
}

.manager-request-detail-main strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.manager-request-detail-main span:not(.status-pill) {
  color: var(--muted);
  font-weight: 800;
}

.manager-request-detail-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.manager-request-detail-grid div,
.manager-request-detail-recap {
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.9);
  border-radius: 10px;
  padding: 12px;
}

.manager-request-detail-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-request-detail-grid strong {
  color: var(--ink);
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.manager-request-detail-recap {
  display: grid;
  gap: 10px;
}

.manager-request-detail-recap > strong {
  color: var(--deep);
  font-size: 1.05rem;
}

.manager-request-detail-recap ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.manager-request-detail-recap li {
  color: var(--muted);
  font-weight: 800;
}

.manager-request-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-email-templates,
.admin-booking-reasons,
.admin-pond-options {
  background: #fffdf7;
  border: 1px solid rgba(220, 216, 204, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 45, 36, 0.06);
  margin-top: 22px;
  padding: 18px;
}

.admin-pond-options-columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0;
}

.admin-pond-options-group {
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.8);
  border-radius: 8px;
  padding: 14px;
}

.admin-pond-options-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-pond-option-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.admin-pond-option-row input[type="text"] {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  flex: 1;
  font: inherit;
  padding: 8px 10px;
}

.admin-pond-options-add {
  display: flex;
  gap: 8px;
}

.admin-pond-options-add input {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  flex: 1;
  font: inherit;
  padding: 10px 11px;
}

@media (max-width: 720px) {
  .admin-pond-options-columns {
    grid-template-columns: 1fr;
  }
}

.admin-booking-reason-form {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(130px, 0.8fr) minmax(180px, 1fr) minmax(150px, 0.8fr) minmax(180px, 1fr) auto;
  margin: 14px 0 16px;
}

.admin-booking-reason-form input,
.admin-booking-reason-form select,
.admin-reasons-table input,
.admin-reasons-table select {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 10px 11px;
  width: 100%;
}

.admin-reasons-table code {
  background: #edf5ef;
  border-radius: 6px;
  color: var(--deep);
  display: inline-block;
  font-size: 0.86rem;
  padding: 5px 7px;
}

.admin-email-template-editor {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.admin-email-template-fields {
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.8);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.admin-email-template-fields label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.admin-email-template-fields input,
.admin-email-template-fields select,
.admin-email-template-fields textarea {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
  width: 100%;
}

.admin-email-template-fields textarea {
  font-family: Consolas, "Courier New", monospace;
  resize: vertical;
}

.admin-email-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-email-template-preview-wrap {
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.8);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.admin-email-template-preview-wrap > strong {
  color: var(--deep);
  font-size: 1rem;
}

.admin-email-template-preview {
  background: #fffaf0;
  border: 1px solid rgba(220, 216, 204, 0.85);
  border-radius: 8px;
  max-height: 520px;
  min-height: 240px;
  overflow: auto;
  padding: 16px;
}

.admin-email-preview-subject {
  background: #edf5ef;
  border: 1px solid rgba(11, 68, 52, 0.14);
  border-radius: 8px;
  color: var(--deep);
  font-weight: 900;
  margin-bottom: 12px;
  padding: 10px 12px;
}

.admin-email-preview-card {
  background: #fffdf7;
  border: 1px solid rgba(220, 216, 204, 0.86);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(20, 45, 36, 0.08);
  overflow: hidden;
}

.admin-email-preview-card-header {
  background: #073d31;
  color: #fff8e8;
  padding: 18px;
  text-align: center;
}

.admin-email-preview-card-header img {
  display: block;
  height: 58px;
  margin: 0 auto 6px;
  width: 58px;
}

.admin-email-preview-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.admin-email-preview-card-body h4 {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0;
}

.admin-email-preview-card-body p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 860px) {
  .admin-email-template-editor {
    grid-template-columns: 1fr;
  }
}

#adminEmailTemplateStatus {
  color: var(--muted);
  font-weight: 800;
}

.admin-modal {
  align-items: center;
  background: rgba(9, 19, 15, 0.48);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 100;
}

.admin-modal[hidden],
.admin-modal.is-hidden {
  display: none !important;
}

.admin-modal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  max-width: 620px;
  padding: 22px;
}

.admin-modal-card h2 {
  font-size: 1.5rem;
  margin: 0;
}

.admin-modal-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.admin-modal-card p {
  color: var(--muted);
  margin: 0;
}

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

.admin-modal-warning-list {
  color: var(--muted);
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}

.admin-modal-card label {
  display: grid;
  font-weight: 900;
  gap: 6px;
}

.admin-modal-card label input,
.admin-modal-card label textarea {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-weight: 400;
  padding: 11px 12px;
  width: 100%;
}

.admin-manager-form {
  display: grid;
  gap: 12px;
}

.admin-manager-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.admin-manager-form input {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
  width: 100%;
}

.admin-manager-form input[readonly] {
  background: #f7f5ee;
  color: var(--muted);
}

.admin-manager-detail-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-manager-detail-actions span {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-manager-detail-summary {
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.74);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px 16px;
}

.admin-manager-detail-block strong {
  display: block;
  margin-bottom: 8px;
}

.admin-manager-detail-ponds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-manager-detail-ponds a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-strong);
  display: inline-block;
  font-weight: 800;
  padding: 5px 12px;
  text-decoration: none;
}

.admin-manager-detail-ponds a:hover,
.admin-manager-detail-ponds a:focus-visible {
  text-decoration: underline;
}

.admin-manager-detail-stats {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-manager-detail-stats li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 8px 10px;
}

.admin-manager-detail-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-manager-detail-stats strong {
  font-size: 1.1rem;
}

.booking-refusal-modal {
  align-items: center;
  background: rgba(13, 27, 24, 0.38);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 110;
}

.booking-refusal-modal[hidden],
.booking-refusal-modal.is-hidden {
  display: none !important;
}

.booking-refusal-backdrop {
  inset: 0;
  position: absolute;
}

.booking-refusal-card {
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(15, 38, 32, 0.2);
  display: grid;
  gap: 12px;
  max-width: 520px;
  padding: 22px;
  position: relative;
  width: min(100%, 520px);
}

.booking-refusal-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.booking-refusal-heading span {
  color: var(--accent-strong);
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 900;
}

.booking-refusal-heading button {
  align-items: center;
  background: rgba(238, 243, 236, 0.92);
  border-radius: 999px;
  color: var(--accent-strong);
  display: inline-flex;
  font-size: 1.35rem;
  height: 38px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 38px;
}

.booking-refusal-card p {
  color: var(--muted);
  margin: 0;
}

.booking-refusal-card label {
  color: var(--text);
  font-weight: 900;
}

.booking-refusal-card select,
.booking-refusal-card textarea {
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.booking-refusal-card textarea {
  min-height: 112px;
  resize: vertical;
}

.booking-refusal-error {
  background: #fff3ee;
  border: 1px solid rgba(169, 49, 39, 0.25);
  border-radius: 8px;
  color: #9d2f27;
  font-weight: 800;
  padding: 10px 12px;
}

.booking-refusal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.manager-decision-notice {
  background: #eef8f1;
  border: 1px solid rgba(45, 168, 104, 0.28);
  border-radius: 8px;
  color: var(--accent-strong);
  font-weight: 900;
  margin-bottom: 16px;
  padding: 13px 16px;
}

.manager-decision-notice[hidden] {
  display: none !important;
}

.manager-decision-notice.is-warning {
  background: #fff7e8;
  border-color: rgba(224, 161, 57, 0.36);
  color: #73501a;
}

.admin-booking-detail {
  display: grid;
  gap: 14px;
}

.admin-booking-detail > div:first-child {
  background: #fbfaf4;
  border: 1px solid rgba(220, 216, 204, 0.78);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.admin-booking-detail span {
  color: var(--muted);
}

.admin-booking-detail ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-booking-detail li {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 8px;
}

.pond-detail-page {
  display: grid;
  gap: 26px;
}

.pond-detail-hero {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.9fr);
}

.pond-detail-hero-image {
  aspect-ratio: 1.18 / 1;
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(20, 41, 33, 0.12);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pond-detail-hero-content {
  align-content: center;
  display: grid;
  gap: 18px;
}

.pond-detail-hero h1 {
  color: #071a15;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 0.96;
  margin: 0;
}

.pond-detail-mini-meta,
.pond-detail-hero-stats,
.pond-detail-two-columns,
.pond-detail-bottom-actions {
  display: grid;
  gap: 14px;
}

.pond-detail-mini-meta {
  color: #263c34;
  font-weight: 850;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pond-detail-mini-meta span {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  min-width: 0;
}

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

.pond-detail-info-card,
.pond-detail-panel,
.pond-detail-feature-band {
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(220, 216, 204, 0.82);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(23, 33, 28, 0.08);
}

.pond-detail-info-card {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 16px;
}

.pond-detail-info-card em,
.pond-detail-feature-band span {
  color: #66716b;
  font-style: normal;
  font-weight: 850;
}

.pond-detail-info-card strong {
  color: #082e26;
  display: block;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.1;
}

.pond-detail-description {
  color: #243a32;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.pond-detail-feature-band {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.pond-detail-feature-band article {
  align-items: center;
  border-right: 1px solid rgba(18, 48, 39, 0.12);
  display: grid;
  gap: 8px;
  grid-template-rows: 28px auto 1fr;
  justify-items: center;
  min-height: 104px;
  padding: 8px 12px;
  text-align: center;
}

.pond-detail-feature-band article:last-child {
  border-right: 0;
}

.pond-detail-feature-band strong {
  align-self: start;
  color: #082e26;
  font-size: 0.9rem;
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.pond-detail-feature-band .pond-detail-icon {
  height: 28px;
  width: 28px;
}

.pond-detail-photo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pond-detail-photo-button {
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: zoom-in;
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: 0;
}

.pond-detail-photo-grid img {
  aspect-ratio: 1.18 / 1;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(23, 33, 28, 0.08);
  display: block;
  object-fit: cover;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.pond-detail-photo-button:hover img,
.pond-detail-photo-button:focus-visible img {
  box-shadow: 0 16px 34px rgba(23, 33, 28, 0.14);
  transform: translateY(-2px);
}

.pond-detail-photo-button:focus-visible {
  outline: 3px solid rgba(225, 173, 66, 0.7);
  outline-offset: 3px;
}

.pond-photo-lightbox {
  align-items: center;
  background: rgba(7, 18, 16, 0.78);
  border-radius: 14px;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  position: fixed;
  z-index: 1800;
}

.pond-photo-lightbox[hidden] {
  display: none;
}

.pond-photo-lightbox img {
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  max-height: min(82vh, 760px);
  max-width: min(92vw, 1100px);
  object-fit: contain;
}

.pond-photo-lightbox-close {
  align-items: center;
  background: #fffdf8;
  border-radius: 999px;
  color: #12372b;
  display: flex;
  font-size: 1.8rem;
  height: 44px;
  justify-content: center;
  min-height: 44px;
  padding: 0;
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  top: clamp(18px, 4vw, 46px);
  width: 44px;
}

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

.pond-detail-panel {
  align-content: start;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.pond-detail-panel h2 {
  align-items: center;
  color: #0a332b;
  display: flex;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  gap: 12px;
  margin: 0;
}

.pond-detail-clean-list,
.pond-detail-service-list {
  display: grid;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pond-detail-clean-list li,
.pond-detail-service-list li {
  align-items: center;
  color: #253a33;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px minmax(0, 1fr);
}

.pond-detail-service-list li {
  grid-template-columns: 24px minmax(0, 1fr);
}

.pond-detail-service-list .is-unavailable .pond-detail-list-icon {
  color: #9b2e24;
}

.pond-detail-location-panel p {
  color: #243a32;
  font-weight: 850;
  margin: 0;
}

.pond-detail-map-empty {
  align-items: center;
  background: #eef3f0;
  border: 1px dashed #cfdcd5;
  border-radius: 12px;
  color: var(--muted);
  display: flex;
  min-height: 220px;
  padding: 20px;
}

.pond-detail-location-panel .pond-detail-mini-map {
  border-radius: 12px;
  min-height: 320px;
}

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

.pond-detail-primary-button,
.pond-detail-secondary-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 950;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  text-decoration: none;
}

.pond-detail-primary-button {
  background: linear-gradient(135deg, #063d31, #052b24);
  color: #ffffff;
}

.pond-detail-secondary-button {
  background: #fffdf8;
  border: 2px solid #0a332b;
  color: #0a332b;
}

.pond-detail-icon,
.pond-detail-inline-icon,
.pond-detail-section-icon,
.pond-detail-list-icon,
.pond-detail-button-icon {
  align-items: center;
  color: #0a332b;
  display: inline-flex;
  justify-content: center;
}

.pond-detail-icon svg,
.pond-detail-inline-icon svg,
.pond-detail-section-icon svg,
.pond-detail-list-icon svg,
.pond-detail-button-icon svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
  width: 24px;
}

.pond-detail-section-icon {
  background: #0a4a3a;
  border-radius: 8px;
  color: #ffffff;
  height: 42px;
  width: 42px;
}

.pond-detail-list-icon svg {
  height: 20px;
  width: 20px;
}

.pond-detail-button-icon {
  color: currentColor;
}

.pond-detail-social-links {
  display: flex;
  gap: 10px;
  margin: 6px 0 4px;
}

.pond-detail-social-icon {
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  transition: opacity 0.15s ease;
  width: 36px;
}

.pond-detail-social-icon:hover {
  opacity: 0.85;
}

.pond-detail-social-icon svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.pond-detail-social-icon--instagram {
  background: #d6249f;
}

.pond-detail-social-icon--facebook {
  background: #1877f2;
}

.pond-detail-social-icon--website {
  background: #0a4a3a;
}

.manager-profile-section {
  display: grid;
  gap: 14px;
}

.collapsible-header {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
  color: var(--ink);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: auto;
  padding: 18px;
  text-align: left;
}

.collapsible-header:hover {
  background: #f7faf8;
  color: var(--ink);
}

.collapse-arrow {
  align-items: center;
  color: var(--accent-strong);
  display: inline-flex;
  font-size: 2rem;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  transition: transform 160ms ease;
  width: 32px;
}

.collapsible-header[aria-expanded="true"] .collapse-arrow {
  transform: rotate(90deg);
}

.manager-profile-form {
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
}

.add-pond-page {
  margin: 0 auto;
  max-width: 1120px;
}

.add-pond-form {
  gap: 18px;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.availability-calendar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.calendar-header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.calendar-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.calendar-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.calendar-controls strong {
  min-width: 150px;
  text-align: center;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calendar-legend span {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 850;
  gap: 6px;
}

.calendar-legend i {
  border-radius: 999px;
  display: inline-flex;
  height: 12px;
  width: 12px;
}

.legend-free {
  background: #2fa866;
}

.legend-one {
  background: #e6a33d;
}

.legend-many {
  background: #e06b4f;
}

.legend-busy {
  background: #e06b4f;
}

.legend-pending {
  background: #e6a33d;
}

.pond-calendars-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pond-calendar-card {
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.pond-calendar-card-header {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.pond-calendar-card h3 {
  font-size: 1.12rem;
  margin: 0;
}

.pond-calendar-card-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: right;
}

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

.calendar-weekday,
.calendar-day {
  border-radius: 8px;
  min-height: 74px;
  padding: 8px;
}

.calendar-weekday {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  min-height: auto;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  background: #daf4e3;
  border: 1px solid #7fca9a;
  color: #164a2b;
  display: grid;
  gap: 4px;
}

.calendar-day.is-outside {
  background: #daf4e3;
  border-color: #7fca9a;
  color: #164a2b;
}

.calendar-day.is-busy {
  background: #ffe1d5;
  border-color: #e06b4f;
  color: #61251c;
}

.calendar-day.is-one-accepted {
  background: #fff1d8;
  border-color: #e6a33d;
  color: #6b4613;
}

.calendar-day.is-many-accepted {
  background: #ffe1d5;
  border-color: #e06b4f;
  color: #61251c;
}

.calendar-day.is-pending {
  background: #fff1d8;
  border-color: #e6a33d;
  color: #6b4613;
}

.calendar-day.is-busy .calendar-day-status {
  color: #8f2f26;
  font-weight: 900;
}

.calendar-day.is-pending .calendar-day-status {
  color: #8a5a14;
  font-weight: 900;
}

.calendar-day.is-today {
  box-shadow: none;
}

.availability-calendar .calendar-day.is-selected-day,
.week-calendar-day.is-selected-day {
  box-shadow: inset 0 0 0 3px #d9973a;
}

.booking-calendar-grid .calendar-day.is-in-range {
  background: #fff2b8;
  border-color: #dba43a;
  color: #3c2c08;
}

.booking-calendar-grid .calendar-day.is-selected,
.booking-calendar-grid .calendar-day.is-range-start,
.booking-calendar-grid .calendar-day.is-range-end {
  background: #ffd96a;
  border-color: #b97900;
  box-shadow: inset 0 0 0 2px #b97900, 0 0 0 3px rgba(225, 173, 66, 0.28);
  color: #2f2207;
}

.calendar-day-number {
  font-weight: 900;
}

.calendar-day-status {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.dashboard-list {
  min-height: 220px;
  padding: 18px;
}

.dashboard-list h2,
.dashboard-list h3 {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 14px;
}

.dashboard-locked {
  max-width: 560px;
}

.booking-summary-card {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 12px 0;
}

.booking-summary-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.booking-summary-card strong {
  line-height: 1.2;
}

.booking-summary-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-summary-card-compact {
  align-items: start;
  gap: 12px;
  grid-template-columns: 1fr auto;
  padding: 9px 0;
}

.compact-booking-main {
  display: grid;
  gap: 3px;
}

.compact-booking-detail {
  margin-top: 0;
  min-width: 132px;
}

.compact-booking-detail summary {
  text-align: center;
}

.booking-summary-card button {
  margin-top: 6px;
}

.booking-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 6px;
}

.pond-actions {
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 360px;
}

.pond-actions .secondary-link-button,
.pond-actions .danger-button {
  min-height: 42px;
  width: 100%;
}

.booking-recap {
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  margin-top: 6px;
  padding: 8px 10px;
}

.booking-recap summary {
  color: var(--accent-strong);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
}

.booking-recap ul {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 8px 0 0;
  padding-left: 18px;
}

.status-pill {
  align-self: start;
  background: #fff8e6;
  border: 1px solid #ecd99f;
  border-radius: 999px;
  color: #66521b;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 8px;
  width: fit-content;
}

.status-confirmed {
  background: #e4f3ea;
  border-color: #b9dcc7;
  color: #1f5c39;
}

.status-pending {
  background: #fff8e6;
  border-color: #ecd99f;
  color: #66521b;
}

.status-declined {
  background: #f9e4df;
  border-color: #e8b8ad;
  color: #8f2f26;
}

.history-size-toggle {
  justify-self: start;
  margin-top: 4px;
}

.manager-dashboard {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 0;
}

.manager-workspace {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(16px, 3vw, 32px);
}

.manager-top-nav {
  align-items: center;
  background: rgba(246, 244, 238, 0.86);
  border: 1px solid rgba(220, 216, 204, 0.72);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 33, 28, 0.08);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: clamp(14px, 2vw, 24px) clamp(14px, 3vw, 32px) 0;
  padding: 8px;
  position: sticky;
  top: 72px;
  z-index: 30;
  backdrop-filter: blur(16px);
}

.site-header .manager-top-nav {
  margin: 0;
  position: relative;
  top: auto;
}

.manager-site-header {
  background: linear-gradient(180deg, #fbf2e3 0%, #f5ead9 100%);
  box-shadow: 0 10px 34px rgba(36, 31, 20, 0.09);
  min-height: 92px;
  padding: 0 clamp(56px, 5.5vw, 92px);
}

.manager-site-header .brand-mark {
  height: 90px;
  width: 90px;
}

.manager-site-header .manager-top-nav {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.manager-site-header .manager-sidebar-nav {
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.manager-site-header .manager-sidebar-nav a,
.manager-site-header .manager-nav-logout {
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 0 14px;
}

.manager-site-header .manager-sidebar-nav a {
  position: relative;
}

.manager-site-header .manager-sidebar-nav a::after {
  background: #f0b84b;
  border-radius: 999px;
  bottom: 4px;
  content: "";
  height: 3px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 34px;
}

.manager-site-header .manager-sidebar-nav a.is-active {
  background: transparent;
  box-shadow: none;
  color: var(--accent-strong);
}

.manager-site-header .manager-sidebar-nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.manager-site-header .manager-sidebar-nav a:hover {
  background: transparent;
  color: var(--accent);
}

.manager-site-header .manager-nav-logout {
  padding: 0 18px;
}

.manager-sidebar-nav {
  background: transparent;
  border: 0;
  border-radius: 8px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0;
}

.manager-sidebar-nav::-webkit-scrollbar {
  display: none;
}

.manager-menu-toggle {
  display: none;
}

.manager-sidebar-nav a,
.manager-nav-logout {
  background: transparent;
  border-radius: 8px;
  color: #2d463a;
  flex: 0 0 auto;
  font-weight: 850;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
}

.manager-sidebar-nav a.is-active {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(220, 216, 204, 0.7), 0 8px 18px rgba(23, 33, 28, 0.07);
  color: var(--accent-strong);
}

.manager-sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}

.manager-nav-logout {
  background: rgba(143, 47, 38, 0.08);
  border: 1px solid rgba(143, 47, 38, 0.18);
  color: #8f2f26;
  font-weight: 900;
}

.manager-nav-logout:hover {
  background: #f9e4df;
  color: #6f211a;
}

.dashboard-subtitle {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 760px;
}

.dashboard-toolbar {
  align-items: end;
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  padding: 14px;
}

.pond-checkbox-filter {
  display: grid;
  gap: 8px;
}

.filter-label,
.filter-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.filter-label,
.filter-heading span {
  color: var(--ink);
  font-weight: 900;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pond-checkbox-list {
  background: #ffffff;
  border: 1px solid #d8e3dc;
  border-radius: 8px;
  display: grid;
  gap: 0;
  overflow: hidden;
}

.pond-checkbox-row {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid #edf2ef;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  min-height: 42px;
  padding: 9px 12px;
}

.pond-checkbox-row:first-child {
  border-top: 0;
}

.pond-checkbox-row:hover {
  background: #fbfaf4;
}

.pond-checkbox-row input {
  min-height: auto;
  width: 16px;
}

.pond-checkbox-row span {
  color: var(--accent-strong);
  font-weight: 900;
}

.pond-checkbox-row input:focus-visible {
  outline: 3px solid rgba(217, 151, 58, 0.38);
  outline-offset: 2px;
}

.pond-checkbox-row.is-hidden {
  display: none;
}

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

.dashboard-stats article {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(23, 33, 28, 0.06);
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 14px;
}

.stat-icon {
  align-items: center;
  background: #173127;
  border-radius: 999px;
  color: #fffaf0;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.dashboard-stats strong {
  color: #102019;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1;
}

.manager-alert-panel {
  align-items: center;
  background: linear-gradient(105deg, #fff8ed, #fffdf7);
  border: 1px solid rgba(216, 151, 63, 0.35);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(90, 65, 22, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(18px, 3vw, 28px);
}

.manager-alert-panel strong {
  color: var(--ink);
  display: block;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  margin: 6px 0 8px;
}

.manager-alert-title {
  align-items: center;
  display: flex !important;
  gap: 12px;
}

.manager-alert-icon {
  align-items: center;
  background: linear-gradient(180deg, #ffb066, #f2790f);
  border: 2px solid #d9660f;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(150, 68, 8, 0.25);
  color: #fff8ed;
  display: inline-flex;
  flex: 0 0 auto;
  height: 36px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 36px;
}

.manager-alert-icon svg {
  fill: none;
  display: block;
  height: 19px;
  left: 50%;
  position: absolute;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 19px;
}

.manager-alert-panel span {
  color: #66746c;
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
}

.manager-alert-panel .nav-button {
  background: #fffdf7;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(20, 45, 36, 0.06);
  min-width: 230px;
}

.manager-alert-panel .nav-button:hover {
  background: var(--deep);
  color: #fff8e8;
}

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

.today-column {
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.today-column h3 {
  font-size: 1rem;
  margin: 0;
}

.today-column > div {
  display: grid;
  gap: 8px;
}

.today-booking-card,
.today-empty-state {
  background: #ffffff;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  display: grid;
  gap: 3px;
  padding: 10px;
}

.today-booking-card strong {
  color: var(--ink);
}

.today-booking-card span {
  color: var(--accent-strong);
  font-weight: 900;
}

.today-booking-card small,
.today-empty-state {
  color: var(--muted);
  font-weight: 800;
}

.requests-grid,
#upcomingBookingsList,
#currentBookingsList {
  display: grid;
  gap: 12px;
}

.priority-requests {
  border-color: #e8bc71;
  box-shadow: 0 12px 28px rgba(91, 65, 22, 0.09);
}

.dashboard-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 28, 0.08);
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 24px);
}

.panel-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.panel-heading h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  margin: 0;
}

.manager-ponds-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.manager-pond-card {
  background: #fbfaf4;
  border: 1px solid #dfd8c8;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.manager-pond-card-header {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.manager-pond-card-title {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 88px minmax(0, 1fr);
  min-width: 0;
}

.manager-pond-card-title img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  height: 66px;
  object-fit: cover;
  width: 88px;
}

.manager-pond-card h3 {
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.manager-pond-card-header span {
  color: var(--muted);
  font-weight: 800;
}

.pond-card-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pond-card-metrics span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  font-size: 0.82rem;
  gap: 2px;
  padding: 10px;
}

.pond-card-metrics strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.pond-card-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pond-card-actions a,
.pond-card-actions button {
  min-height: 40px;
  width: 100%;
}

.ghost-danger-button {
  background: transparent;
  border: 1px solid #e2b7ad;
  color: #8f2f26;
}

.ghost-danger-button:hover {
  background: #f9e4df;
  color: #6f211a;
}

.availability-calendar {
  gap: 18px;
  padding: clamp(16px, 2.4vw, 24px);
}

.pond-calendars-list {
  grid-template-columns: 1fr;
}

.pond-calendar-card {
  background: #fffdf7;
  gap: 16px;
  padding: 18px;
}

.pond-calendar-card h3 {
  font-size: 1.35rem;
}

.pond-calendar-card .calendar-grid {
  gap: 8px;
}

.calendar-day {
  cursor: pointer;
  min-height: 92px;
  text-align: left;
}

.calendar-day:hover {
  transform: translateY(-1px);
}

.calendar-day-panel {
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.calendar-day-panel h3 {
  margin: 0;
}

.day-detail-header {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.day-detail-header span {
  color: var(--muted);
  font-weight: 850;
}

.day-detail-status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.day-detail-status.is-free {
  background: #daf4e3;
  color: #164a2b;
}

.day-detail-status.is-busy {
  background: #ffe1d5;
  color: #8f2f26;
}

.day-detail-status.is-pending {
  background: #fff1d8;
  color: #8a5a14;
}

.week-calendar {
  display: grid;
  gap: 8px;
  overflow: visible;
}

.week-calendar-heading,
.week-calendar-row {
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(128px, 0.95fr) repeat(7, minmax(0, 1fr));
  min-width: 0;
}

.week-calendar-header,
.week-calendar-pond,
.week-calendar-day {
  border-radius: 8px;
  padding: 8px;
}

.week-calendar-header {
  background: #eef3f0;
  display: grid;
  gap: 2px;
  text-align: center;
}

.week-calendar-header span,
.week-calendar-pond span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
}

.week-calendar-pond {
  background: #fbfaf4;
  border: 1px solid var(--line);
  display: grid;
  gap: 3px;
}

.week-calendar-day {
  background: #daf4e3;
  border: 1px solid #7fca9a;
  color: #164a2b;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.78rem;
  min-height: 56px;
  text-align: left;
}

.week-calendar-mobile-date {
  display: none;
}

.week-calendar-day.is-busy {
  background: #ffe1d5;
  border-color: #e06b4f;
  color: #8f2f26;
}

.week-calendar-day.is-one-accepted {
  background: #fff1d8;
  border-color: #e6a33d;
  color: #6b4613;
}

.week-calendar-day.is-many-accepted {
  background: #ffe1d5;
  border-color: #e06b4f;
  color: #8f2f26;
}

.week-calendar-day.is-pending {
  background: #fff1d8;
  border-color: #e6a33d;
  color: #6b4613;
}

.week-calendar-day.is-today {
  box-shadow: none;
}

.day-detail-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.day-detail-grid span,
.day-detail-booking {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 3px;
  padding: 10px;
}

.day-detail-grid strong {
  color: var(--ink);
}

.day-detail-list {
  display: grid;
  gap: 10px;
}

.day-detail-booking {
  align-items: center;
  grid-template-columns: minmax(220px, 1.35fr) minmax(100px, 0.55fr) minmax(160px, 0.85fr) minmax(170px, auto);
}

.day-detail-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.day-detail-actions .status-pill {
  align-self: center;
}

.angler-count {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  font-weight: 900;
}

.angler-count i {
  font-style: normal;
  line-height: 1;
}

.reservation-tabs {
  background: #eef3f0;
  border-radius: 8px;
  display: inline-grid;
  gap: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px;
}

.reservation-tabs button {
  background: transparent;
  color: var(--accent-strong);
  min-height: 36px;
  padding: 0 12px;
}

.reservation-tabs button.is-active {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(23, 33, 28, 0.08);
  color: var(--ink);
}

.reservation-tab-panel {
  display: none;
}

.reservation-tab-panel.is-active {
  display: grid;
  gap: 12px;
}

.reservation-card {
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 7px;
  padding: 8px 10px;
}

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

.reservation-card-summary {
  gap: 6px;
  padding: 12px 14px;
}

.reservation-card-summary + .reservation-card-summary {
  margin-top: 8px;
}

.reservation-summary-line {
  align-items: center;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.reservation-summary-main {
  grid-template-columns: minmax(150px, 1.2fr) minmax(150px, 1fr) minmax(210px, auto);
}

.reservation-summary-main .status-pill {
  align-self: center;
  justify-self: center;
}

.reservation-summary-main strong,
.reservation-summary-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-summary-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  grid-template-columns: minmax(150px, 1.2fr) minmax(150px, 1fr) minmax(90px, auto) minmax(80px, auto);
}

.reservation-summary-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.reservation-summary-actions .secondary-link-button,
.reservation-summary-detail summary {
  align-items: center;
  background: #eef3f0;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  box-shadow: none;
  color: var(--accent-strong);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  min-width: 92px;
  padding: 0 14px;
  text-decoration: none;
}

.reservation-summary-detail {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  margin: 0;
  padding: 0;
  position: relative;
}

.reservation-summary-detail summary {
  cursor: pointer;
  list-style: none;
  margin: 0;
}

.reservation-summary-detail summary::-webkit-details-marker {
  display: none;
}

.reservation-summary-detail[open] ul {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(23, 33, 28, 0.12);
  display: grid;
  gap: 5px;
  min-width: min(360px, 80vw);
  padding: 12px 14px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 25;
}

.reservation-card-header {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.reservation-card-header strong {
  display: inline-block;
  max-width: 100%;
}

.reservation-card-header span {
  display: inline-block;
  font-size: 0.86rem;
  line-height: 1.25;
  margin-left: 4px;
}

.reservation-card-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reservation-card-grid span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  font-size: 0.86rem;
  min-height: 38px;
  padding: 5px 7px;
}

.reservation-card-grid b {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.reservation-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reservation-contact a {
  background: #eef3f0;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 7px 10px;
}

.booking-actions-row {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.request-actions-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-actions-row a,
.request-actions-row button {
  margin-top: 0;
  min-height: 40px;
  white-space: nowrap;
}

.request-actions-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.request-warning {
  background: #fff7e6;
  border: 1px solid #f0c879;
  border-radius: 8px;
  color: #6b4b16;
  font-weight: 850;
  padding: 10px 12px;
}

.request-actions-toolbar a,
.request-actions-toolbar button {
  align-items: center;
  display: inline-flex;
  flex: 0 1 auto;
  justify-content: center;
  margin-top: 0;
  min-height: 40px;
  padding: 10px 16px;
  white-space: nowrap;
}

.dashboard-empty-state {
  background: #fbfaf4;
  border: 1px dashed #d6cab5;
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.dashboard-empty-state strong {
  color: var(--ink);
}

.pond-wizard {
  gap: 22px;
}

.pond-wizard-progress {
  align-items: start;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pond-wizard-progress button {
  background: transparent;
  border: 0;
  color: var(--muted);
  display: grid;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 8px;
  justify-items: center;
  min-height: 62px;
  padding: 0;
  position: relative;
}

.pond-wizard-progress button::before {
  background: #dce7e1;
  content: "";
  height: 2px;
  left: -50%;
  position: absolute;
  right: 50%;
  top: 14px;
  z-index: 0;
}

.pond-wizard-progress button:first-child::before {
  display: none;
}

.pond-wizard-progress span {
  align-items: center;
  background: #f3f6f1;
  border: 1px solid #dce7e1;
  border-radius: 999px;
  color: var(--accent-strong);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  position: relative;
  width: 30px;
  z-index: 1;
}

.pond-wizard-progress .is-active span,
.pond-wizard-progress .is-complete span {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.pond-wizard-step {
  animation: fadeIn 0.18s ease;
  display: grid;
  gap: 18px;
}

.wizard-step-heading {
  display: grid;
  gap: 6px;
}

.wizard-step-heading h2 {
  margin: 0;
}

.wizard-step-heading p,
.location-mode-box small {
  color: var(--muted);
}

.wizard-location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
}

.wizard-fields-card,
.wizard-map-card,
.wizard-choice-grid fieldset {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 16px;
}

.location-mode-box {
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.pond-location-map,
.pond-detail-mini-map {
  background: #dfe8e3;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
}

.pond-detail-mini-map {
  min-height: 240px;
}

.wizard-choice-grid,
.wizard-check-grid,
.wizard-service-grid {
  display: grid;
  gap: 12px;
}

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

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

.wizard-choice-grid fieldset,
.wizard-check-grid label,
.wizard-service-grid label {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.wizard-choice-grid fieldset {
  align-content: start;
  grid-auto-rows: min-content;
}

.wizard-choice-grid legend {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 8px;
}

.wizard-choice-grid label,
.wizard-check-grid label,
.wizard-service-grid label {
  align-items: center;
  display: flex;
  gap: 8px;
  line-height: 1.35;
  min-height: 44px;
  overflow: visible;
  text-align: left;
}

.wizard-choice-grid label {
  min-height: 34px;
  padding: 4px 0;
}

.wizard-check-grid label,
.wizard-service-grid label {
  height: 100%;
}

.wizard-choice-grid input,
.wizard-check-grid input,
.wizard-service-grid input {
  appearance: auto;
  -webkit-appearance: auto;
  flex: 0 0 auto;
  height: 18px;
  margin: 0;
  min-height: 0;
  min-width: 0;
  padding: 0;
  width: 18px;
}

.wizard-choice-grid input[type="radio"] {
  border-radius: 50%;
}

.wizard-choice-grid input + span,
.wizard-check-grid input + span,
.wizard-service-grid input + span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.custom-pricing-list {
  display: grid;
  gap: 10px;
}

.custom-pricing-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(150px, 1fr) minmax(120px, 0.8fr) minmax(90px, 0.5fr) minmax(150px, 1fr) auto;
}

.named-posts-panel {
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 4px 0 14px;
  padding: 14px;
}

.named-posts-list {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.named-posts-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(140px, 1fr) minmax(200px, 1.4fr) auto;
}

.pond-summary-review {
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.pond-summary-review dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.pond-summary-review dl div {
  align-items: center;
  border-bottom: 1px solid #ebe5d8;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-bottom: 8px;
}

.pond-summary-review dt {
  color: var(--muted);
  font-weight: 850;
}

.pond-summary-review dd {
  margin: 0;
  text-align: right;
}

.pond-wizard-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .home-hero .search-panel,
  .search-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: calc(100vw - 96px);
    width: 100%;
  }

  .search-panel button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

input:invalid,
select:invalid,
textarea:invalid {
  border-color: #b96345;
}

@media (max-width: 920px) {
  .admin-booking-reason-form {
    grid-template-columns: 1fr;
  }

  .site-header {
    min-height: 96px;
    gap: 14px;
    position: sticky;
  }

  .home-header {
    min-height: 86px;
    padding: 10px clamp(16px, 4vw, 28px);
  }

  .home-header .brand-mark {
    height: 72px;
    width: 72px;
  }

  .home-header .nav-links {
    gap: 6px;
    font-size: 1rem;
  }

  .manager-site-header {
    min-height: 92px;
    padding: 10px clamp(16px, 4vw, 28px);
  }

  .manager-site-header .brand-mark {
    height: 76px;
    width: 76px;
  }

  .home-hero {
    min-height: auto;
    padding: 0 clamp(16px, 4vw, 28px) 26px;
  }

  .home-hero .hero-content {
    padding-top: clamp(54px, 12vw, 92px);
  }

  .home-hero .hero-slogan {
    font-size: clamp(2.45rem, 9vw, 4.3rem);
    max-width: 620px;
    white-space: normal;
  }

  .home-hero .hero-subtitle {
    font-size: 1.08rem;
    margin-bottom: 28px;
    max-width: 560px;
  }

  .home-hero .search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
    padding: 18px;
    width: 100%;
  }

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

  .wizard-location-grid,
  .wizard-choice-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand-mark {
    height: 84px;
    width: 84px;
  }

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

  .nav-links {
    background: rgba(255, 253, 247, 0.98);
    border: 1px solid rgba(220, 216, 204, 0.9);
    border-radius: 8px;
    box-shadow: 0 20px 38px rgba(23, 33, 28, 0.16);
    display: none;
    gap: 6px;
    left: clamp(14px, 4vw, 28px);
    padding: 10px;
    position: absolute;
    right: clamp(14px, 4vw, 28px);
    top: calc(100% + 8px);
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 12px 14px;
  }

  .nav-links a::after {
    bottom: 5px;
    left: 14px;
    transform: scaleX(0.45);
    transform-origin: left center;
    width: 34px;
  }

  .nav-links a.is-active {
    background: rgba(13, 107, 83, 0.08);
  }

  .nav-links a.is-active::after {
    transform: scaleX(1);
  }

  .nav-links a:hover {
    background: rgba(13, 107, 83, 0.1);
  }

  .site-footer-inner {
    align-items: flex-start;
    display: grid;
  }

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

  .cookie-consent-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions button {
    flex: 1 1 140px;
  }

  .mobile-manager-link {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .search-panel,
  .filter-bar,
  .booking-layout,
  .manager-band,
  .manager-intro,
  .manager-grid,
  .admin-grid,
  .admin-stats-grid,
  .admin-overview-grid,
  .admin-filters,
  .pond-detail-gallery,
  .pond-fact-grid,
  .pond-detail-list-columns,
  .pond-detail-prices,
  .dashboard-stats,
  .dashboard-columns,
  .manager-dashboard,
  .dashboard-toolbar,
  .manager-ponds-grid,
  .pond-card-actions,
  .pond-card-metrics,
  .day-detail-grid,
  .reservation-card-grid,
  .today-grid,
  .manager-alert-panel,
  .pond-calendars-list,
  .calendar-header {
    grid-template-columns: 1fr;
  }

  .manager-workspace {
    padding: 14px;
  }

  .manager-top-nav {
    grid-template-columns: 1fr;
    margin: 12px;
    position: static;
  }

  .site-header .manager-top-nav {
    margin: 0;
  }

  .manager-site-header .manager-top-nav {
    border-radius: 8px;
  }

  .admin-tabs {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-tabs button {
    width: 100%;
  }

  .admin-modal {
    align-items: start;
    overflow-y: auto;
  }

  .booking-refusal-modal {
    align-items: start;
    overflow-y: auto;
  }

  .admin-modal-card {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    width: min(100%, 620px);
  }

  .booking-refusal-card {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .manager-nav-logout {
    width: 100%;
    min-height: 42px;
  }

  .manager-alert-panel .nav-button {
    width: 100%;
  }

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

  .week-calendar-heading,
  .week-calendar-row {
    grid-template-columns: minmax(112px, 0.9fr) repeat(7, minmax(0, 1fr));
  }

  .week-calendar-header,
  .week-calendar-pond,
  .week-calendar-day {
    padding: 6px;
  }

  .week-calendar-day {
    font-size: 0.72rem;
    min-height: 62px;
  }

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

  .panel-heading,
  .filter-heading,
  .admin-hero,
  .admin-panel-heading,
  .day-detail-header,
  .dashboard-header,
  .manager-pond-card-header,
  .reservation-card-header {
    align-items: stretch;
    flex-direction: column;
  }

  .manager-pond-card-title {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .manager-pond-card-title img {
    height: 60px;
    width: 80px;
  }

  .reservation-tabs {
    width: 100%;
  }

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

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

@media (max-width: 640px) {
  .booking-refusal-card {
    border-radius: 9px;
    padding: 18px;
  }

  .booking-refusal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-refusal-actions button {
    width: 100%;
  }

  .admin-modal-actions,
  .manager-request-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-modal-actions button,
  .admin-modal-actions a,
  .manager-request-detail-actions button,
  .manager-request-detail-actions a {
    width: 100%;
  }

  .manager-request-detail-heading {
    align-items: center;
  }

  .reset-header {
    justify-content: center;
    min-height: 82px;
    padding: 10px 16px;
  }

  .reset-header .brand-mark {
    height: 70px;
    width: 70px;
  }

  .reset-header .brand {
    justify-self: center;
  }

  .reset-password-page {
    align-items: flex-start;
    min-height: auto;
    padding: 22px 14px 34px;
  }

  .reset-password-card {
    border-radius: 8px;
    padding: 22px 18px;
  }

  .site-header {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 76px minmax(112px, 1fr) minmax(44px, auto);
    justify-content: center;
    min-height: 104px;
    padding: 10px 14px;
  }

  .site-header > .nav-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    white-space: nowrap;
  }

  .home-header {
    min-height: 100px;
  }

  .home-header .brand-mark {
    height: 74px;
    width: 74px;
  }

  .manager-site-header .brand-mark {
    height: 74px;
    width: 74px;
  }

  .manager-site-header .manager-top-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .home-hero {
    padding: 0 14px 22px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 18, 16, 0.58) 0%, rgba(7, 18, 16, 0.16) 38%, rgba(7, 18, 16, 0.5) 100%);
  }

  .home-hero .hero-content {
    padding-top: 42px;
  }

  .home-hero .hero-slogan {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .home-hero .hero-subtitle {
    font-size: 1rem;
    margin: 14px 0 22px;
  }

  .home-hero .search-panel {
    border-radius: 8px;
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 18px 20px;
    overflow: hidden;
  }

  .search-reset-button {
    justify-self: stretch;
    width: 100%;
  }

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

  .wizard-check-grid,
  .wizard-service-grid,
  .custom-pricing-row,
  .named-posts-row {
    grid-template-columns: 1fr;
  }

  .pond-wizard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pond-wizard-actions a,
  .pond-wizard-actions button {
    width: 100%;
  }

  .home-hero .search-panel input,
  .home-hero .search-panel select,
  .home-hero .search-panel button[type="submit"] {
    min-height: 56px;
  }

  .home-hero .search-panel .search-field {
    display: grid;
    gap: 8px;
    padding-left: 0 !important;
    position: relative;
  }

  .home-hero .search-panel .search-label {
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
  }

  .home-hero .search-icon {
    align-items: center;
    background: transparent;
    height: 24px;
    left: 22px;
    top: auto;
    bottom: 16px;
    transform: none;
    width: 24px;
  }

  .home-hero .search-panel .search-field input,
  .home-hero .search-panel .search-field select {
    font-size: 1rem;
    line-height: 1.2;
    min-width: 0;
    padding-left: 56px;
    padding-right: 46px;
    text-align: center;
    text-align-last: center;
    width: 100%;
  }

  .home-hero .search-panel .search-field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: block;
    height: 56px;
    min-height: 56px;
    max-width: 100%;
    position: relative;
    padding-left: 56px;
    padding-right: 18px;
    z-index: 1;
  }

  .home-hero .search-panel .search-field input[type="date"]::-webkit-datetime-edit {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .home-hero .search-panel .search-field input[type="date"]::-webkit-calendar-picker-indicator {
    display: block;
    inset: 0;
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
  }

  .date-search-field .date-placeholder {
    align-items: center;
    bottom: 0;
    display: flex;
    height: 56px;
    justify-content: center;
    left: 56px;
    line-height: 1.1;
    top: auto;
    transform: none;
    right: 18px;
    text-align: center;
    z-index: 2;
  }

  .date-search-field.has-date .date-placeholder {
    display: flex;
  }

  .date-search-field.has-date input[type="date"] {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }

  .date-search-field.has-date input[type="date"]::-webkit-datetime-edit {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }

  .date-search-field.has-date input[type="date"]::-webkit-date-and-time-value {
    text-align: center;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  #anglerFilter {
    font-size: 0.96rem;
  }

  .home-hero .search-panel button[type="submit"] {
    margin-top: 4px;
  }

  .brand-mark {
    height: 74px;
    width: 74px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header.reset-header {
    display: flex;
    justify-content: center;
    min-height: 82px;
  }

  .site-header.reset-header .brand {
    justify-self: center;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin-left: 0;
    padding: 4px;
    width: 144px;
  }

  .language-switcher button {
    flex: 1 1 0;
    font-size: 0.9rem;
    min-height: 40px;
    padding: 0 10px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }

  .nav-links {
    font-size: 1rem;
    left: 14px;
    right: 14px;
    text-align: center;
  }

  .legal-document {
    padding: 20px;
  }

  .site-footer {
    padding: 20px 14px;
  }

  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .cookie-consent-card {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 14px;
  }

  .beta-banner-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
  }

  .beta-banner-badge {
    grid-column: 1;
  }

  .beta-banner-message,
  .beta-banner-thanks {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-content {
    transform: translateY(-48px);
  }

  .hero-slogan {
    font-size: clamp(0.95rem, 4.6vw, 1.15rem);
    margin-bottom: 18px;
  }

  .hero::after {
    background: transparent;
  }

  .search-panel {
    align-items: stretch;
  }

  .booking-page-layout {
    padding-inline: 10px;
  }

  .manager-section.manager-page {
    padding-top: 18px;
  }

  .manager-top-nav {
    gap: 8px;
    grid-template-columns: 1fr;
    margin: 0 10px 14px;
    padding: 8px;
    position: sticky;
    top: 104px;
    z-index: 1100;
  }

  .site-header .manager-top-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
    padding: 0;
    position: relative;
    top: auto;
    width: auto;
    z-index: 1300;
  }

  .manager-menu-toggle {
    align-items: center;
    background: var(--accent);
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-weight: 950;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    width: 100%;
  }

  .site-header .manager-menu-toggle {
    border-radius: 8px;
    height: 52px;
    justify-content: center;
    min-height: 52px;
    padding: 0;
    width: 52px;
  }

  .site-header .manager-menu-toggle span {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .manager-menu-toggle:hover {
    background: var(--accent-strong);
    color: #fff;
  }

  .manager-menu-toggle i {
    display: grid;
    gap: 4px;
    width: 22px;
  }

  .manager-menu-toggle b {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 3px;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .manager-top-nav.is-manager-menu-open .manager-menu-toggle b:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .manager-top-nav.is-manager-menu-open .manager-menu-toggle b:nth-child(2) {
    opacity: 0;
  }

  .manager-top-nav.is-manager-menu-open .manager-menu-toggle b:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .manager-sidebar-nav {
    display: none;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .manager-top-nav.is-manager-menu-open .manager-sidebar-nav {
    display: grid;
  }

  .site-header .manager-top-nav.is-manager-menu-open .manager-sidebar-nav {
    background: rgba(246, 244, 238, 0.97);
    border: 1px solid rgba(220, 216, 204, 0.86);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(23, 33, 28, 0.18);
    display: grid;
    min-width: min(320px, calc(100vw - 28px));
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
  }

  .manager-sidebar-nav a,
  .manager-nav-logout {
    align-items: center;
    display: inline-flex;
    font-size: 0.88rem;
    line-height: 1.1;
    min-height: 44px;
    padding: 0 8px;
    white-space: normal;
  }

  .manager-nav-logout {
    display: none;
    width: 100%;
  }

  .manager-top-nav.is-manager-menu-open .manager-nav-logout {
    display: inline-flex;
  }

  .site-header .manager-sidebar-nav .manager-nav-logout {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .manager-workspace {
    padding: 10px;
  }

  .booking-form {
    padding: 10px;
  }

  .pond-grid,
  .stats-band,
  .dashboard-stats,
  .admin-stats-grid,
  .booking-verification,
  .booking-pond-choice,
  .booking-price-summary,
  .day-detail-booking,
  .photo-preview-grid,
  .reservation-tabs,
  .booking-actions-row,
  .today-grid,
  .manager-alert-panel,
  .manager-request-filter-grid,
  .reservation-summary-meta,
  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-summary-meta {
    gap: 4px;
  }

  .reservation-summary-main {
    grid-template-columns: 1fr;
  }

  .request-actions-row {
    display: flex;
    grid-template-columns: none;
  }

  .request-actions-toolbar {
    gap: 8px;
  }

  .request-actions-toolbar a,
  .request-actions-toolbar button {
    flex: 1 1 128px;
    justify-content: center;
  }

  .reservation-summary-actions {
    flex-wrap: wrap;
  }

  .reservation-summary-detail[open] ul {
    position: static;
    min-width: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .calendar-header {
    align-items: stretch;
    display: grid;
    gap: 12px;
  }

  .calendar-controls {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    justify-content: stretch;
    width: 100%;
  }

  .calendar-controls .secondary-button,
  .calendar-controls button {
    min-width: 0;
    padding-inline: 8px;
    width: 100%;
  }

  .calendar-controls strong {
    align-self: center;
    min-width: 0;
    padding-inline: 4px;
  }

  .calendar-day {
    min-height: 68px;
    padding: 7px;
  }

  .calendar-day-status {
    display: none;
  }

  .availability-calendar .calendar-day-status {
    display: block;
    font-size: 0.68rem;
  }

  .availability-calendar .calendar-day {
    min-height: 82px;
  }

  .booking-calendar .calendar-grid,
  .booking-calendar-grid {
    gap: 2px;
  }

  .booking-calendar-grid .calendar-day {
    border-radius: 6px;
    min-height: 60px;
    padding: 6px 2px;
  }

  .booking-calendar .calendar-weekday {
    font-size: 0.62rem;
    padding: 3px 0;
  }

  .calendar-day-number {
    font-size: 0.9rem;
  }

  .week-calendar {
    gap: 14px;
  }

  .week-calendar-heading {
    display: none;
  }

  .week-calendar-row {
    background: #fbfaf4;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .week-calendar-pond {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(220, 216, 204, 0.82);
    padding: 0 0 10px;
  }

  .week-calendar-pond strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .week-calendar-pond span {
    font-size: 0.78rem;
  }

  .week-calendar-day {
    align-items: center;
    border-width: 1px 1px 1px 6px;
    display: flex;
    font-size: 0.92rem;
    justify-content: space-between;
    min-height: 64px;
    padding: 12px;
    text-align: left;
  }

  .week-calendar-mobile-date {
    color: var(--ink);
    display: inline-flex;
    font-weight: 950;
  }

  .week-calendar-day.is-today {
    outline: 2px solid rgba(13, 107, 83, 0.32);
    outline-offset: 2px;
  }

  .pond-actions {
    grid-template-columns: 1fr;
  }

  .pond-calendar-card-header {
    display: grid;
  }

  .pond-calendar-card-header span {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .request-actions-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .request-actions-toolbar a,
  .request-actions-toolbar button {
    width: 100%;
  }

  .booking-page-layout {
    padding-inline: 6px;
  }

  .booking-form {
    padding: 6px;
  }

  .booking-calendar .calendar-grid,
  .booking-calendar-grid {
    gap: 1px;
  }
}

@media (max-width: 1024px) {
  .home-hero .hero-content {
    padding-bottom: 34px;
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .home-hero .search-panel {
    margin-bottom: 0;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .pond-detail-hero,
  .pond-detail-two-columns {
    grid-template-columns: 1fr;
  }

  .pond-detail-hero-image {
    aspect-ratio: 16 / 10;
  }

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

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

  .interactive-map-shell {
    grid-template-columns: 1fr;
  }

  .map-filter-toggle {
    display: inline-flex;
    justify-self: start;
    min-height: 44px;
    position: relative;
    z-index: 2;
  }

  .map-filter-panel {
    display: none;
  }

  .map-filter-panel.is-open {
    display: grid;
  }

  .interactive-pond-map,
  .map-canvas-wrap {
    min-height: 620px;
  }
}

@media (max-width: 768px) {
  .home-hero .hero-content {
    padding-bottom: 22px;
  }

  .home-hero .hero-slogan {
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #etangs.section-shell {
    padding-top: 42px;
  }

  .home-section-heading {
    align-items: flex-start;
    display: grid;
  }

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

  #etangs .pond-card-body {
    gap: 18px;
    padding: 22px;
  }

  #etangs .pond-card-body h3 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  #etangs .pond-card-info-grid {
    gap: 18px 16px;
  }

  #etangs .pond-card-info {
    gap: 10px;
    grid-template-columns: 46px minmax(0, 1fr);
  }

  #etangs .pond-card-icon {
    height: 46px;
    width: 46px;
  }

  #etangs .pond-card-icon svg {
    height: 25px;
    width: 25px;
  }

  #etangs .pond-card-info em {
    font-size: 0.82rem;
  }

  .home-feature-card::after {
    inset: 42% 0 0;
  }

  .home-feature-card > div {
    max-width: none;
  }

  .pond-detail-page {
    gap: 20px;
  }

  .pond-detail-hero {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .pond-detail-hero-image {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    height: auto;
    max-height: 320px;
  }

  .pond-detail-hero-content {
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid rgba(220, 216, 204, 0.86);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
    gap: 14px;
    padding: 18px;
  }

  .pond-detail-hero h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.02;
  }

  .pond-detail-description {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .pond-detail-mini-meta,
  .pond-detail-hero-stats,
  .pond-detail-bottom-actions {
    grid-template-columns: 1fr;
  }

  .pond-detail-feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
  }

  .pond-detail-feature-band article {
    border-right: 0;
    min-height: 96px;
  }

  .pond-detail-photo-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pond-detail-panel {
    padding: 18px;
  }

  .pond-detail-service-list li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .pond-detail-service-list strong {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .pond-detail-hero {
    gap: 12px;
  }

  .pond-detail-hero-image {
    max-height: 260px;
  }

  .pond-detail-hero-content {
    padding: 14px;
  }

  .pond-detail-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .pond-detail-info-card {
    border-radius: 10px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 12px;
  }

  .pond-detail-mini-meta span {
    align-items: flex-start;
  }

  #etangs .pond-grid {
    grid-template-columns: 1fr;
  }

  #etangs .card-actions {
    gap: 12px;
  }

  .home-feature-grid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .map-page {
    padding: 14px;
  }

  .map-page-hero {
    align-items: flex-start;
    gap: 12px;
  }

  .map-title-icon,
  .map-title-icon svg {
    height: 38px;
    width: 38px;
  }

  .map-page-hero h1 {
    font-size: 2rem;
  }

  .map-page-hero p {
    font-size: 0.96rem;
  }

  .interactive-map-shell {
    gap: 12px;
  }

  .map-filter-panel {
    border-radius: 8px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .interactive-pond-map,
  .map-canvas-wrap {
    height: calc(100vh - 230px);
    min-height: 520px;
  }

  .map-help-card {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 12px;
  }

  .map-fishery-popup {
    min-width: min(310px, 78vw);
  }

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