@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/*
 *
 * Theme Name: Fena
 * Author: George Neagu
 * Description: Custom developed theme to fit all kinds of neeeds
 * Version: 10
 * Tested up to: 8.4
 * Requires PHP: 8.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * This theme, like WordPress, is licensed under the GPL.
 *
 */
/* Resets */
:root {
  --green-900: #013329;
  --green-700: #024a36;
  --green-600: #027342;
  --green-500: #0a8a52;
  --mint: #6fd19f;
  --mint-soft: #bfe8d3;
  --stone-50: #f7f5f0;
  --stone-100: #efece4;
  --stone-200: #e3ded2;
  --ink: #1c2420;
  --muted: #5d6b63;
  --brass: #b08a4f;
  --brass-soft: #d8c3a0;
  --white: #ffffff;
  --maxw: 1180px;
  --ease: cubic-bezier(.16,1,.3,1);
  /* corner radii — scaled by element size */
  --r-xl: 32px;
  /* large surfaces: photos, form panel */
  --r-lg: 24px;
  /* cards, spec grid */
  --r-md: 18px;
  /* smaller media: thumbs, badge */
  --r-sm: 14px;
  /* buttons, inputs */
  --r-tile: 16px;
  /* small icon tiles */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat',sans-serif;
  color: var(--ink);
  background: var(--stone-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--brass);
}

.eyebrow.light {
  color: var(--mint);
}

.eyebrow.light::before {
  background: var(--mint);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 600;
  font-size: .92rem;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  transition: all .4s var(--ease);
  cursor: pointer;
  border: 0;
  font-family: 'Montserrat',sans-serif;
}

.btn-primary {
  background: var(--green-900);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--mint);
  color: var(--green-900);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn .arr {
  transition: transform .4s var(--ease);
}

.btn:hover .arr {
  transform: translateX(4px);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all .5s var(--ease);
  padding: 22px 0;
}

header.scrolled {
  background: rgba(247,245,240,.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand .emblem {
  width: 36px;
  height: auto;
  transition: all .4s var(--ease);
}

.brand .bt {
  line-height: 1.05;
}

.brand .bt strong {
  font-family: 'Montserrat',sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: .08em;
  color: var(--green-900);
  display: block;
}

.brand .bt span {
  font-size: .62rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass);
}

header:not(.scrolled) .brand .bt strong {
  color: #fff;
}

header:not(.scrolled) .brand .bt span {
  color: var(--mint);
}

header:not(.scrolled) .brand .emblem {
  filter: brightness(0) invert(1);
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.menu a {
  font-size: .86rem;
  font-weight: 500;
  position: relative;
  color: var(--ink);
  transition: color .3s;
}

header:not(.scrolled) .menu a {
  color: rgba(255,255,255,.85);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--brass);
  transition: width .35s var(--ease);
}

.menu a:hover::after {
  width: 100%;
}

.menu .cta {
  padding: 10px 20px;
  border: 1.5px solid var(--green-900);
  border-radius: var(--r-sm);
}

header:not(.scrolled) .menu .cta {
  border-color: rgba(255,255,255,.45);
}

.menu .cta::after {
  display: none;
}

.menu .cta:hover {
  background: var(--green-900);
  color: #fff;
}

header:not(.scrolled) .menu .cta:hover {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 0;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .3s;
}

header.scrolled .burger span {
  background: var(--green-900);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #04261d;
}

.hero-img img, .hero-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(1,33,25,.55) 0%,rgba(1,33,25,.30) 35%,rgba(1,33,25,.85) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 74px;
  padding-top: 120px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,209,159,.16);
  border: 1px solid rgba(111,209,159,.4);
  color: var(--mint);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem,5.4vw,4.4rem);
  max-width: 16ch;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--mint);
  font-weight: 400;
}

.hero p.lead {
  color: rgba(255,255,255,.85);
  font-size: 1.12rem;
  max-width: 34em;
  margin-bottom: 34px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 28px;
}

.hero-meta .m .n {
  font-family: 'Montserrat',sans-serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.hero-meta .m .n small {
  color: var(--mint);
  font-size: 1rem;
}

.hero-meta .m .l {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 5px;
}

/* TRUST */
.trust {
  background: var(--green-900);
  color: rgba(255,255,255,.78);
  padding: 24px 0;
}

.trust .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.trust .t-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .85rem;
}

.trust .t-item i {
  color: var(--mint);
  font-size: 1.05rem;
}

.trust .t-divide {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.15);
}

/* SECTION SHELL */
section.block {
  padding: 104px 0;
}

.sec-head {
  max-width: 660px;
  margin-bottom: 54px;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head.center .eyebrow {
  justify-content: center;
}

.sec-head h2 {
  font-size: clamp(2rem,3.6vw,3rem);
  margin: 18px 0 18px;
  color: var(--green-900);
}

.sec-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* ABOUT */
.about {
  background: var(--stone-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(1,51,41,.18);
}

.about-visual .badge {
  position: absolute;
  bottom: -26px;
  right: -22px;
  background: var(--green-900);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--r-md);
  max-width: 220px;
  box-shadow: 0 24px 50px rgba(1,51,41,.25);
}

.about-visual .badge i {
  color: var(--mint);
  font-size: 1.5rem;
}

.about-visual .badge .serif {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.3rem;
  margin: 8px 0 4px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.about-visual .badge p {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

.about-text h2 {
  font-size: clamp(1.9rem,3.4vw,2.7rem);
  color: var(--green-900);
  margin: 18px 0 22px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-text .pillars {
  margin-top: 30px;
  border-top: 1px solid var(--stone-200);
}

.pillar {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone-200);
  align-items: flex-start;
}

.pillar .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint);
  font-size: 1.2rem;
}

.pillar h4 {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 3px;
}

.pillar p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
}

/* PROPERTIES */
.props {
  background: #fff;
}

.prop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}

.prop:last-child {
  margin-bottom: 0;
}

.prop.rev .prop-media {
  order: 2;
}

.prop-media {
  position: relative;
}

/* SLIDER */
.slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: 0 24px 60px rgba(1,51,41,.16);
  background: var(--green-900);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .55s var(--ease);
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.9);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s,transform .3s;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(1,51,41,.2);
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-count {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(1,51,41,.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 40px;
}

.prop-thumbs {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
  margin-top: 10px;
}

.prop-thumbs img {
  border-radius: var(--r-md);
  aspect-ratio: 3/2;
  object-fit: cover;
  cursor: pointer;
  transition: opacity .3s,box-shadow .3s;
  opacity: .55;
}

.prop-thumbs img:hover {
  opacity: .85;
}

.prop-thumbs img.active {
  opacity: 1;
  box-shadow: 0 0 0 2.5px var(--mint);
}

.prop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.prop-badge span {
  background: rgba(1,51,41,.88);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 7px 13px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.prop-badge span.green {
  background: var(--mint);
  color: var(--green-900);
}

.prop-info .kicker {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass);
}

.prop-info h3 {
  font-size: clamp(1.8rem,3vw,2.5rem);
  color: var(--green-900);
  margin: 12px 0 10px;
}

.prop-info .loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 18px;
}

.prop-info .loc i {
  color: var(--green-600);
}

.prop-info>p {
  color: var(--muted);
  margin-bottom: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 26px;
}

.spec {
  background: #fff;
  padding: 16px 18px;
}

.spec .sl {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.spec .sv {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.18rem;
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: -.01em;
}

.spec .sv small {
  font-size: .8rem;
  color: var(--muted);
  font-family: 'Montserrat';
}

.prop-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.prop-feats span {
  font-size: .8rem;
  color: var(--green-700);
  background: var(--stone-100);
  padding: 7px 13px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prop-feats span i {
  font-size: .95rem;
  color: var(--green-600);
}

/* ENERGY */
.energy {
  background: var(--green-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.energy-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.energy-media img {
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

.energy h2 {
  color: #fff;
  font-size: clamp(1.9rem,3.4vw,2.8rem);
  margin: 18px 0 20px;
}

.energy p {
  color: rgba(255,255,255,.8);
  margin-bottom: 18px;
  font-weight: 300;
}

.energy .e-stats {
  display: flex;
  gap: 36px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.energy .e-stats .n {
  font-family: 'Montserrat',sans-serif;
  font-size: 2.4rem;
  color: var(--mint);
  line-height: 1;
  font-weight: 700;
}

.energy .e-stats .l {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  max-width: 12em;
  margin-top: 6px;
}

/* WHY */
.why {
  background: var(--stone-100);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(1,51,41,.1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card .ic {
  width: 52px;
  height: 52px;
  border-radius: var(--r-tile);
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--green-900);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .92rem;
  color: var(--muted);
}

/* CTA */
.cta-strip {
  background: linear-gradient(120deg,var(--green-900),var(--green-600));
  color: #fff;
  padding: 80px 0;
}

.cta-strip .wrap {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: center;
}

.cta-strip h2 {
  font-size: clamp(1.8rem,3.4vw,2.5rem);
  color: #fff;
}

.cta-strip p {
  color: rgba(255,255,255,.8);
  margin-top: 14px;
  font-weight: 300;
  max-width: 34em;
}

.cta-strip .right {
  display: flex;
  justify-content: flex-end;
}

/* CONTACT */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(1.9rem,3.4vw,2.7rem);
  color: var(--green-900);
  margin: 18px 0 20px;
}

.contact-info>p {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 30em;
}

.ci-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--stone-200);
}

.ci-row .ic {
  width: 46px;
  height: 46px;
  border-radius: var(--r-tile);
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-600);
  font-size: 1.2rem;
}

.ci-row h4 {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 5px;
}

.ci-row p {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.ci-row p span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 400;
}

.form {
  background: var(--stone-50);
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--stone-200);
}

.form h3 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--green-900);
  margin-bottom: 24px;
}

.form .sub {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 7px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-sm);
  font-family: 'Montserrat';
  font-size: .92rem;
  background: #fff;
  color: var(--ink);
  transition: border .3s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
}

.field.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form .note {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding: 70px 0 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}

.foot-brand img {
  width: 130px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.foot-brand p {
  font-size: .9rem;
  max-width: 24em;
  line-height: 1.7;
}

.foot-col h5 {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}

.foot-col a {
  display: block;
  font-size: .9rem;
  padding: 7px 0;
  color: rgba(255,255,255,.7);
  transition: color .3s,padding-left .3s;
}

.foot-col a:hover {
  color: #fff;
  padding-left: 6px;
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem;
}

.foot-bottom .parent {
  color: rgba(255,255,255,.6);
}

.foot-bottom .parent b {
  color: var(--mint);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease),transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .about-grid, .energy-grid, .cta-strip .wrap, .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .prop, .prop.rev {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prop.rev .prop-media {
    order: 0;
  }

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

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-strip .right {
    justify-content: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s var(--ease), opacity 0.3s ease, margin-top 0.4s var(--ease);
  }

  .menu.active {
    max-height: 300px;
    opacity: 1;
    margin-top: 24px;
    padding-bottom: 12px;
  }

  .menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease);
    transition-delay: 0s;
  }

  .menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .menu.active li:nth-child(2) {
    transition-delay: 0.18s;
  }

  .menu.active li:nth-child(3) {
    transition-delay: 0.26s;
  }

  .menu.active li:nth-child(4) {
    transition-delay: 0.34s;
  }

  .burger {
    display: flex;
  }

  /* Burger toggle animation */
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  header {
    padding: 16px 0;
  }

  header.scrolled {
    padding: 10px 0;
  }

  header.menu-active {
    background: rgba(247, 245, 240, 0.98) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  header.menu-active .brand .bt strong {
    color: var(--green-900);
  }

  header.menu-active .brand .bt span {
    color: var(--brass);
  }

  header.menu-active .brand .emblem {
    filter: none;
  }

  header.menu-active .menu a {
    color: var(--ink);
  }

  header.menu-active .menu .cta {
    border-color: var(--green-900);
  }

  header.menu-active .burger span {
    background: var(--green-900);
  }

  .hero .wrap {
    padding-top: 140px;
  }

  .about-visual .badge {
    right: 0;
  }

}

@media (max-width: 560px) {
  .wrap {
    padding: 0 22px;
  }

  section.block {
    padding: 70px 0;
  }

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

  .field.two, .spec-grid {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 26px;
  }

  .trust .t-divide {
    display: none;
  }

  .hero-meta {
    gap: 26px;
  }

}
.isvg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  flex: none;
}



.container {
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.page-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.gen-header {
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left;
  color: var(--green-900);
}

.emblem {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}