@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  --ink: #0f1d24;
  --ink-muted: #4a5967;
  --ink-soft: #6b7a87;
  --sea: #1a7a6d;
  --sea-dark: #145a50;
  --sea-deep: #0e3f38;
  --foam: #e8f5f2;
  --sand: #faf7f2;
  --sand-deep: #ede5d8;
  --sun: #e8973f;
  --sun-deep: #c47a2e;
  --shell: #ffffff;
  --surface: #ffffff;
  --surface-dim: #f8f9fa;
  --border: #e2e6ea;
  --border-strong: #cdd3d9;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.12);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --content-gutter: clamp(20px, 4vw, 48px);
  --reading-width: 64ch;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 1.8vw + 1rem, 2rem);
  --text-3xl: clamp(1.875rem, 2.5vw + 1rem, 2.5rem);
  --text-4xl: clamp(2.25rem, 3.5vw + 1rem, 3.25rem);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --section-pad: clamp(64px, 8vw, 96px);
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sea);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--sea-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

button { font-family: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { margin: 0; }
p + p { margin-top: 1em; }

/* ─── Layout ─── */
.container {
  width: min(var(--max-width), 100% - var(--content-gutter) * 2);
  margin: 0 auto;
}

/* ─── Section Kicker ─── */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--foam);
  color: var(--sea-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sea);
}

.hero-kicker {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-kicker::before {
  background: var(--sun);
}

/* ─── Header ─── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  flex-wrap: nowrap;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover { color: var(--ink); }

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}

.logo-text span {
  color: var(--ink-soft);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  padding: 4px;
  border-radius: var(--radius-sm);
  background: var(--surface-dim);
  border: 1px solid var(--border);
}

.nav-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  background: transparent;
  border: none;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--ink-muted);
  font-size: var(--text-sm);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-links a.active {
  color: #ffffff;
  background: var(--sea-dark);
  box-shadow: var(--shadow-xs);
}

.nav-links a:hover:not(.active),
.nav-link-button:hover {
  background: rgba(0,0,0,0.05);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--sea-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-phone:hover {
  background: var(--surface-dim);
  color: var(--sea-deep);
}

.nav-phone:visited { color: var(--sea-dark); }

/* ─── Buttons ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: var(--sea-dark);
  color: #ffffff;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  line-height: 1.4;
}

.button:visited { color: #ffffff; }

.button:hover {
  background: var(--sea-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.button.secondary:visited { color: var(--ink); }

.button.secondary:hover {
  background: var(--surface-dim);
  border-color: var(--border-strong);
}

header .button.secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}

header .button.secondary:visited { color: var(--ink); }

.button:disabled,
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  background: var(--surface);
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.icon-button:hover {
  background: var(--surface-dim);
  color: var(--sea-dark);
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 999px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ─── Dropdown ─── */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  padding: 6px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  width: max-content;
  border: 1px solid var(--border);
  z-index: 300;
  font-size: var(--text-sm);
}

.dropdown-content a {
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
}

.dropdown-content a:hover {
  background: var(--surface-dim);
  color: var(--ink);
}

.dropdown-content br { display: none; }

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* ─── Hero ─── */
.hero {
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(10,30,36,0.88) 0%, rgba(10,30,36,0.55) 60%, rgba(10,30,36,0.4) 100%),
    url('/uploads/gallery/sh-fishing-hero.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 72px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease both;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.hero-card h1 {
  font-size: var(--text-4xl);
  color: #ffffff;
  max-width: 16ch;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content > p:not(.section-kicker):not(.hero-kicker) {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
}

.hero-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2vw, 28px);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-summary-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-summary-note {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.hero-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.5;
}

.hero-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 4px;
}

.hero-actions .button {
  padding: 12px 28px;
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
}

.hero-actions .button:first-child {
  background: var(--sun);
  color: #fff;
  border: none;
}

.hero-actions .button:first-child:hover {
  background: var(--sun-deep);
}

.hero-actions .button.secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

.hero-actions .button.secondary:visited { color: #ffffff; }

.hero-actions .button.secondary:hover {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

/* ─── Sections ─── */
.section {
  padding: var(--section-pad) 0;
  animation: fadeUp 0.5s ease both;
}

.section :is(h1, h2) {
  font-size: var(--text-3xl);
  color: var(--ink);
  max-width: 20ch;
}

.section p.lead {
  font-size: var(--text-lg);
  max-width: var(--reading-width);
  line-height: 1.65;
  color: var(--ink-muted);
}

.section .container:not(.guide) > * + * {
  margin-top: var(--space-4);
}

.section .container:not(.guide) > :is(h1, h2) + .lead {
  margin-top: var(--space-2);
}

.section .container:not(.guide) > .lead + * {
  margin-top: var(--space-10);
}

.section .container > .card {
  max-width: min(100%, 900px);
}

/* Section divider */
.section + .section {
  border-top: 1px solid var(--border);
}

/* ─── Cards ─── */
.card {
  background: var(--surface);
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.5s ease both;
}

.card h3 {
  margin-bottom: 8px;
  font-size: var(--text-xl);
  color: var(--ink);
}

.card h2 {
  margin-bottom: 8px;
  font-size: var(--text-2xl);
  color: var(--ink);
}

.card p {
  max-width: var(--reading-width);
  line-height: 1.65;
  color: var(--ink-muted);
}

.card > * + * {
  margin-top: var(--space-3);
}

.card > :is(h2, h3) + * {
  margin-top: var(--space-2);
}

.card > form {
  margin-top: var(--space-5);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* ─── Species Section ─── */
.species-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.species-card {
  overflow: hidden;
  padding: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.species-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.species-card h3 {
  padding: 20px 24px 0;
  margin-bottom: 0;
}

.species-card p {
  padding: 0 24px 24px;
}

.species-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.species-card > .species-photo {
  order: -1;
}

.species-source {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--ink-soft);
}

.species-source a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Trip Cards ─── */
.trip-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.trip-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.trip-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.card-note {
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 600;
}

.field-hint {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

/* ─── Guide Section ─── */
.guide {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-10);
  align-items: center;
}

.guide-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
  max-width: 280px;
}

.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide h2 {
  margin-bottom: var(--space-3);
}

.guide p {
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 55ch;
}

/* ─── Testimonials / Carousel ─── */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  text-align: center;
  align-items: center;
}

.testimonial p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--ink);
  max-width: 48ch;
  font-style: italic;
}

.testimonial strong {
  font-family: 'Instrument Sans', sans-serif;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.carousel-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-4);
}

.carousel-controls .button {
  padding: 8px 18px;
  font-size: var(--text-sm);
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 500;
}

.gallery-item form {
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--surface-dim);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  z-index: 500;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

/* ─── Contact / Services Section ─── */
.service-offers {
  margin-top: var(--space-2);
}

/* ─── Place List ─── */
.place-list {
  display: grid;
  gap: var(--space-3);
}

.place-item {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-dim);
}

.place-item strong {
  display: block;
  margin-bottom: var(--space-1);
}

.place-item .button {
  margin-top: var(--space-3);
}

/* ─── Lists ─── */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.6;
}

li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sea);
}

/* ─── Forms ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}

.form-row {
  display: grid;
  gap: var(--space-3);
}

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

.form-row .form-group {
  margin-bottom: 0;
}

label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink);
}

input,
textarea,
select {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-size: var(--text-base);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type='checkbox'],
input[type='radio'] {
  width: auto;
  padding: 0;
  border-radius: 4px;
  box-shadow: none;
  accent-color: var(--sea);
}

label > input[type='checkbox'],
label > input[type='radio'] {
  margin-right: 8px;
}

input[type='file'] {
  padding: 10px;
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-soft);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(26,122,109,0.12);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer a {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: #ffffff;
}

.footer .icon-button {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.12);
}

.footer .icon-button:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

.footer small {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
}

/* ─── Calendar ─── */
.calendar {
  background: var(--surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: var(--space-3);
}

.calendar-day {
  background: var(--surface-dim);
  padding: 10px;
  border-radius: var(--radius-xs);
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.calendar-day:hover:not(.disabled):not(:disabled) {
  border-color: var(--sea);
  background: var(--foam);
}

.calendar-day.disabled,
.calendar-day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--surface-dim);
}

.calendar-day.selected {
  background: var(--sea-dark);
  color: #ffffff;
  border-color: var(--sea-dark);
}

.timeslot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
}

.timeslot {
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.timeslot:hover:not(.disabled):not(:disabled) {
  border-color: var(--sea);
  background: var(--foam);
}

.timeslot.selected {
  background: var(--sea-dark);
  color: #ffffff;
  border-color: var(--sea-dark);
}

.timeslot:disabled,
.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

/* ─── Booking Steps ─── */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sea-dark);
  color: #ffffff;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.step-item span:last-child {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-muted);
}

/* ─── Notice / Badge ─── */
.notice {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: #fef3cd;
  border: 1px solid #ffc107;
  color: #664d03;
  font-size: var(--text-sm);
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: var(--text-xs);
  background: var(--foam);
  color: var(--sea-dark);
  font-weight: 600;
}

/* ─── Admin ─── */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-6);
}

.admin-nav {
  background: var(--surface);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky;
  top: 80px;
}

.admin-nav h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.admin-nav a {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.admin-nav a:hover {
  background: var(--surface-dim);
  color: var(--ink);
}

.admin-nav a.active {
  color: #ffffff;
  background: var(--sea-dark);
}

.admin-tabs {
  display: flex;
  gap: 6px;
  margin: var(--space-4) 0;
  flex-wrap: wrap;
}

.admin-tabs .tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-dim);
  color: var(--ink-muted);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.admin-tabs .tab.active {
  background: var(--sea-dark);
  color: #ffffff;
  border-color: var(--sea-dark);
}

.settings-section {
  margin: var(--space-6) 0;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.list-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr auto;
  gap: var(--space-3);
  align-items: center;
  margin: var(--space-3) 0;
}

.list-row input { width: 100%; }

.list-row button { white-space: nowrap; }

.list-row.compact {
  grid-template-columns: 1fr auto;
}

/* ─── Member Auth ─── */
.member-auth {
  max-width: 680px;
}

.auth-actions {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── Calendar Sync Buttons ─── */
.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.calendar-actions .button {
  font-size: var(--text-sm);
  padding: 8px 16px;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .guide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guide-photo {
    margin: 0 auto;
    aspect-ratio: 1;
    max-width: 240px;
  }

  .guide p { max-width: 100%; }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    position: static;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-6);
  }

  .hero-summary {
    max-width: 400px;
  }
}

@media (max-width: 820px) {
  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text strong {
    font-size: 1rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--surface);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 4px;
    border: 1px solid var(--border);
    z-index: 100;
  }

  .nav-links a,
  .nav-link-button {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

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

  .hamburger {
    display: block;
  }

  .nav-phone-text {
    display: none;
  }

  .nav-phone {
    padding: 8px;
  }

  .hero-card {
    padding: var(--space-8);
  }
}

@media (max-width: 720px) {
  .list-row,
  .list-row.compact {
    grid-template-columns: 1fr;
  }

  .list-row button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 48px;
  }

  .hero {
    padding: 32px 0 40px;
  }

  .hero-card {
    padding: var(--space-6);
  }

  .hero-card h1 {
    max-width: 100%;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .species-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
