
:root {
  --primary:     #0a2540;
  --primary-lt:  #132a4e;
  --green:       #15803d;
  --green-dark:  #14532d;
  --green-lt:    #16a34a;
  --accent:      #d97706;
  --red:         #b91c1c;
  --bg:          #ffffff;
  --surface:     #f8fafc;
  --surface2:    #f1f5f9;
  --border:      #e2e8f0;
  --border2:     #cbd5e1;
  --text:        #0f172a;
  --text2:       #374151;
  --text3:       #6b7280;
  --text4:       #94a3b8;
  --white:       #ffffff;
  --header-h:    68px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg:   0 4px 16px rgba(0,0,0,0.10), 0 16px 40px rgba(0,0,0,0.08);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =============================================
   BUTTONS — all share layout via group selector
   ============================================= */
.btn-primary,
.btn-outline,
.btn-dark,
.btn-green,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #ffffff; }
.btn-dark {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--primary-lt); transform: translateY(-1px); }
.btn-green {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* =============================================
   NAVIGATION
   ============================================= */
#vp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 2rem;
  gap: 1rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}
.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-brand span { color: var(--green); }

.nav-links {
  display: flex; gap: 0; align-items: center;
  margin-left: 1.5rem;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: rgba(21,128,61,0.06); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text2);
  background: none;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.3rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.nav-dropdown-btn:hover { color: var(--green); background: rgba(21,128,61,0.06); }
.nav-dropdown-btn svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.4rem;
  z-index: 1000;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--green); background: rgba(21,128,61,0.06); }

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

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: 1px solid var(--border2);
  border-radius: var(--radius); cursor: pointer;
}
.burger-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--primary);
  transition: all 0.25s ease;
  transform-origin: center;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-overlay {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  z-index: 850;
  background: #fff;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  flex-direction: column;
  padding: 1.5rem;
}
#mobile-overlay.open { display: flex; }

.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block; padding: 1rem 0;
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  text-decoration: none; transition: color 0.15s;
}
.mobile-nav-links a:hover { color: var(--green); }
.mobile-nav-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text3); margin: 1.2rem 0 0.5rem;
}

/* =============================================
   MAIN content offset
   ============================================= */
main { padding-top: var(--header-h); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  background: var(--primary);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22;
  filter: brightness(0.5) contrast(1.2);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(10,37,64,0.7) 60%, rgba(21,128,61,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 4rem 2rem;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(21,128,61,0.18);
  border: 1px solid rgba(21,128,61,0.35);
  color: #4ade80;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: #4ade80; }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-val {
  font-size: 1.8rem; font-weight: 900;
  color: #ffffff; line-height: 1;
}
.hero-stat-val span { color: #4ade80; }
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* =============================================
   INFO STRIP
   ============================================= */
.info-strip {
  background: var(--green);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.info-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: #ffffff; font-size: 0.9rem; font-weight: 600;
}
.info-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--surface); }
.container { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px; background: var(--green);
  display: inline-block;
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--primary); line-height: 1.1;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.08rem; color: var(--text2);
  max-width: 580px; line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.srv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.srv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border2);
}
.srv-card-img {
  height: 180px; overflow: hidden; position: relative;
}
.srv-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.srv-card:hover .srv-card-img img { transform: scale(1.06); }
.srv-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.srv-card-title {
  font-size: 1.1rem; font-weight: 800;
  color: var(--primary); margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.srv-card-desc {
  font-size: 0.9rem; color: var(--text3); line-height: 1.65;
  flex: 1; margin-bottom: 1rem;
}
.srv-card-link {
  font-size: 0.85rem; font-weight: 700;
  color: var(--green); display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.srv-card:hover .srv-card-link { gap: 0.55rem; }
.srv-card-link::after { content: '→'; }

/* =============================================
   FEATURE BOXES
   ============================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-box:hover { box-shadow: var(--shadow); border-color: var(--border2); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(21,128,61,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--green);
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; }
.feature-title {
  font-size: 1rem; font-weight: 800;
  color: var(--primary); margin-bottom: 0.5rem;
}
.feature-text { font-size: 0.9rem; color: var(--text3); line-height: 1.65; }

/* =============================================
   TWO-COLUMN SPLIT SECTION
   ============================================= */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split-section.reverse { }
.split-img { border-radius: var(--radius-lg); overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.split-content { }
.split-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.split-list-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text2); line-height: 1.6;
}
.split-list-item-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.1rem;
  background: rgba(21,128,61,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.split-list-item-icon svg { width: 13px; height: 13px; stroke: currentColor; }

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 260px;
  gap: 4px;
}
.gallery-strip-item { overflow: hidden; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-strip-item:hover img { transform: scale(1.05); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--primary);
  padding: 5rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(21,128,61,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: #ffffff; margin-bottom: 1rem; line-height: 1.1;
}
.cta-band h2 span { color: #4ade80; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   SOCIAL / MEDIA SECTION
   ============================================= */
.social-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.social-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; display: flex; align-items: center; gap: 1.25rem;
  text-decoration: none; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.social-card:hover { box-shadow: var(--shadow); border-color: var(--border2); transform: translateY(-2px); }
.social-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.social-card-icon.yt { background: #fee2e2; }
.social-card-icon.fb { background: #dbeafe; }
.social-card-title { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.social-card-desc { font-size: 0.85rem; color: var(--text3); line-height: 1.5; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section { padding: 5rem 2rem; background: var(--surface); }
.contact-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--primary); margin-bottom: 0.75rem;
}
.contact-info p { font-size: 1rem; color: var(--text2); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--green);
  text-decoration: none; margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.contact-detail:hover { color: var(--green-dark); }
.contact-detail svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text2);
}
.form-row input,
.form-row textarea {
  background: var(--surface);
  border: 1.5px solid var(--border2);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: inherit; font-size: 1rem;
  border-radius: var(--radius);
  outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21,128,61,0.12);
}
.form-row textarea { resize: vertical; height: 130px; }
.form-honey { display: none !important; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: #ffffff;
  border: none;
  padding: 0.95rem 2rem;
  font-family: inherit; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  min-height: 48px;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

.msg-ok, .msg-err {
  padding: 1rem 1.25rem; margin-bottom: 1.5rem;
  border-radius: var(--radius); font-size: 0.92rem;
  font-weight: 600; text-align: center;
}
.msg-ok { background: #dcfce7; border: 1px solid #bbf7d0; color: #14532d; }
.msg-err { background: #fee2e2; border: 1px solid #fecaca; color: #b91c1c; }

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--primary);
  padding: 4rem 2rem 3.5rem;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(21,128,61,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.page-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.page-breadcrumb a:hover { color: #4ade80; }
.page-breadcrumb span { color: rgba(255,255,255,0.2); }
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: #ffffff; line-height: 1.05; margin-bottom: 0.75rem;
}
.page-header h1 span { color: #4ade80; }
.page-lead {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  max-width: 600px; line-height: 1.75;
}

/* =============================================
   ARTICLE CONTENT
   ============================================= */
.article-section { padding: 4rem 2rem; }
.article-wrap { max-width: 860px; margin: 0 auto; }

.article-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--primary); line-height: 1.1;
  margin: 2.5rem 0 0.9rem;
}
.article-wrap h2:first-child { margin-top: 0; }
.article-wrap h3 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--green); margin: 2rem 0 0.6rem;
}
.article-wrap p {
  font-size: 1.02rem; color: var(--text2); line-height: 1.82;
  margin-bottom: 1.1rem;
}
.article-wrap ul, .article-wrap ol {
  margin: 0.75rem 0 1.2rem 1.5rem;
  color: var(--text2); font-size: 1rem; line-height: 1.75;
}
.article-wrap li { margin-bottom: 0.4rem; }
.article-wrap strong { color: var(--text); font-weight: 700; }
.article-wrap a { border-bottom: 1px solid rgba(21,128,61,0.3); transition: border-color 0.15s; }
.article-wrap a:hover { border-bottom-color: var(--green); }

.article-highlight {
  background: rgba(21,128,61,0.07);
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem; margin: 1.75rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-highlight p { margin: 0; color: var(--text2); }

.service-features {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin: 2rem 0;
}
.feat-item {
  background: var(--surface);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.35rem;
}
.feat-icon { font-size: 1.6rem; line-height: 1; margin-bottom: 0.2rem; }
.feat-title {
  font-size: 0.9rem; font-weight: 800;
  color: var(--primary);
}
.feat-text { font-size: 0.87rem; color: var(--text3); line-height: 1.6; }

.booking-note {
  background: rgba(21,128,61,0.07);
  border: 1px solid rgba(21,128,61,0.2);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
  display: flex; gap: 1rem; align-items: flex-start; margin: 2rem 0;
}
.booking-note-icon { font-size: 1.4rem; flex-shrink: 0; }
.booking-note-text { font-size: 0.95rem; color: var(--text2); line-height: 1.7; }
.booking-note-text a { color: var(--green); font-weight: 700; text-decoration: none; }
.booking-note-text a:hover { text-decoration: underline; }

.article-cta {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  font-size: 1rem; font-weight: 700; color: var(--primary);
  font-family: inherit; transition: color 0.15s;
}
.faq-q:hover { color: var(--green); }
.faq-q-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--surface2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.9rem; font-weight: 900;
  transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.97rem; color: var(--text2); line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 0;
  max-width: 1300px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.footer-col:last-child { border-right: none; }
.footer-logo {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em;
  color: #ffffff; text-decoration: none; display: inline-block;
  margin-bottom: 0.3rem;
}
.footer-logo span { color: #4ade80; }
.footer-tagline {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 0.9rem;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }
.footer-email {
  display: inline-block; margin-top: 1rem;
  font-size: 0.82rem; font-weight: 600; color: #4ade80;
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.footer-email:hover { border-bottom-color: #4ade80; }
.footer-col h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: 0.75rem; color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { max-width: 600px; line-height: 1.6; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.r { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.r.in { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.06s; }
.rd2 { transition-delay: 0.12s; }
.rd3 { transition-delay: 0.18s; }
.rd4 { transition-delay: 0.24s; }
.rd5 { transition-delay: 0.30s; }
.rd6 { transition-delay: 0.36s; }

/* =============================================
   UTILITY (vp- prefix)
   ============================================= */
.vp-flex-center { display: flex; align-items: center; justify-content: center; }
.vp-flex-between { display: flex; align-items: center; justify-content: space-between; }
.vp-text-center { text-align: center; }
.vp-mt-1 { margin-top: 0.5rem; }
.vp-mt-2 { margin-top: 1rem; }
.vp-mt-3 { margin-top: 1.5rem; }
.vp-mb-1 { margin-bottom: 0.5rem; }
.vp-mb-2 { margin-bottom: 1rem; }
.vp-mb-3 { margin-bottom: 1.5rem; }
.vp-hidden { display: none; }
.vp-block { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(3) { border-right: none; }
  .footer-col:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .service-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #vp-nav { padding: 0 1rem; }
  .nav-links, .nav-dropdown, .nav-right .btn-dark { display: none; }
  .burger-btn { display: flex; }

  .hero-stats { gap: 1.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: fit-content; }

  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .social-grid { grid-template-columns: 1fr; }

  .section { padding: 3.5rem 1.25rem; }
  .contact-section { padding: 3.5rem 1.25rem; }
  .page-header { padding: 3rem 1.25rem 2.5rem; }
  .article-section { padding: 3rem 1.25rem; }

  .cta-band-btns { flex-direction: column; align-items: center; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-col { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem 1.5rem; }
  .footer-col:first-child { border-top: none; }
  .footer-bottom { flex-direction: column; }

  .gallery-strip { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }

  .info-strip { gap: 1.5rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .hero h1 { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; grid-template-rows: repeat(4, 160px); }
  .footer-col li { margin-bottom: 0.4rem; }
}

/* =============================================
   LAYOUT HELPERS — section title containers
   ============================================= */
.s-title-wrap   { max-width: 640px; margin: 0 auto 3rem; }
.s-title-wrap-sm { max-width: 600px; margin: 0 auto 2.5rem; }
.s-title-wrap-xs { max-width: 540px; margin: 0 auto 2.5rem; }

.s-body-text { color: var(--text2); line-height: 1.75; }
.s-body-text-mb { color: var(--text2); line-height: 1.75; margin-bottom: 1rem; }
.s-body-text-center { color: var(--text2); line-height: 1.75; margin: 0 auto; }

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.cta-row-center { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }

/* Honeypot field */
.form-honey { display: none !important; }

/* Form notes */
.form-note {
  font-size: 0.8rem; color: var(--text4);
  margin-top: 1rem; line-height: 1.6;
}

/* Form title inside card */
.form-card-title {
  font-size: 1.3rem; font-weight: 800;
  color: var(--primary); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* Location box */
.location-box {
  margin-top: 2rem; padding: 1.25rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.location-box-label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text3); margin-bottom: 0.5rem;
}
.location-box p { font-size: 0.95rem; color: var(--text2); line-height: 1.65; margin: 0; }

/* Wiki reference box */
.wiki-box {
  margin-top: 1.5rem; text-align: center;
  padding: 1.5rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.wiki-box p { font-size: 0.95rem; color: var(--text2); margin-bottom: 0.75rem; }

/* Contact detail with top spacing */
.contact-detail-first { margin-top: 1.5rem; }

/* Mobile overlay CTA button */
.mobile-cta-wrap { margin-top: 0.5rem; }

/* Section lead centered */
.section-lead-center { color: var(--text2); line-height: 1.75; margin: 0 auto; }

/* Inline link styles */
.link-green { color: var(--green); font-weight: 700; text-decoration: none; }
.link-green:hover { color: var(--green-dark); text-decoration: underline; }

/* Wiki box paragraph */
.wiki-box p { font-size: 0.95rem; color: var(--text2); margin-bottom: 0.75rem; }

/* FAQ section wrapper (max-width + padding for FAQ outside article-wrap) */
.faq-wrap { max-width: 860px; margin: 0 auto; padding: 0 0 2rem; }

/* Small secondary link in article CTA bar */
.article-cta-link { color: var(--text3); font-size: 0.9rem; align-self: center; text-decoration: none; transition: color 0.15s; }
.article-cta-link:hover { color: var(--text2); }
