/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2e4a;
  --navy-light: #243860;
  --sand: #f5f0e8;
  --sand-dark: #e8e0d0;
  --copper: #c8824a;
  --copper-dark: #a86830;
  --ink: #1c1c1c;
  --muted: #5a6478;
  --white: #ffffff;
  --water: #2d5a7b;
  --water-light: #4a7fa0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--sand-dark);
  background: var(--sand);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--copper);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--copper-dark);
}

/* Hero */
.hero {
  padding: 5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.7;
}

/* Hero Art */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art {
  width: 100%;
  max-width: 420px;
  height: 340px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,46,74,0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero stats */
.hero-rule {
  width: 100%;
  height: 1px;
  background: var(--sand-dark);
  margin: 3rem 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* Products */
.products {
  padding: 5rem 3rem;
  background: var(--white);
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.products-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.products-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid var(--sand-dark);
  border-radius: 6px;
  overflow: hidden;
  background: var(--sand);
}

.product-art {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apparel-art { background: linear-gradient(135deg, #1a2e4a 0%, #2d5a7b 100%); }
.drinkware-art { background: linear-gradient(135deg, #c8824a 0%, #e8a070 100%); }
.home-art { background: linear-gradient(135deg, #2d5a7b 0%, #4a7fa0 100%); }

.apparel-icon, .mug-icon, .home-icon {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.7);
}

.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  padding: 1.25rem 1.5rem 0.5rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

/* Philosophy */
.philosophy {
  padding: 5rem 3rem;
  background: var(--navy);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.philosophy-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.philosophy-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.philosophy-art {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fish-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fish-art {
  width: 80px;
  height: 40px;
  flex-shrink: 0;
}

.fish-art svg {
  width: 100%;
  height: 100%;
  color: var(--copper);
}

.fish-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 5rem 3rem;
  background: var(--sand);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.divider-text {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

/* Footer */
.footer {
  padding: 2rem 3rem;
  background: var(--navy);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }

  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-art { max-width: 100%; height: 200px; }
  .hero-headline { font-size: 3rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { display: none; }

  .products { padding: 3rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .philosophy { padding: 3rem 1.5rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }

  .closing { padding: 3rem 1.5rem; }

  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
