:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f9f9f9;
  --surface-soft: #f5f5f5;
  --text: #3d3d3d;
  --muted: #737373;
  --accent: #7c5d47;
  --line: rgba(61, 61, 61, 0.1);
  --radius: 24px;
  --container: 1200px;
  --transition: 0.35s ease;
  --shadow-soft: 0 20px 55px rgba(61, 61, 61, 0.08);
  --shadow-card: 0 10px 28px rgba(61, 61, 61, 0.06);
  --gradient-shell: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 249, 249, 0.92) 100%);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
}

.container {
  width: min(94%, var(--container));
  margin-inline: auto;
  padding-block: 32px;
}

main {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 45%, #fefefe 100%);
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* Ensure anchored sections account for sticky header */
:target {
  scroll-margin-top: 84px;
}

/* Force visibility for targeted sections */
:target.reveal,
:target.tips-activities-section {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
  visibility: visible !important;
  display: block !important;
}

.section-shell {
  position: relative;
  margin: clamp(32px, 6vw, 88px) auto;
  border-radius: clamp(20px, 4vw, 36px);
  background: var(--gradient-shell);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Intro hero background for tips page */
.intro-hero {
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('assets/images2/WhatsApp%20Image%202025-11-29%20at%2017.23.35.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  margin-top: 0;
}
.intro-hero .section-heading h1,
.intro-hero .section-heading p,
.intro-hero .eyebrow {
  color: #fff;
}
.intro-hero .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.05s ease-out;
}

/* Enhanced parallax for hero section */
.hero.parallax-wrapper {
  min-height: 100vh;
}

.hero .parallax-bg {
  top: -30%;
  height: 160%;
}

/* Smooth reveal animations with subtle scale */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add subtle scale to images on hover */
.feature-grid img,
.team-grid img,
.story-cards img {
  transition: transform 0.6s ease-out;
}

.feature-grid article:hover img,
.team-grid article:hover img,
.story-cards article:hover img {
  transform: scale(1.05);
}

.section-shell::after {
  content: "";
  position: absolute;
  inset: 24px auto auto 10%;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 162, 109, 0.65), transparent);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.section-shell > .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(48px, 6vw, 96px);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  :root { --container: 980px; }
  .hero__title { font-size: clamp(2.4rem, 5.5vw, 4rem); }
  .circular-gallery-container { height: 500px; }
}
@media (max-width: 768px) {
  :root { --container: 720px; }
  body { font-size: 15px; }
  .header-inner { gap: 12px; }
  .primary-nav ul { gap: 8px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle { font-size: clamp(0.95rem, 2.8vw, 1.1rem); }
  .circular-gallery-container { height: 380px; }
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .expandable-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 20px; }
}
@media (max-width: 480px) {
  :root { --container: 640px; }
  body { font-size: 14px; }
  .btn, .btn-outline { padding: 12px 20px; }
  .hero__badges li { padding: 8px 14px; }
  .circular-gallery-container { height: 320px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f0d0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #f7f3ec;
}

.site-header a {
  color: #f7f3ec;
}

.header-inner,
.footer-inner,
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img,
.logo svg {
  height: 80px;
  display: block;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #f7f3ec;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
}
.lang-btn[aria-pressed="true"] {
  background: #f7f3ec;
  color: #0f0d0c;
}

.primary-nav a {
  text-decoration: none;
  padding: 18px 0;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 12px;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%);
  content: "";
  transition: var(--transition);
}

.nav-toggle span::before {
  transform: translate(-50%, -8px);
}

.nav-toggle span::after {
  transform: translate(-50%, 6px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  padding-block: 96px 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.hero-gallery figure {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--line);
}

.hero-gallery figcaption {
  font-size: 0.85rem;
  margin-top: 8px;
  color: var(--muted);
}

/* Fullscreen hero variant */
.hero.hero--full {
  position: relative;
  padding: 0;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(15, 13, 12, 0.35) 60%,
    rgba(15, 13, 12, 0.55) 100%
  );
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) 0;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin: 0 auto;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 18px;
}

.hero__badges {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badges li {
  color: rgba(17, 17, 17, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  backdrop-filter: blur(6px);
}

.hero-cta,
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta {
  margin-top: 28px;
}

/* Hero CTA button variants */
.btn.btn--hero {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
  color: #1a1816;
}

.btn.btn--hero:hover,
.btn.btn--hero:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
}

.btn.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.btn--ghost:hover,
.btn.btn--ghost:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.section-heading::before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, transparent, rgba(199, 162, 109, 0.9), transparent);
}

.newsletter .section-heading,
.team .section-heading {
  text-align: center;
  margin-inline: auto;
}

.newsletter .section-heading::before,
.team .section-heading::before {
  margin-inline: auto;
}

.featured {
  border: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* Single-row horizontal grid for tips */
.feature-grid--row {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 18px;
}

.feature-grid article,
.story-cards article,
.team-grid article,
.values-grid li,
.map-info,
.bean-showcase,
.newsletter-form-wrapper,
.about-grid article {
  background: var(--surface-alt);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  overflow: hidden;
}

.feature-grid article:hover,
.story-cards article:hover,
.team-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(17, 17, 17, 0.12);
}
}

.feature-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(4px);
}

.map-info {
  background: var(--surface);
}

.team-grid article,
.values-grid li {
  background: var(--surface);
}

.card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.feature-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--accent);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.bean-showcase {
  margin-top: 48px;
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.bean-showcase ul {
  list-style: square;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.story-cards {
  display: grid;
  gap: 24px;
}

.story-cards article {
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(199, 162, 109, 0.2);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-cards article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(199, 162, 109, 0.3) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.story-cards article:hover::before {
  transform: scaleY(1);
}

.story-cards article:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.12);
  border-color: var(--accent);
}

.story-cards article h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.story-cards article p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-cards {
    gap: 20px;
  }
  
  .story-cards article {
    padding: 24px;
  }
  
  .story-cards article h3 {
    font-size: 2rem;
  }
}

.map-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 5vw, 48px);
}

.map-media img {
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: calc(var(--radius) - 4px);
  box-shadow: var(--shadow-card);
}

.map-info {
  padding: clamp(32px, 4vw, 48px);
}

.map-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-block: 18px;
}

.map-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-badges span {
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

.newsletter {
  background: linear-gradient(135deg, rgba(247, 245, 239, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(199, 162, 109, 0.2);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(199, 162, 109, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(199, 162, 109, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.newsletter-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsletter-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--text);
}

.newsletter-text p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--muted);
}

.newsletter-form-container {
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(24px, 4vw, 32px);
  border-radius: 16px;
  border: 1px solid rgba(199, 162, 109, 0.2);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.08);
}

.newsletter-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.1);
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 18px 24px;
  border-radius: 50px;
  border: 2px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199, 162, 109, 0.15);
}

.btn--newsletter {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn--newsletter:hover,
.btn--newsletter:focus {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.help-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.form-msg {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-msg:empty {
  display: none;
}

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .newsletter-text {
    order: 2;
  }

  .newsletter-image {
    order: 1;
  }

  .newsletter-form-container {
    padding: 24px;
  }

  .btn--newsletter {
    width: 100%;
  }
}

.help-text,
.form-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.contact-inner {
  align-items: flex-start;
  gap: clamp(32px, 6vw, 80px);
}

.contact-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--text);
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0f0d0c 0%, #1a1714 100%);
  color: #f7f3ec;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(199, 162, 109, 0.3) 20%, 
    rgba(199, 162, 109, 0.6) 50%, 
    rgba(199, 162, 109, 0.3) 80%, 
    transparent 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 10%;
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(199, 162, 109, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  flex-wrap: wrap;
  padding-top: 48px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 24px;
}

.footer-col h4 {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(199, 162, 109, 0.95);
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(199, 162, 109, 0.8), transparent);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(247, 243, 236, 0.8);
}

.footer-col ul li a {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-col ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer a {
  color: rgba(247, 243, 236, 0.9);
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: rgba(199, 162, 109, 1);
}

.site-footer .text-link {
  display: inline-block;
  color: rgba(199, 162, 109, 0.9);
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(199, 162, 109, 0.3);
  border-radius: 4px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.site-footer .text-link:hover,
.site-footer .text-link:focus-visible {
  color: #ffffff;
  border-color: rgba(199, 162, 109, 0.8);
  background: rgba(199, 162, 109, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 162, 109, 0.15);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 243, 236, 0.9) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: rgba(199, 162, 109, 0.8);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link:hover,
.social-link:focus-visible {
  color: #ffffff !important;
  background: rgba(199, 162, 109, 0.12);
  border-color: rgba(199, 162, 109, 0.3);
  transform: translateX(4px);
}

.social-link:hover svg,
.social-link:focus-visible svg {
  stroke: rgba(199, 162, 109, 1);
  transform: scale(1.15) rotate(5deg);
}

.social-link span {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-meta {
  position: relative;
  text-align: center;
  padding: 24px 0;
  color: rgba(247, 243, 236, 0.5);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.2);
}

.site-meta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(199, 162, 109, 0.2) 50%, 
    transparent 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 14px 32px;
  border: none;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: none;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.btn:hover,
.btn:focus-visible {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.about-hero-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.about-grid {
  border: none;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 4vw, 28px);
  margin-top: 32px;
}

.team-grid article {
  padding: 24px;
}

.values {
  border-top: 1px solid var(--line);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.values-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.values-grid li {
  padding: 20px 28px;
}

.values-grid span {
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, 80vw);
    background: #000;
    color: #fff;
    transform: translateX(-120%);
    padding: 100px 32px;
    transition: transform var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-shell {
    margin: clamp(24px, 8vw, 60px) auto;
  }

  .section-shell > .container {
    padding-block: clamp(40px, 10vw, 64px);
  }

  .map-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .newsletter-row {
    flex-direction: column;
  }

  .hero {
    padding-block: 72px 24px;
  }

  .container {
    padding-block: 24px;
  }

  .section-shell::after {
    inset: 18px auto auto 14%;
    width: 120px;
  }

  .section-shell > .container {
    padding-block: 36px;
  }
}

.expandable-section {
  background: var(--surface-alt);
}

.expandable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.expandable-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.expandable-header {
  margin-bottom: 16px;
}

.expandable-header h3 {
  margin: 0;
  color: var(--text);
}

.expandable-content {
  max-height: 500px;
  overflow-y: auto;
}

/* Menu list: product and price on one line */
.expandable-content ul { list-style: none; padding-left: 0; }
.expandable-content ul li.menu-item { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.expandable-content ul li.menu-item .label { flex: 1 1 auto; }
.expandable-content ul li.menu-item .price { flex: 0 0 auto; font-weight: 700; color: var(--text); }

@media (max-width: 480px) {
  .expandable-content ul li.menu-item { gap: 8px; }
}

.expandable-content h4 {
  margin: 20px 0 8px 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
}

.expandable-content ul {
  margin: 8px 0;
  padding-left: 20px;
}

.expandable-content li {
  margin-bottom: 4px;
  line-height: 1.4;
}

/* ===================================
   TIPS & ACTIVITIES SECTION
   =================================== */

.tips-activities-section {
  background: var(--gradient-shell);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Filter buttons */
.tips-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 48px;
  justify-content: center;
}

.filter-btn {
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  background: var(--surface-soft);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Tips grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

/* Tip card */
.tip-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(61, 61, 61, 0.12);
}

/* Card image */
.tip-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.tip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0;
}

.tip-card:hover .tip-card-image img {
  transform: scale(1.08);
}

/* Card header */
.tip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 20px 24px 0 24px;
}

.tip-badge {
  padding: 6px 16px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tip-badge-rozhledny {
  background: #e3f2fd;
  color: #1976d2;
}

.tip-badge-priroda {
  background: #e8f5e9;
  color: #388e3c;
}

.tip-badge-vodopady {
  background: #e0f7fa;
  color: #00838f;
}

.tip-badge-kultura {
  background: #fce4ec;
  color: #c2185b;
}

.tip-distance {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
}

/* Card body */
.tip-card-body {
  flex: 1;
  padding: 0 24px;
}

.tip-card-body h3 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 700;
}

.tip-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 16px 0;
}

.tip-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

/* Highlights list */
.tip-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-highlights li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
}

.tip-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Card footer */
.tip-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 16px 24px 24px 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.tip-time {
  font-weight: 500;
}

.tip-difficulty {
  padding: 4px 12px;
  background: var(--surface-soft);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Info box */
.tips-info-box {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 48px;
  border: 1px solid var(--line);
}

.tips-info-box h3 {
  margin: 0 0 24px 0;
  font-size: 1.6rem;
  color: var(--text);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-item {
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.info-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-filter {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-activities-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .tips-info-box {
    padding: 24px;
  }
  
  .tip-card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .tip-card-header {
    padding: 16px 20px 0 20px;
  }
  
  .tip-card-body {
    padding: 0 20px;
  }
  
  .tip-card-body h3 {
    font-size: 1.2rem;
  }
  
  .tip-card-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 16px 20px 20px 20px;
  }
  
  .tip-card-image {
    height: 180px;
  }
}

