/* ================= DISCOVER PAGE SPECIFIC ================= */

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  font-weight:600;
  letter-spacing:.03em;
  margin:0 0 12px 0;
}

.section-intro{
  color:var(--muted);
  line-height:1.7;
  max-width:70ch;
  margin:0 0 30px 0;
}

/* HERO */
.hero{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#191919;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.42) 38%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.12) 100%),
    url('../images/bird-hero.jpg') center/cover no-repeat;
  transform:scale(1.02);
}

.hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--max-width);
  margin:0 auto;
  padding:80px 20px;
  width:100%;
}

.hero-copy{
  max-width:560px;
  color:#fff;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:rgba(255,255,255,.06);
}

.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:68px;
  font-weight:600;
  line-height:1.02;
  margin:0 0 18px 0;
  letter-spacing:.02em;
}

.hero-sub{
  margin:0 0 24px 0;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,255,255,.88);
  max-width:52ch;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* PLACE CARDS GRID */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.place-card{
  background:rgba(255,255,255,.38);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:.22s ease;
}

.place-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 28px rgba(0,0,0,.08);
}

.place-top{
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-bottom:16px;
}

.place-logo{
  width:94px;
  height:94px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  object-fit:contain;
  padding:10px;
  flex-shrink:0;
}

.place-heading h3{
  margin:0 0 6px 0;
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  line-height:1.05;
  font-weight:600;
}

.place-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.place-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:var(--cream2);
  border:1px solid var(--line);
  font-size:12px;
  font-weight:600;
  color:#54453a;
}

.place-text{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 18px 0;
}

.card-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.card-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:128px;
  padding:11px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  border:1px solid rgba(182,122,60,.32);
  background:#1f1b1a;
  color:#fff;
  transition:.2s ease;
}

.card-link:hover{
  transform:translateY(-2px);
  border-color:rgba(182,122,60,.88);
}

.card-link.light{
  background:transparent;
  color:var(--ink);
}

/* SCENIC GRID */
.scenic-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.scenic-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition:.22s ease;
}

.scenic-card:hover{
  transform:translateY(-6px);
}

.scenic-image{
  width:100%;
  height:190px;
  object-fit:cover;
  transition:.25s ease;
}

.scenic-card:hover .scenic-image{
  transform:scale(1.05);
}

.scenic-body{
  padding:18px;
}

.scenic-body h3{
  margin:0 0 8px 0;
  font-family:'Cormorant Garamond',serif;
  font-size:28px;
  line-height:1.08;
  font-weight:600;
}

.scenic-body p{
  margin:0 0 14px 0;
  color:var(--muted);
  line-height:1.65;
}

/* ORG CARDS GRID */
.org-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.org-card{
  background:rgba(255,255,255,.48);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
  transition:.22s ease;
}

.org-card:hover{
  transform:translateY(-6px);
}

.org-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.org-logo{
  width:68px;
  height:68px;
  border-radius:14px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--line);
  padding:8px;
  flex-shrink:0;
}

.org-head h3{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:30px;
  line-height:1.05;
  font-weight:600;
}

.org-card p{
  margin:0 0 16px 0;
  color:var(--muted);
  line-height:1.7;
}

.social-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-decoration:none;
  font-weight:600;
  transition:.2s ease;
}

.social-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(182,122,60,.72);
}

/* UPDATES SECTION */
.updates-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.update-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}

.update-box h3{
  margin:0 0 10px 0;
  font-family:'Cormorant Garamond',serif;
  font-size:32px;
  font-weight:600;
}

.update-box p{
  margin:0 0 16px 0;
  color:var(--muted);
  line-height:1.7;
}

.update-note{
  font-size:14px;
  color:var(--muted);
}

.social-embed-wrap{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  margin:0 0 16px 0;
  background:#f8f8f8;
}

.social-embed-wrap iframe{
  width:100%;
  max-width:100%;
  display:block;
}

.social-embed-wrap img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

/* REVEAL ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .55s ease, transform .55s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:980px){
  .cards-grid{
    grid-template-columns:1fr;
  }

  .scenic-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .org-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .updates-wrap{
    grid-template-columns:1fr;
  }
}

@media(max-width:820px){
  .hero-title{
    font-size:52px;
  }
}

@media(max-width:680px){
  .cards-grid{
    grid-template-columns:1fr;
  }

  .scenic-grid{
    grid-template-columns:1fr;
  }

  .org-grid{
    grid-template-columns:1fr;
  }

  .hero-title{
    font-size:40px;
  }

  .section-title{
    font-size:36px;
  }

  .hero-actions,
  .card-actions,
  .social-row{
    flex-direction:column;
    align-items:stretch;
  }

  .card-link,
  .social-btn,
  .btn{
    width:100%;
  }
}

/* ================= DECORATIVE ELEMENTS ================= */
.decoration {
  position: absolute;
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}

.decoration img {
  display: block;
  width: 100%;
  height: auto;
}

.decoration-discover-left {
  left: 10px;
  top: 30%;
  transform: translateY(-50%);
  width: 100px;
}

.decoration-discover-right {
  right: 10px;
  bottom: 25%;
  width: 130px;
  transform: scaleX(-1);
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .decoration-discover-left {
    left: 0;
    width: 90px;
  }

  .decoration-discover-right {
    right: 0;
    width: 110px;
  }
}

@media (max-width: 768px) {
  .decoration-discover-left,
  .decoration-discover-right {
    display: none;
  }
}
