/* =============================================
   Laisvos Žemės Fondas — Government Style
   ============================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2E5339;
  --primary-dark: #1B3324;
  --primary-light: #3D6B4A;
  --accent: #4A7C59;
  --accent-light: #5E9E6E;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --white: #FFFFFF;
  --blue-link: #1A5276;
  --border: #D5D9DD;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-md: 6px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  color: var(--gray-900);
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: var(--blue-link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Utility Bar --- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.6);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar__item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.topbar__item a:hover {
  color: #fff;
  text-decoration: none;
}

.topbar__right {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* --- Header --- */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo svg {
  height: 44px;
  width: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.header__logo-subtitle {
  font-size: 11px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header__nav {
  display: flex;
  gap: 0;
  list-style: none;
}

.header__nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.header__nav a:hover {
  color: var(--primary);
  background: var(--gray-100);
  text-decoration: none;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

.btn--white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--primary-dark);
}

.btn--sm {
  padding: 6px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 0;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.hero__image-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  stroke-width: 1.5;
}

/* --- Quick Services Bar --- */
.quick-services {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-service {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--gray-200);
  text-decoration: none;
  color: var(--gray-800);
  transition: all var(--transition);
}

.quick-service:last-child {
  border-right: none;
}

.quick-service:hover {
  background: var(--gray-50);
  text-decoration: none;
  color: var(--primary);
}

.quick-service__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-service__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-service__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.quick-service__desc {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 400;
  margin-top: 2px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.65rem 0;
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
}

.breadcrumb__list li + li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid var(--gray-400);
  border-right: 1.5px solid var(--gray-400);
  transform: rotate(45deg);
  margin: 0 0.55rem;
  flex-shrink: 0;
}

.breadcrumb__list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.breadcrumb__list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb__list [aria-current="page"] {
  color: var(--gray-700);
  font-weight: 400;
}

/* --- Section Common --- */
.section {
  padding: 4rem 0;
}

.section--gray {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.section--dark {
  background: var(--primary-dark);
  color: var(--white);
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__header--center {
  text-align: center;
}

.section__overline {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 640px;
}

.section__header--center .section__subtitle {
  margin: 0 auto;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about__image-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.about__image-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 1.5;
}

.about__text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about__text p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.about__text p:last-of-type {
  margin-bottom: 1.5rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.5rem;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.about__highlight svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.about__highlight-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}

/* --- Services --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
}

.service-card__desc {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  counter-increment: step;
}

.step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--gray-300);
}

.step:last-child::after {
  display: none;
}

.step:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--gray-300);
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step__desc {
  color: var(--gray-600);
  font-size: 13px;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Info Banner --- */
.info-banner {
  background: var(--primary);
  color: var(--white);
  padding: 3.5rem 0;
}

.info-banner__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.info-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.info-banner__text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* --- News / Updates --- */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
}

.news-card__image {
  height: 180px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.03);
}

.news-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.news-card__image-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 1.5;
}

.news-card__body {
  padding: 1.25rem;
}

.news-card__date {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.news-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card__excerpt {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.news-card__link:hover {
  color: var(--primary-dark);
}

/* --- FAQ --- */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-item__question:hover {
  background: var(--gray-50);
}

.faq-item__question svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}

.contact__value a {
  color: var(--gray-800);
}

.contact__value a:hover {
  color: var(--primary);
  text-decoration: none;
}

.contact__panel {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
}


.contact__note {
  margin-top: 1rem;
  padding: 12px 16px;
  background: #E8F5E9;
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--primary-dark);
}

/* --- Article Hero Image --- */
.article__hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer__logo svg {
  height: 36px;
  width: auto;
}

.footer__logo-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
}

.footer__desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: var(--gray-500);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: var(--gray-500);
}

.footer__contact-item a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-600);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: var(--gray-600);
  font-size: 13px;
}

.footer__bottom-links a:hover {
  color: var(--gray-400);
  text-decoration: none;
}

/* --- Quote / Motto --- */
.quote-block {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 4rem 0;
  text-align: center;
}

.quote-block__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.quote-block__mark {
  font-size: 6rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.quote-block__text {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-block__author {
  margin-top: 1.25rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* --- Land Types --- */
.land-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.land-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.land-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.land-type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.land-type-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.land-type-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.land-type-card__desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Resources --- */
.resources__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}

.resource-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.resource-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.resource-card__desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
}

.resource-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resource-card__link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 20px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav__list {
  list-style: none;
}

.mobile-nav__list li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav__list li:last-child {
  border-bottom: none;
}

.mobile-nav__list a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
}

.mobile-nav__list a:hover {
  color: var(--primary);
  text-decoration: none;
}

.mobile-nav__contacts {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  text-decoration: none;
}

.mobile-nav__contact-item:hover {
  background: var(--gray-100);
  color: var(--primary);
  text-decoration: none;
}

.mobile-nav__contact-item svg,
.mobile-nav__hours svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mobile-nav__hours {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--gray-600);
}

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

  .hero__content {
    padding: 3rem 0;
  }

  .hero__image {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .article__hero {
    height: 240px;
  }

  .topbar {
    display: none;
  }

  html {
    scroll-padding-top: 72px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .quick-services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-service {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .quick-service:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }

  .quick-service:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step::after,
  .step:not(:first-child)::before {
    display: none;
  }

  .info-banner__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-banner__grid .btn {
    margin: 0 auto;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__desc {
    margin: 0 auto;
  }

  .footer__links {
    align-items: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
