/* ============================================
   ADVENTURE GOLF KLÁŠTEREC NAD OHŘÍ
   Style Sheet — v1.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green:       #134a37;
  --green-light: #1e6b4f;
  --green-lighter: #57a132;
  --green-pale:  #e8f5ee;
  --magenta:     #570132;
  --yellow:      #ffd000;
  --red:         #d0343c;
  --white:       #ffffff;
  --off-white:   #f7f9f7;
  --text-dark:   #0d2e1f;
  --text-mid:    #3a5e4a;
  --text-light:  #7a9e8a;
  --shadow-sm:   0 2px 8px rgba(19,74,55,.15);
  --shadow-md:   0 6px 24px rgba(19,74,55,.18);
  --shadow-lg:   0 16px 48px rgba(19,74,55,.22);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --font:        'Poppins', sans-serif;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { max-width: 65ch; }

/* ---- Utility ---- */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}
.section { padding-block: 80px; }
.section--alt { background: var(--green-pale); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--text-dark);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: #e6bb00;
  border-color: #e6bb00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(19,74,55,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 96px;
  width: auto;
  display: block;
}
/* Keep legacy sub-label styles in case referenced elsewhere */
.nav-logo .logo-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  line-height: 1;
  letter-spacing: .03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-menu a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-menu a.active {
  color: var(--yellow);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switcher button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .05em;
}
.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--yellow);
  color: var(--text-dark);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 112px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--green) 0%, #0b3224 60%, var(--magenta) 150%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,208,0,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(87,1,50,.3) 0%, transparent 40%);
}
/* Decorative golf balls */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco .ball {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.9), rgba(255,255,255,.1));
  border: 1px solid rgba(255,255,255,.2);
}
.hero-deco .b1 { width:120px;height:120px; top:12%;right:8%;  opacity:.07; animation: float1 8s ease-in-out infinite; }
.hero-deco .b2 { width:60px; height:60px;  top:65%;left:5%;  opacity:.1;  animation: float2 6s ease-in-out infinite; }
.hero-deco .b3 { width:200px;height:200px; bottom:-40px;right:25%;opacity:.05;animation: float1 10s ease-in-out infinite 2s; }
.hero-deco .b4 { width:40px; height:40px;  top:35%;right:22%;opacity:.12; animation: float2 7s ease-in-out infinite 1s; }

@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(5deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-12px) rotate(-8deg)} }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-block: 4rem 5rem;
}
.hero-content .tag { animation: fadeUp .6s ease both; }
.hero-content h1 {
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
  animation: fadeUp .6s ease .1s both;
}
.hero-content h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s ease .2s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .3s both;
}
.hero-badges {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .4s both;
}
.hero-badge {
  text-align: center;
  color: rgba(255,255,255,.85);
}
.hero-badge .num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; opacity: .5; }

@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 800;
  font-size: .85rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}
.about-img-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}
.about-text .tag { margin-bottom: .5rem; }
.about-text h2 { margin-bottom: 1rem; color: var(--green); }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about-feature .icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   REFRESHMENTS SECTION
   ============================================ */
.refreshments { background: var(--green); color: var(--white); }
.refreshments .section-head { color: var(--white); }
.refreshments .section-head p { color: rgba(255,255,255,.7); }
.refreshments h2 { color: var(--white); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 { margin-bottom: .6rem; }
.section-head p { max-width: 55ch; margin-inline: auto; color: var(--text-mid); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: .05;
  transition: var(--transition);
}
.menu-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.menu-card:hover::before { opacity: .1; }
.menu-card .emoji { font-size: 2.8rem; margin-bottom: .75rem; display: block; }
.menu-card h3 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--white); }
.menu-card p { font-size: .88rem; color: rgba(255,255,255,.65); max-width: unset; }
.menu-card .price-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: .25em .8em;
  border-radius: 999px;
  margin-top: .75rem;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--magenta), #8b0250);
  color: var(--white);
  padding-block: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '⛳';
  position: absolute;
  font-size: 15rem;
  right: -2rem;
  top: 50%; transform: translateY(-50%);
  opacity: .06;
  line-height: 1;
}
.cta-strip h2 { color: var(--white); margin-bottom: .6rem; }
.cta-strip p  { color: rgba(255,255,255,.75); margin-inline: auto; margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.65);
  padding-block: 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.footer-brand .logo .icon { background: var(--yellow); color: var(--text-dark); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 1rem; }
.footer-logo-img { height: 128px; width: auto; display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 30ch; }
.footer-col h4 { color: var(--white); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact li { display: flex; gap: .6rem; font-size: .88rem; align-items: flex-start; }
.footer-contact li .icon { color: var(--yellow); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(150deg, var(--green) 0%, #0b3224 100%);
  color: var(--white);
  padding-block: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(87,1,50,.35) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.7); margin-inline: auto; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ============================================
   NEWS / AKTUALITY
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card .card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--green) 0%, #1e6b4f 100%);
  display: grid;
  place-items: center;
  font-size: 3.5rem;
}
.news-card .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card .card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.news-card .card-date {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
}
.news-card .card-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2em .7em;
  border-radius: 999px;
}
.cat-news    { background: rgba(19,74,55,.1);  color: var(--green); }
.cat-event   { background: rgba(87,1,50,.1);   color: var(--magenta); }
.cat-offer   { background: rgba(255,208,0,.2); color: #7a5a00; }
.cat-alert   { background: rgba(208,52,60,.1); color: var(--red); }

.news-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.news-card p  { font-size: .9rem; color: var(--text-mid); flex: 1; max-width: unset; }
.news-card .card-footer {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.read-more {
  font-weight: 700;
  font-size: .85rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
}
.read-more:hover { color: var(--magenta); gap: .6rem; }

.news-loading {
  text-align: center;
  padding: 4rem;
  color: var(--text-light);
  font-size: 1.1rem;
}
.news-loading .spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--green-pale);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.news-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--text-light);
}
.news-empty .emoji { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* Filters */
.news-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
}
.filter-btn {
  background: var(--white);
  border: 2px solid #e0ece5;
  color: var(--text-mid);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ============================================
   OPENING HOURS
   ============================================ */
.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hours-card .card-header {
  background: var(--green);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hours-card .card-header .season-icon {
  font-size: 2rem;
  background: rgba(255,255,255,.15);
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}
.hours-card .card-header h3 { font-size: 1.2rem; margin-bottom: .1rem; }
.hours-card .card-header p  { font-size: .82rem; color: rgba(255,255,255,.65); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid #f0f4f1; }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 1rem 1.5rem; font-size: .92rem; }
.hours-table td:first-child { font-weight: 600; color: var(--text-dark); }
.hours-table td:last-child  { color: var(--text-mid); text-align: right; font-weight: 700; }
.hours-table tr.weekend td { background: rgba(19,74,55,.04); }
.hours-table tr.closed td:last-child { color: var(--red); }
.hours-table tr.highlight td { background: rgba(255,208,0,.08); }
.hours-table tr.highlight td:first-child::before { content: ''; }

.time-badge {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .3em .8em;
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
}
.info-box.warn { border-left-color: var(--yellow); }
.info-box.alert { border-left-color: var(--red); }
.info-box .box-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.info-box p { font-size: .9rem; color: var(--text-mid); max-width: unset; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.pricing-card .featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35em 1em;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.pricing-card .card-name {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.pricing-card .card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--text-dark);
}
.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .3rem;
}
.pricing-card .price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.pricing-card .price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}
.pricing-card .price-note {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pricing-card .divider {
  height: 1px;
  background: #edf2ef;
  margin-bottom: 1.5rem;
}
.pricing-card .features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.pricing-card .feature {
  display: flex;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-mid);
  align-items: flex-start;
}
.pricing-card .feature .check {
  width: 20px; height: 20px;
  background: var(--green-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .cta { margin-top: 1.8rem; width: 100%; justify-content: center; }
.pricing-card.featured .price .amount { color: var(--magenta); }
.pricing-card.featured .price .currency { color: var(--magenta); }

.pricing-note {
  margin-top: 3rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pricing-note .note-icon { font-size: 1.5rem; flex-shrink: 0; }
.pricing-note p { font-size: .9rem; color: var(--text-mid); max-width: unset; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-item .ci-icon {
  width: 48px; height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: 1rem; font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.contact-item a:hover { color: var(--green); }

.map-placeholder {
  background: linear-gradient(135deg, var(--green-pale), #d4ece0);
  border-radius: var(--radius-lg);
  height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed #b0d4bf;
  position: relative;
  overflow: hidden;
}
.map-placeholder .map-icon { font-size: 3.5rem; opacity: .5; display: block; }
.map-placeholder p { color: var(--text-mid); font-size: .9rem; }
.map-placeholder .map-embed-hint {
  position: absolute;
  bottom: 1rem;
  font-size: .75rem;
  color: var(--text-light);
  font-style: italic;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; color: var(--green); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid #dde8e2;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(19,74,55,.08);
}
.form-group textarea { min-height: 120px; }
.form-submit { margin-top: 1.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .about-img-badge { right: 1rem; bottom: -1rem; }
  .hours-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .form-grid    { grid-template-columns: 1fr; }
  .form-group.full { grid-column: unset; }
}

@media (max-width: 768px) {
  .section { padding-block: 56px; }
  .nav-menu { display: none; flex-direction: column; position: fixed; top: 112px; left: 0; right: 0; background: var(--green); padding: 1rem; gap: 1.5rem; box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .hero-badges { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .nav-right .btn { display: none; }
  .hero-cta .btn--outline { display: none; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================
   STATUS BADGE (open/closed indicator)
   ============================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  padding: .35em .9em;
  border-radius: 999px;
}
.status-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}
.status-open  { background: rgba(23, 74, 19, 0.5);  color: var(--green-lighter); }
.status-closed{ background: rgba(208, 52, 60, 0.3); color: var(--red); }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
