/* === BASE RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-ocean: #0c4a6e;
  --color-ocean-light: #0ea5e9;
  --color-sand: #f5f0e8;
  --color-sand-dark: #d4c5a9;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #5a5a5a;
  --color-accent: #e67e22;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Georgia', serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-sand);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HEADER === */
.site-header {
  background: var(--color-ocean);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}

/* === HERO === */
.hero {
  background: var(--color-ocean);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .lead {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === TOWN GRID === */
.town-grid {
  padding: 3rem 0;
}

.town-grid h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.town-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}

.town-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.town-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-ocean);
  color: var(--color-white);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.town-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-ocean);
}

.town-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex: 1;
  line-height: 1.5;
}

.town-card .cta {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
}

/* === ABOUT === */
.about {
  background: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

.about h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.about p {
  max-width: 680px;
  margin: 0.5rem auto;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* === TOWN PAGES === */
.town-hero {
  background: var(--color-ocean);
  color: var(--color-white);
  padding: 3rem 0;
}

.town-hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.town-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.town-hero .tagline {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  max-width: 500px;
}

.state-badge {
  background: var(--color-ocean-light);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.content-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-sand-dark);
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ocean);
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--color-text);
  margin-bottom: 1rem;
  max-width: 720px;
  line-height: 1.7;
}

.fish-species {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.species-tag {
  background: var(--color-ocean);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.charter-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.charter-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
}

.charter-card h3 {
  font-size: 1rem;
  color: var(--color-ocean);
  margin-bottom: 0.25rem;
}

.charter-card .charter-type {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.charter-card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.charter-card .price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.booking-note {
  background: rgba(14, 165, 233, 0.08);
  border-left: 4px solid var(--color-ocean-light);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-ocean);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1.5rem 0;
}

.back-link:hover {
  text-decoration: underline;
}

/* === FOOTER === */
footer {
  background: var(--color-ocean);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .town-hero .container {
    flex-direction: column;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  nav {
    gap: 0.25rem;
  }
  nav a {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
}