@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #005130;
  --accent-color: #c6a35b;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --white: #fff;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Merriweather", serif;
  --fs-h1: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  --fs-h2: clamp(1.8rem, 3vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.3rem, 2vw + 1rem, 1.8rem);
  --fs-body: clamp(1rem, 0.5vw + 0.8rem, 1.125rem);
  --fs-lead: clamp(1.15rem, 1.5vw + 1rem, 1.3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; width: 100%; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 134px;
  background: #f4f4f4;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.header-scrolled { padding-top: 70px; }
a { color: var(--primary-color); text-decoration: none; font-weight: 600; transition: color .25s ease; }
a:hover { color: var(--accent-color); text-decoration: underline; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .8em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); letter-spacing: -1px; }
h2 { font-size: var(--fs-h2); margin-top: 2em; }
h2::after { content: ""; display: block; width: 60px; height: 3px; margin-top: 15px; background: var(--accent-color); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p, ul, ol { max-width: 75ch; margin-top: 0; margin-bottom: 1.5em; text-wrap: pretty; }
img { max-width: 100%; height: auto; }
.container, .home-intro-container, .about-container, .footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.text-center { text-align: center; }

.site-header-wrapper {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.top-bar {
  height: 44px;
  display: flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 500;
}
.top-bar-inner, .info-group, .top-bar-actions, .top-socials, .navbar-inner, .nav-actions, .nav-links {
  display: flex;
  align-items: center;
}
.top-bar-inner { justify-content: space-between; gap: 16px; }
.info-group { gap: 25px; }
.info-item { display: flex; gap: 10px; align-items: center; color: inherit; text-decoration: none !important; }
.top-socials { gap: 12px; }
.top-social-link { color: inherit; font-size: 1rem; }
.main-navbar {
  height: 90px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: height .3s ease;
}
.site-header-wrapper.scrolled .main-navbar { height: 70px; border-bottom: 3px solid rgb(198, 163, 91); }
.site-header-wrapper.scrolled .top-bar { display: none; }
.navbar-inner { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 24px; }
.logo img { height: 55px; width: auto; display: block; }
.site-header-wrapper.scrolled .logo img { height: 44px; }
.nav-links { justify-content: center; gap: 35px; padding: 0; margin: 0; list-style: none; }
.nav-links a, .mobile-nav-links a { font-family: var(--font-heading); color: var(--primary-color); text-transform: uppercase; font-size: .88rem; letter-spacing: .04em; }
.nav-actions { gap: 14px; justify-content: flex-end; }
.credit-tags { display: flex; gap: 8px; }
.credit-tag { padding: 6px 9px; border: 1px solid rgba(0,81,48,.18); border-radius: 999px; font-family: var(--font-heading); font-size: .76rem; color: var(--primary-color); }
.btn-header, .btn-hero, .home-intro-primary, .newsletter-form button, .wpcf7-submit, .widget-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border: 0;
  border-radius: 2px;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}
.btn-header:hover, .btn-hero:hover, .home-intro-primary:hover, .newsletter-form button:hover, .wpcf7-submit:hover, .widget-cta a:hover { background: var(--accent-color); color: var(--white); text-decoration: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--primary-color); }
.mobile-menu { display: none; }

.hero-section {
  min-height: calc(100vh - 134px);
  display: flex;
  align-items: center;
  position: relative;
  background-image: var(--hero-background-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.hero-shell { min-height: 620px; display: flex; flex-direction: column; justify-content: center; padding: 72px 0; }
.hero-content { max-width: 850px; }
.hero-featured-label, .intro-kicker, .home-intro-kicker {
  margin: 0 0 12px;
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; font-family: var(--font-heading); }
.hero-tag { padding: 6px 10px; background: var(--accent-color); color: var(--primary-color); text-transform: uppercase; font-size: .78rem; }
.hero-date { color: rgba(255,255,255,.86); }
.hero-title { max-width: 15ch; margin: 0 0 22px; font-size: clamp(2.4rem, 4.8vw, 5rem); }
.hero-title a, .hero-title a:hover, .spec-hero h1, .lead-hero, .newsletter-section h2, .newsletter-section p { color: var(--white); }
.lead-hero { font-family: var(--font-heading); font-size: var(--fs-lead); line-height: 1.6; opacity: .95; }
.hero-actions, .home-intro-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-secondary, .home-intro-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .08em;
}
.home-intro-secondary { color: var(--primary-color); border-color: rgba(0,81,48,.18); background: rgba(0,81,48,.03); }
.hero-controls { display: flex; gap: 16px; align-items: center; margin-top: 42px; }
.hero-nav-btn { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); cursor: pointer; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 32px; height: 4px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; }
.hero-dot[aria-current="true"] { background: var(--accent-color); }
.hero-position { margin: 6px 0 0; color: rgba(255,255,255,.85); font-family: var(--font-heading); font-size: .86rem; }

.home-intro-section { position: relative; z-index: 2; margin-top: -18px; padding: 18px 0 36px; background: linear-gradient(180deg, rgba(248,248,248,0) 0, rgba(248,248,248,.96) 76px), #f8f8f8; }
.home-intro-panel { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.9fr); gap: clamp(28px,4vw,56px); padding: clamp(28px,4vw,42px); background: rgba(255,255,255,.96); border-top: 4px solid var(--accent-color); box-shadow: 0 22px 56px rgba(0,31,18,.1); }
.home-intro-heading h1 { max-width: 13.5ch; font-size: clamp(2.35rem,3.6vw + .8rem,4rem); line-height: 1.06; }
.home-intro-body { display: grid; gap: 24px; align-content: end; border-left: 1px solid rgba(0,81,48,.12); padding-left: clamp(0px,1.8vw,18px); }
.home-intro-lead { color: #3a5348; line-height: 1.85; }
.about-section, .blog-intro, .specializations-intro, .contact-intro, .contact-section, .spec-content, .post-shell, .simple-page { background: #f8f8f8; }
.about-section { padding: 54px 0 30px; }
.about-content p, .entry-content p, .overview-copy p { max-width: none; text-align: justify; }

.specializations-section, .blog-section { padding: 90px 0; background: var(--white); }
.blog-section.compact-top { padding-top: 42px; }
.section-header { margin-bottom: 50px; }
.section-lead { max-width: none; color: #666; }
.section-lead.centered { margin: 0 auto; text-align: center; }
.specs-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px; }
.spec-card, .blog-card, .contact-card, .post-main, .widget {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,.03);
}
.spec-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 30px; min-height: 100%; transition: all .3s ease; }
.spec-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 25px; }
.spec-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary-color); margin-bottom: 15px; }
.spec-desc { color: #666; font-size: .95rem; line-height: 1.6; }
.spec-arrow { margin-top: auto; color: var(--accent-color); opacity: 0; }
.spec-card:hover { background: var(--primary-color); transform: translateY(-8px); text-decoration: none; }
.spec-card:hover .spec-title, .spec-card:hover .spec-desc { color: var(--white); }
.spec-card:hover .spec-icon, .spec-card:hover .spec-arrow { color: var(--accent-color); opacity: 1; }

.blog-intro, .specializations-intro, .contact-intro { padding: 72px 0 24px; }
.intro-lead { color: #4b4b4b; max-width: 68ch; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-card-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--text-light); font-family: var(--font-heading); font-size: .82rem; margin-bottom: 12px; }
.blog-card h3 { margin: 0 0 14px; font-size: 1.25rem; }
.blog-card p { color: #555; font-size: .95rem; line-height: 1.65; }
.read-more { margin-top: auto; color: var(--accent-color); font-family: var(--font-heading); }
.blog-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.page-link {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color .25s ease, background-color .25s ease, color .25s ease, transform .25s ease;
}
.page-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
}
.page-link.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.page-nav { min-width: 112px; }

.breadcrumbs { background: #f8f8f8; padding: 18px 0; font-family: var(--font-heading); font-size: .88rem; }
.breadcrumbs .container { display: flex; flex-wrap: wrap; gap: 10px; }
.spec-hero { background: linear-gradient(rgba(0,81,48,.88), rgba(0,81,48,.8)); color: var(--white); padding: 56px 0 46px; }
.lead { color: rgba(255,255,255,.92); max-width: 900px; }
.spec-content { padding: 56px 0 24px; }
.overview-heading { margin-top: 0; }
.overview-body { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 28px; align-items: start; }
.overview-media { margin: 0; height: 300px; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,81,48,.12); border: 1px solid #d8e5de; }
.overview-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.subhead { margin-top: 56px; }
.accordion { display: grid; gap: 14px; margin-bottom: 50px; }
.accordion-item { background: #fff; border: 1px solid #e5e5e5; border-radius: 6px; overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; border: 0; background: #fff; color: var(--primary-color); font-family: var(--font-heading); font-weight: 700; font-size: 1rem; text-align: left; cursor: pointer; }
.accordion-panel { padding: 0 24px 22px; }
.accordion-panel p { max-width: none; text-align: justify; }

.post-shell { padding: 18px 0 90px; }
.post-grid { display: grid; grid-template-columns: minmax(0,2fr) minmax(280px,1fr); gap: 42px; align-items: start; }
.post-main { padding: 34px; }
.post-header h1 { font-size: clamp(2rem,2.8vw + 1rem,3.35rem); }
.post-meta { margin: 16px 0 28px; display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--text-light); font-family: var(--font-heading); font-size: .86rem; font-weight: 600; }
.meta-item { display: inline-flex; align-items: center; gap: 8px; }
.featured-image { width: 100%; border-radius: 6px; margin-bottom: 30px; display: block; }
.lead-blog { font-size: var(--fs-lead); line-height: 1.8; color: #444; font-style: italic; border-left: 4px solid var(--accent-color); padding-left: 20px; margin: 0 0 40px; }
.post-sidebar { position: sticky; top: 120px; }
.widget { padding: 24px; margin-bottom: 16px; }
.widget h3 { margin-top: 0; font-size: 1.2rem; }
.widget-about { text-align: center; }
.widget-about img { max-width: 78px; }
.category-list { max-width: none; list-style: none; padding: 0; margin: 0; }
.category-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eee; }

.contact-section { padding: 28px 0; }
.contact-layout { display: grid; gap: 16px; width: 100%; }
.contact-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.contact-card, .contact-form { padding: 18px 28px 28px; }
.contact-list { list-style: none; padding: 0; max-width: none; }
.contact-list li { display: grid; gap: 4px; padding: 12px 0; border-bottom: 1px solid #eee; }
.contact-list span { color: var(--text-light); font-family: var(--font-heading); font-size: .82rem; text-transform: uppercase; }
.contact-form { background: var(--primary-color); color: #fff; border-radius: 6px; }
.contact-card h2, .contact-form h2 { margin-top: 0; }
.contact-form h2, .contact-form p, .contact-form label { color: #fff; }
.wpcf7-form-control { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 3px; font: inherit; }
.wpcf7 input[type="file"].wpcf7-form-control {
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.wpcf7 input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 3px;
  background: var(--accent-color);
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.form-hint {
  font-size: .85rem;
  line-height: 1.5;
  opacity: .86;
}
.wpcf7 textarea { min-height: 170px; }
.wpcf7-form p { max-width: none; margin-bottom: 16px; }
.contact-layout > .map-header p { max-width: none; }
#altEmail_container,
.altEmail_container,
.wpa_hidden_field {
  display: none !important;
  visibility: hidden !important;
}
.map-section { background: #fff; padding: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.simple-page { padding: 72px 0; }
.simple-page-inner { background: #fff; padding-top: 34px; padding-bottom: 34px; }
.thanks-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
}
.thanks-link:hover {
  background: #01653f;
  color: var(--white);
  text-decoration: none;
}

.newsletter-section { padding: 70px 0; background-position: center; background-size: cover; color: #fff; }
.newsletter-compact {
  padding: 0 0 88px;
  background: #f8f8f8;
  color: var(--primary-color);
}
.newsletter-content {
  width: min(100%, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 46px clamp(22px, 4vw, 48px);
  background:
    linear-gradient(rgba(0, 81, 48, .82), rgba(0, 81, 48, .74)),
    url("../images/newsletter_bg.jpg");
  background-color: var(--primary-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}
.newsletter-kicker {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.newsletter-content h2 {
  margin: 0;
  color: var(--white);
}
.newsletter-content h2::after {
  margin: 15px auto 0;
  background: var(--accent-color);
}
.newsletter-lead {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, .9);
}
.newsletter-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.8fr); gap: 36px; align-items: center; }
.newsletter-form { background: rgba(255,255,255,.96); color: var(--primary-color); padding: 28px; border-radius: 6px; }
.newsletter-compact .newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  color: var(--white);
}
.newsletter-form label { display: block; font-family: var(--font-heading); font-weight: 700; margin-bottom: 8px; }
.input-group {
  display: flex;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}
.input-group input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border: 0;
  outline: 0;
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
}
.input-group button {
  padding: 0 30px;
  border-radius: 0;
  white-space: nowrap;
}
.rodo-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  max-width: 560px;
  width: 100%;
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
  font-weight: 400 !important;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  justify-content: center;
}
.rodo-check input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent-color);
}
.rodo-check a { color: var(--accent-color); }
.rodo-check a:hover { color: var(--white); }
.newsletter-row { display: flex; gap: 10px; }
.newsletter-row input { flex: 1; padding: 12px 14px; border: 1px solid #ddd; }
.checkbox-label { margin-top: 14px; font-size: .9rem; font-weight: 400 !important; }

.site-footer { background: var(--primary-color); color: var(--white); padding-top: 60px; margin-top: auto; font-family: var(--font-heading); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); gap: 50px; align-items: start; margin-bottom: 60px; }
.brand-card { background: var(--accent-color); color: var(--primary-color); padding: 40px 30px; border-radius: 4px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.2); margin-top: -80px; }
.footer-signet { max-width: 80px; margin: 0 auto 25px; display: block; }
.brand-desc { color: var(--primary-color); font-size: .9rem; line-height: 1.6; }
.brand-socials { display: flex; justify-content: center; gap: 20px; }
.footer-col h4 { color: var(--accent-color); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 25px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a, .footer-contact-item a, .footer-bottom a { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.footer-contact-item i { color: var(--accent-color); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 25px 0; font-size: .85rem; opacity: .85; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1200px) {
  .specs-grid, .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .brand-card { margin-top: 0; }
}
@media (max-width: 1024px) {
  .top-bar { display: none; }
  body { padding-top: 82px; }
  .main-navbar { height: 82px; }
  .nav-links, .nav-actions { display: none; }
  .navbar-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; }
  .mobile-menu { display: none; background: #fff; border-top: 1px solid #eee; padding: 20px 30px 26px; }
  .site-header-wrapper.menu-open .mobile-menu { display: block; }
  .mobile-nav-links { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 14px; }
  .mobile-credit-tags { margin-bottom: 18px; }
}
@media (max-width: 900px) {
  .container, .home-intro-container, .about-container, .footer-container { padding: 0 20px; }
  .hero-section { min-height: 540px; padding: 110px 0 38px; background-attachment: scroll; }
  .hero-shell { min-height: auto; padding: 0; gap: 18px; }
  .hero-content { border-left-width: 4px; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .btn-hero, .btn-hero-secondary { width: 100%; }
  .home-intro-panel, .overview-body, .post-grid, .contact-layout, .newsletter-inner { grid-template-columns: 1fr; }
  .home-intro-body { border-left: 0; padding-left: 0; }
  .overview-media, .post-sidebar { display: none; }
  .contact-cards, .specs-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .specializations-section, .blog-section { padding: 64px 0; }
  .newsletter-compact { padding: 0 0 70px; }
  .newsletter-content { gap: 18px; }
  .newsletter-lead { font-size: 1rem; line-height: 1.6; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.35rem; }
  .hero-section { min-height: 500px; padding: 92px 0 28px; }
  .hero-content { padding: 22px 18px; border-left-width: 3px; }
  .hero-title { font-size: 2.35rem; }
  .hero-controls { grid-template-columns: 1fr; justify-items: stretch; }
  .hero-controls-main { order: -1; }
  .hero-nav-btn { width: 100%; height: 44px; }
  .post-main, .contact-card, .contact-form { padding: 22px; }
  .newsletter-row { flex-direction: column; }
  .input-group { flex-direction: column; }
  .input-group input {
    border-radius: 0;
  }
  .input-group button { width: 100%; padding: 14px 20px; }
  .rodo-check { justify-content: flex-start; text-align: left; gap: 12px; font-size: .78rem; }
  .rodo-check input { width: 20px; height: 20px; min-width: 20px; flex-basis: 20px; margin-top: 1px; }
}

/* Astro parity overrides: interaction states, hover colors and component sizing. */
.info-item { transition: opacity .3s; }
.info-item:hover { opacity: .8; color: inherit; }
.top-social-link { text-decoration: none !important; transition: opacity .3s, transform .3s; }
.top-social-link:hover { opacity: .8; transform: translateY(-1px); color: inherit; }

.hero-section {
  min-height: clamp(560px, 82vh, 860px);
  align-items: stretch;
  padding: clamp(118px, 16vh, 172px) 0 64px;
  background-attachment: fixed;
}
.hero-shell {
  min-height: 100%;
  display: grid;
  gap: 28px;
  align-content: end;
  padding: 0;
}
.hero-content {
  max-width: 880px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 5px solid var(--accent-color);
  background: linear-gradient(180deg, rgba(0, 26, 16, .7), rgba(0, 26, 16, .52));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  backdrop-filter: blur(5px);
}
.hero-featured-label {
  color: rgba(255, 255, 255, .82);
  letter-spacing: .18em;
}
.hero-meta {
  flex-wrap: wrap;
  gap: 12px;
  min-height: 28px;
}
.hero-tag,
.hero-date {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .78rem;
  letter-spacing: .04em;
}
.hero-tag {
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 700;
}
.hero-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 4vw + .75rem, 4.3rem);
  line-height: 1.02;
}
.hero-position {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  min-width: 0;
  white-space: nowrap;
}
.nav-links li {
  flex: 0 0 auto;
  margin-bottom: 0;
}
.nav-links a {
  position: relative;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none !important;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: width .3s;
}
.nav-links a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.nav-links a:hover::after { width: 100%; }

.credit-tag {
  min-width: 54px;
  padding: 6px 10px;
  border-color: rgba(0, 50, 30, .16);
  background: rgba(181, 164, 122, .12);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none !important;
  transition: .3s;
}
.credit-tag:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
}

.btn-header {
  gap: 8px;
  padding: 10px 24px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: .3s;
}
.btn-header:hover {
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
}

.menu-toggle {
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 4px;
}
.menu-toggle span {
  width: 22px;
  transition: transform .25s ease, opacity .25s ease;
}
.site-header-wrapper.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header-wrapper.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header-wrapper.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-title a {
  color: var(--white);
  text-decoration: none;
}
.hero-title a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.lead-hero {
  margin: 18px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, .8vw + .92rem, 1.2rem);
  line-height: 1.75;
}
.hero-actions { margin-top: 28px; }
.btn-hero,
.btn-hero-secondary {
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-hero {
  background-color: var(--accent-color);
  color: var(--primary-color);
}
.btn-hero:hover {
  transform: translateY(-2px);
  background-color: var(--white);
  color: var(--primary-color);
  text-decoration: none;
}
.btn-hero-secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}
.btn-hero-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--white);
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  text-decoration: none;
}
.hero-controls {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 18px 22px;
  background: rgba(0, 20, 12, .55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
  backdrop-filter: blur(5px);
}
.hero-controls-main {
  display: grid;
  gap: 10px;
}
.hero-nav-btn {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.hero-nav-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .36);
}
.hero-dots {
  gap: 10px;
  align-items: center;
}
.hero-dot {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .22);
  transition: transform .25s ease, background-color .25s ease;
}
.hero-dot:hover {
  transform: scaleY(1.2);
  background: rgba(255, 255, 255, .42);
}
.hero-position {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.home-intro-primary,
.home-intro-secondary {
  padding: 10px 24px;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 600;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.home-intro-primary:hover {
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
}
.home-intro-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
}

.spec-card {
  border-radius: 4px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
}
.spec-icon { transition: transform .4s ease; }
.spec-arrow {
  font-size: 1.2rem;
  transform: translateX(-10px);
  transition: all .3s ease;
}
.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 81, 48, .3);
  border-color: var(--primary-color);
  text-decoration: none;
}
.spec-card:hover .spec-desc { color: rgba(255, 255, 255, .9); }
.spec-card:hover .spec-icon { transform: scale(1.1); }
.spec-card:hover .spec-arrow { transform: translateX(0); }
.spec-card:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.blog-section { background: #f7f7f7; }
.blog-grid { gap: 28px; }
.blog-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .1);
  color: inherit;
  text-decoration: none;
}
.blog-card:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.blog-thumb {
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-date {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text-light);
  font-size: .82rem;
  font-family: var(--font-heading);
  letter-spacing: .2px;
}
.blog-title {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(1.5rem, 1.2vw + 1rem, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
}
.blog-excerpt {
  margin: 0;
  color: #4f4f4f;
  font-size: 1.02rem;
  line-height: 1.72;
}
.read-more {
  margin-top: auto;
  align-self: flex-end;
  justify-content: flex-end;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card:hover .read-more { color: var(--accent-color); }
.accordion {
  margin-top: 24px;
}
.accordion-item {
  border-color: #e8e8e8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .03);
  scroll-margin-top: 160px;
}
.accordion-trigger {
  gap: 12px;
  padding: 20px 22px;
  font-size: 1.15rem;
  font-weight: 600;
}
.accordion-trigger i {
  color: var(--accent-color);
  font-size: .95rem;
  transition: transform .2s ease;
}
.accordion-trigger[aria-expanded="true"] i { transform: rotate(45deg); }
.accordion-panel {
  padding: 0 22px 20px;
  border-top: 1px solid #efefef;
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  text-transform: uppercase;
  transition: background-color .3s ease, color .3s ease;
}
.newsletter-form button:hover {
  background-color: var(--white);
  color: var(--accent-color);
  text-decoration: none;
}

.wpcf7-submit {
  border-radius: 4px;
  transition: background-color .2s ease;
}

.brand-socials a {
  color: var(--primary-color);
  font-size: 1.4rem;
  transition: .3s;
}
.brand-socials a:hover {
  color: var(--white);
  transform: translateY(-3px);
  text-decoration: none;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  text-decoration: none;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}
.footer-links a:hover {
  color: var(--accent-color);
  opacity: 1;
  padding-left: 5px;
  text-decoration: none;
}
.footer-contact-item a {
  transition: .3s;
  overflow-wrap: anywhere;
}
.footer-contact-item a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

@media (min-width: 1025px) {
  .site-header-wrapper.scrolled {
    transform: translateY(-44px);
  }
  .site-header-wrapper.scrolled .top-bar {
    display: flex;
  }
  .site-header-wrapper.scrolled .logo img {
    height: 45px;
  }
}

@media (max-width: 900px) {
  .site-footer { padding-top: 40px; }
  .footer-grid {
    gap: 30px;
    margin-bottom: 40px;
  }
  .footer-col { text-align: center; }
  .footer-links a { justify-content: center; }
  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom-links {
    display: flex;
    justify-content: center;
  }
  .hero-section {
    min-height: 540px;
    padding: 110px 0 38px;
    background-attachment: scroll;
  }
  .hero-shell {
    min-height: auto;
    gap: 18px;
  }
  .hero-content { border-left-width: 4px; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .btn-hero,
  .btn-hero-secondary { width: 100%; }
  .blog-card { grid-template-rows: 200px 1fr; }
  .blog-content { padding: 18px; }
  .blog-title { font-size: 1.45rem; }
  .blog-excerpt { font-size: 1rem; }
  .accordion-trigger {
    font-size: 1rem;
    padding: 16px 18px;
  }
  .accordion-panel { padding: 0 18px 16px; }
  .accordion-item { scroll-margin-top: 110px; }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 500px;
    padding: 92px 0 28px;
  }
  .hero-content {
    padding: 22px 18px;
    border-left-width: 3px;
  }
  .hero-controls {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .hero-controls-main { order: -1; }
  .hero-nav-btn {
    width: 100%;
    height: 44px;
  }
}
