/*
  Stylesheet for the Patto Café landing page

  Notes:
  - Keeps the original palette and overall layout.
  - Adds accessibility improvements (focus states, skip link, semantic buttons/links).
  - Adds reusable section/feature components for the expanded landing.
*/

:root {
  /* Patto brand palette (exact codes requested) */
  --spring-green: #0a562c;  /* Spring Green */
  --flat-white:   #FAFAFA;  /* Flat White */
  --dirty-white:  #F1EAD4;  /* Dirty White */

  /* Mapped theme tokens */
  --primary-color: var(--spring-green); /* header, buttons, accents */
  --secondary-color: var(--dirty-white); /* page background */
  --light-color: var(--flat-white); /* surfaces/cards/text-on-dark */
  --text-color: #042813; /* deep forest green for text */
  --accent-color: #c8a86e; /* golden accent used sparingly */
  --tagline-color: var(--flat-white); /* overlay text */
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  --radius: 10px;
}

/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

.video-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.video-bleed video {
  width: 100%;
  height: auto;
  display: block;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
color: var(--text-color);
  line-height: 1.55;

  text-align: center;

  overflow-x: hidden;
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* Navigation */
header {
  background-color: var(--primary-color);
  color: var(--light-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.icon-btn {
  border: none;
  background: transparent;
  color: var(--light-color);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-right {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

.icon-link {
  color: var(--light-color);
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
}

/* Full-bleed hero video (GIF/MP4) */
.hero.hero-stacked {
  display: block;
  padding: 4rem 0 0;
}

.hero.hero-stacked .hero-text {
  max-width: 980px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  text-align: center;
}

.hero.hero-stacked .hero-buttons,
.hero.hero-stacked .hero-badges {
  justify-content: center;
}

/* If you ever swap the MP4 for a GIF image, this keeps the same full-bleed behavior */
.video-bleed img {
  width: 100%;
  height: auto;
  display: block;
}


.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.12s ease, background-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn.primary:hover {
  background-color: #064322;
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn.secondary:hover {
  background: rgba(14, 89, 47, 0.08);
  transform: translateY(-1px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 89, 47, 0.08);
  color: var(--primary-color);
  font-size: 0.85rem;
}

.hero-video {
  flex: 1 1 320px;
  max-width: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--light-color);
}

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

/* Sections */
.section {
  padding: 4rem 2rem;
}

.section-narrow .content {
  max-width: 980px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.content p {
  max-width: 860px;
  margin: 0 auto 1.75rem auto;
  color: var(--primary-color);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature {
  background: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature i {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.feature h3 {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature p {
  color: #1a4a33;
  font-size: 0.95rem;
  margin: 0;
}

/* Product grid */
.section-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background-color: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.35);
  border-radius: var(--radius);
  width: 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  padding: 0.85rem;
  background: var(--secondary-color);
  display: block;
}

.card-content {
  padding: 1rem;
  width: 100%;
}

.card-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.card-content .price {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.55rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  border-radius: 10px;
}

.card-content .weight {
  font-size: 0.9rem;
  color: var(--primary-color);
}

/* Tagline background section */
.espresso-section {
  position: relative;
  background-image: url('../images/coffee_machine.png');
  background-size: cover;
  background-position: center;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.espresso-overlay {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  max-width: 920px;
  margin: 0 1rem;
}

.espresso-overlay h2 {
  font-family: 'Playfair Display', serif;
  color: var(--tagline-color);
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

/* CTA row */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Icons CTA section */
.icons-cta {
  text-align: center;
  padding: 2.5rem 2rem;
}

.icons-cta .icons-image {
  max-width: 100%;
  height: auto;
}

/* Contact form */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(4, 40, 19, 0.25);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
}

.form-note {
  font-size: 0.9rem;
  color: #1a4a33;
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 1.25rem;
  }

  .nav {
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 520px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .card {
    width: 100%;
    max-width: 360px;
  }

  .espresso-section {
    height: 340px;
  }

  .espresso-overlay h2 {
    font-size: 1.75rem;
  }
}

/* Product helpers */
.section-lead {
  text-align: center;
  max-width: 860px;
  margin: -1rem auto 2rem auto;
  color: var(--primary-color);
}

.muted {
  opacity: 0.85;
}

.card-content .meta {
  font-size: 0.92rem;
  color: #1a4a33;
  margin-bottom: 0.65rem;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(14, 89, 47, 0.35);
  color: var(--primary-color);
  font-weight: 600;
  background: rgba(14, 89, 47, 0.05);
}

.mini-link:hover {
  background: rgba(14, 89, 47, 0.10);
}

/* Variety section */
.variety-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.variety {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.20);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.variety-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 0.65rem;
  display: block;
}

.variety-body h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.variety-body p {
  margin: 0 0 0.85rem 0;
  color: #1a4a33;
}

.specs {
  margin: 0;
  padding-left: 1.1rem;
  color: #1a4a33;
}

.specs li {
  margin: 0.25rem 0;
}

@media (max-width: 900px) {
  .variety {
    grid-template-columns: 1fr;
  }

  .variety-media img {
    height: 260px;
  }
}

/* Product pages (individual coffee URLs) */
.breadcrumb {
  justify-content: center;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
}

.product-hero-text h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.35rem;
}

.product-hero-text .meta {
  margin-bottom: 0.5rem;
}

.product-hero-text .lead {
  margin-top: 0.35rem;
  color: #1a4a33;
}

.product-hero-media {
  background: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.20);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.product-hero-media img {
  width: 100%;
  height: min(420px, 52vh);
  object-fit: contain;
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.side-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 89, 47, 0.20);
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  background: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  color: #1a4a33;
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

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

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

/* Premium layout enhancements for coffee pages */
.product-page .section.section-narrow{
  background: var(--flat-white);
  border: 1px solid rgba(10, 86, 44, 0.14);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  margin: 1.25rem auto;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.product-page .content{
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.flavor-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.flavor-tag{
  background: rgba(10, 86, 44, 0.10);
  color: var(--spring-green);
  border: 1px solid rgba(10, 86, 44, 0.18);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.facts-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.fact{
  background: #ffffff;
  border: 1px solid rgba(10, 86, 44, 0.14);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.fact .label{
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.fact .value{
  font-weight: 800;
  color: var(--spring-green);
}

@media (max-width: 900px){
  .facts-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .facts-grid{
    grid-template-columns: 1fr;
  }
}

/* More info page (mas-info.html) */
.about-hero {
  position: relative;
  min-height: 520px;
  padding: 5.25rem 2rem;
  background-image:
    linear-gradient(rgba(10, 86, 44, 0.78), rgba(10, 86, 44, 0.45)),
    url('../images/about/cultivadoras_cereza_manos.jpg');
  background-size: cover;
  background-position: center;
  color: var(--flat-white);
  display: flex;
  align-items: center;
}

.about-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--flat-white);
}

.about-hero p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--flat-white);
}

.about-hero .cta-row {
  margin-top: 1.5rem;
}

.about-strip {
  max-width: 1100px;
  margin: -3.25rem auto 0;
  padding: 0 2rem;
}

.about-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-strip-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 89, 47, 0.20);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: block;
}

@media (max-width: 900px) {
  .about-strip-grid {
    grid-template-columns: 1fr;
  }

  .about-strip {
    margin-top: -2rem;
  }
}

/* Carousel (rotating gallery) */
.carousel {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(14, 89, 47, 0.20);
  background: var(--light-color);
  box-shadow: var(--shadow);
  position: relative;
}

.carousel-viewport {
  position: relative;
  height: min(560px, 62vh);
  background: var(--secondary-color);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 450ms ease;
  object-fit: cover;
}

.carousel-slide.fit-contain {
  object-fit: contain;
  padding: 1.25rem;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(10, 86, 44, 0.75);
  color: var(--flat-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.carousel-btn:hover {
  background: rgba(10, 86, 44, 0.90);
}

.carousel-btn.prev {
  left: 0.85rem;
}

.carousel-btn.next {
  right: 0.85rem;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 250, 0.85);
  background: rgba(250, 250, 250, 0.28);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: rgba(250, 250, 250, 0.95);
}

@media (max-width: 520px) {
  .carousel-viewport {
    height: 52vh;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

/* Contact blocks */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 1.25rem auto 0;
}

.contact-card {
  background: var(--light-color);
  border: 1px solid rgba(14, 89, 47, 0.22);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* Floating social panel (Instagram / WhatsApp) */
.social-float{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-float a{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
}

.social-float a:hover{
  transform: translateY(-1px);
}

.social-float img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* Make links with class hero-buttons look like the primary button */
a.hero-buttons{
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid transparent;
  transition: transform 0.12s ease, background-color 0.2s ease, color 0.2s ease;
}

a.hero-buttons:hover{
  background-color: #064322;
  transform: translateY(-1px);
}

/* =============================
   Más info (about) page
   ============================= */

.about-hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.25rem 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(245,245,245,0.30),
    rgba(245,245,245,0.82)
  );
}

.about-hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 950px;
}

.about-hero-overlay p {
  max-width: 920px;
  margin: 0.4rem auto;
  color: #06331a;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 1.65rem;
  margin-bottom: 0.25rem;
}

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

.photo-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: #06331a;
}

.coffee-map-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.coffee-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-legend {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: #06331a;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary-color);
}

@media (max-width: 980px) {
  .about-hero {
    margin: 1rem 1rem 0;
  }
  .about-hero-img {
    height: 360px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .about-hero-img {
    height: 320px;
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .photo-card img {
    height: 210px;
  }
}
