/* ================================
   VÄRVID (Figma stiilijuhendist)
   ================================ */
:root {
  --pitch-black: #141204;
  --dark-khaki:  #262A10;
  --khaki-bg:    #54442B;
  --accent-gold: #C8A96E;
  --light-cream: #F5EDD8;
  --text-light: #E8DCC8;
  --contact-green: #253317;
}

/* ================================
   PÕHI
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--dark-khaki);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; }

.hero.contact-hero {
  background: var(--contact-green) !important;
  border-radius: 16px;
  padding: 32px;
  margin: 40px 48px 0;
  color: var(--text-light);
}

.hero.contact-hero .hero-image {
  background: var(--contact-green) !important;
  border: 2px solid var(--contact-green);
}

.hero.contact-hero .hero-image img {
  background: var(--contact-green);
}

.hero.contact-hero .hero-text h1,
.hero.contact-hero .hero-text p {
  color: var(--text-light);
}

.hero.contact-hero .hero-text p {
  color: rgba(232, 220, 200, 0.85);
}

.hero.contact-hero .hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  text-transform: none;
}

/* ================================
   NAVIGATSIOON
   ================================ */
nav {
  background: var(--pitch-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-icons span {
  width: 10px;
  height: 10px;
  background: var(--text-light);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-dots {
  display: none;
}

.nav-icons span:hover {
  background: var(--accent-gold);
}

/* ================================
   HERO SEKTSIOON
   ================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin: 40px 48px 0;
  gap: 40px;
  align-items: center;
}

.hero-image {
  background: var(--khaki-bg);
  border-radius: 12px;
  height: 320px;
  overflow: hidden;
}

.hero.contact-hero .hero-image {
  background: var(--contact-green);
  border: 2px solid var(--contact-green);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  padding: 16px 0;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--light-cream);
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--accent-gold);
}

.hero-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(232, 220, 200, 0.7);
  margin-bottom: 8px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--pitch-black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.25);
}

.hero-badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.55);
}

/* ================================
   SEKTSIOONI PEALKIRI
   ================================ */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 70px 48px 24px;
}

/* ================================
   TOOTEKAARDID
   ================================ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 48px;
}

.product-card {
  background: var(--pitch-black);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.product-card:hover .product-arrow {
  opacity: 1;
  transform: translateX(0);
}

.product-thumb-wrap {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--khaki-bg);
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.product-card:hover .product-thumb {
  transform: scale(1.05);
}

.product-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--light-cream);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(232, 220, 200, 0.55);
}

.product-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.product-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.product-link:hover {
  color: var(--accent-gold);
}

.product-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--accent-gold);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s;
}

/* ================================
   INFO SEKTSIOON
   ================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 80px 48px;
  align-items: center;
}

.feature-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-cream);
  margin-bottom: 20px;
  line-height: 1.15;
}

.feature-text p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(232, 220, 200, 0.65);
  margin-bottom: 10px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.82rem;
  color: rgba(232, 220, 200, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: '—';
  color: var(--accent-gold);
  flex-shrink: 0;
}

.feature-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.feature-image-wrap {
  border-radius: 12px;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.feature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark-khaki), transparent);
}

.feature-caption {
  text-align: right;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(200, 169, 110, 0.5);
  text-transform: uppercase;
}

/* ================================
   LATIKAS SEKTSIOON
   ================================ */
.latikas-section {
  margin: 0 48px 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--khaki-bg);
}

.latikas-section img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--pitch-black);
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}

footer .logo {
  font-size: 1.1rem;
}

footer p {
  font-size: 0.72rem;
  color: rgba(232, 220, 200, 0.35);
  letter-spacing: 0.06em;
}

/* ================================
   KALASTUSINFO LEHT
   ================================ */
.page-header {
  margin: 40px 48px 20px;
  text-align: left;
}

.kalastusinfo-page .page-header {
  text-align: center;
  margin: 40px auto 20px;
  max-width: 1100px;
  padding: 0 24px;
}

.kalastusinfo-page .page-header p {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
}

.page-header span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(232, 220, 200, 0.7);
}

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: none;
  color: var(--light-cream);
  margin-top: 10px;
}

.page-header p {
  margin-top: 10px;
  font-size: 1rem;
  color: rgba(232, 220, 200, 0.75);
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.6;
}

.kalastusinfo-page .section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(232, 220, 200, 0.7);
  margin: 40px 48px 18px;
}

.kalastusinfo-page .info-grid {
  display: block;
  gap: 0;
  margin: 0 48px 40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.info-card:hover {
  transform: none;
  box-shadow: none;
}

.info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--light-cream);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(232, 220, 200, 0.6);
}

.season-table-wrap {
  margin: 0 48px 80px;
  background: var(--pitch-black);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.season-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.season-table-wrap th,
.season-table-wrap td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.85rem;
}

.season-table-wrap th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.82rem;
  color: var(--accent-gold);
  background: rgba(200, 169, 110, 0.06);
}

.season-table-wrap td {
  color: rgba(232, 220, 200, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.season-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.season-status.open {
  background: rgba(120, 180, 110, 0.15);
  color: #9fcf95;
}

.season-status.closed {
  background: rgba(200, 100, 90, 0.15);
  color: #e0a39a;
}

.tips-section {
  margin: 0 48px 80px;
}

.tips-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: none;
  color: var(--light-cream);
  margin-bottom: 20px;
}

.tips-list {
  display: block;
  gap: 0;
}

.tip-item {
  display: block;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.tip-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 10px;
}

.tip-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  color: var(--light-cream);
  margin-bottom: 6px;
}

.tip-item p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(232, 220, 200, 0.6);
}

/* ================================
   ANIMATSIOONID
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.7s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero { animation-delay: 0.1s; }
.product-card:nth-child(1) { animation: reveal 0.6s 0.2s ease forwards; opacity: 0; }
.product-card:nth-child(2) { animation: reveal 0.6s 0.35s ease forwards; opacity: 0; }
.product-card:nth-child(3) { animation: reveal 0.6s 0.5s ease forwards; opacity: 0; }

/* ================================
   RESPONSIIVSUS
   ================================ */
@media (max-width: 900px) {
  .hero,
  .feature,
  .products,
  .info-grid,
  .tips-list {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }
}