:root {
  --white: #ffffff;
  --green: #98bb49;
  --coffee: #582d1a;
  --gold: #d59d39;
  --stone: #716f6d;
  --cream: #f7f4ef;
  --ink: #241915;

  --shadow: 0 20px 50px rgba(27, 17, 12, 0.12);
  --radius: 20px;
  --container: min(1180px, calc(100% - 2rem));
  --transition: all 0.35s ease;

  --topbar-height: 48px;
  --navbar-height: 88px;
  --header-offset: calc(var(--topbar-height) + var(--navbar-height));
}

/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--cream);
}

.section-tint {
  position: relative;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.eyebrow.light {
  color: #ffe4b5;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  line-height: 1.12;
  color: var(--green);
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--white);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 16px;
  color: rgba(36, 25, 21, 0.82);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #e6ac41;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(88, 45, 26, 0.2);
}

.btn-secondary:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.compact-row {
  margin-top: 20px;
}

.center-row {
  justify-content: center;
}

/* =========================
   Header / Topbar / Navbar
========================= */

.site-header {
  position: relative;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--topbar-height);
  padding: 0;
  color: var(--white);
  background: transparent;
  transition: var(--transition);
}

.topbar.scrolled {
  background: var(--green);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--topbar-height);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a,
.topbar span,
.topbar button {
  font-size: 0.92rem;
}

.topbar a:hover,
.topbar button:hover {
  opacity: 0.9;
}

.quote-inline-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
}

.navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 119;
  padding: 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(36, 25, 21, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--navbar-height);
}

.brand {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-space {
  display: grid;
  place-items: center;
  width: 140px;
  height: 86px;
  overflow: hidden;
  border-radius: 18px;
  transition: var(--transition);
}

.logo-space img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
}

.brand-copy span {
  font-size: 0.82rem;
  opacity: 0.92;
}

.navbar.scrolled .brand-copy span {
  opacity: 0.72;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 28px;
  min-width: 0;
  color: var(--white);
}

.navbar.scrolled .nav-menu {
  color: var(--ink);
}

.nav-menu > a,
.mega-link-row > a,
.mega-trigger {
  position: relative;
  font-weight: 600;
}

.nav-menu > a::after,
.mega-link-row > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after,
.mega-link-row > a:hover::after,
.mega-link-row > a.active::after {
  width: 100%;
}

.nav-actions {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
}

.nav-actions .btn {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle i {
  color: #eff8ef;
}

.navbar.scrolled .nav-toggle i {
  color: var(--green);
}

.mobile-quote {
  display: none;
}

.nav-item {
  position: static;
}

.mega-link-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mega-trigger {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  transition: var(--transition);
}

.mega-trigger:hover {
  transform: translateY(-1px);
}

.mega-trigger i {
  transition: var(--transition);
}

.mega-wrapper.is-open .mega-trigger i,
.mega-wrapper:hover .mega-trigger i,
.mega-wrapper:focus-within .mega-trigger i {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(1080px, calc(100vw - 2rem));
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: 1px solid rgba(36, 25, 21, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(14px);
  transition: var(--transition);
}

.mega-wrapper:hover .mega-menu,
.mega-wrapper:focus-within .mega-menu,
.mega-wrapper.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(36, 25, 21, 0.08);
}

.mega-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.mega-menu-head h4 {
  margin-bottom: 8px;
  color: var(--coffee);
}

.mega-menu-head p {
  max-width: 620px;
  margin-bottom: 0;
}

.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 700;
  color: var(--ink);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mega-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(36, 25, 21, 0.06);
  border-radius: 20px;
  background: var(--cream);
  transition: var(--transition);
}

.mega-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mega-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 11, 0.16), rgba(20, 14, 11, 0.78));
  transition: var(--transition);
}

.mega-card:hover .mega-card-overlay {
  background: linear-gradient(180deg, rgba(20, 14, 11, 0.1), rgba(20, 14, 11, 0.86));
}

.mega-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
}

.mega-card-content h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mega-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mega-card-link i {
  transition: transform 0.25s ease;
}

.mega-card:hover .mega-card-link i {
  transform: translateX(4px);
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home {
  min-height: 100svh;
}

.hero-sub {
  min-height: clamp(400px, 54vh, 540px);
  padding-top: 0;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media {
  opacity: 0;
  transition: opacity .3s ease;
}

.hero-media.is-ready {
  opacity: 1;
}
.hero-overlay,
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.46), rgba(31, 20, 16, 0.76));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero-copy p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 24px;
  text-align: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges span {
  padding: 10px 16px;
  font-size: 0.94rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-sub-content {
  max-width: 760px;
  padding-top: calc(var(--header-offset) + 20px);
  padding-bottom: 72px;
  text-align: center;
}

.hero-sub-content h1,
.hero-sub-content p {
  color: var(--white);
}

/* =========================
   Layout / Utility Sections
========================= */

.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stats-grid div {
  padding: 10px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--green);
}

.stats-grid span {
  color: rgba(36, 25, 21, 0.7);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: 18px;
}

.feature-item i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: rgba(213, 157, 57, 0.18);
  border-radius: 50%;
}

.image-stack,
.service-visual {
  position: relative;
}

.image-stack img,
.service-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-logo img{
  object-fit: contain;
}

.floating-card,
.visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.floating-card p,
.visual-card p {
  margin-bottom: 0;
}

.parallax {
  position: relative;
  padding-block: 260px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.parallax .parallax-content {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}

.parallax .parallax-content h2,
.parallax .parallax-content p {
  color: var(--white);
}

.parallax-overlay.dark {
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.7), rgba(31, 20, 16, 0.82));
}

/* =========================
   Cards / Panels
========================= */

.seo-card,
.text-panel,
.diagram-card,
.chart-card,
.price-card,
.value-card,
.benefit-box,
.contact-form,
.founder-box {
  padding: 28px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form,
.seo-card,
.diagram-card,
.chart-card {
  border: 1px solid rgba(88, 45, 26, 0.08);
}

.intro-panel {
  text-align: center;
}

.chart-card {
  padding: 0;
}

.chart-card img {
  border-radius: 24px;
}

/* =========================
   Services
========================= */

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-grid.large-cards {
  gap: 28px;
}

.service-card-large {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 32px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.service-card-large:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card-large:hover .service-card-overlay {
  opacity: 0.92;
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 36px;
  color: var(--white);
  transition: transform 0.35s ease;
}

.service-card-large:hover .service-card-content {
  transform: translateY(-6px);
}

.service-card-content h3,
.service-card-content p,
.service-card-content li {
  color: var(--white);
}

.service-card-content h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.service-card-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-card-content li i {
  color: #ffd98f;
}

.service-short {
  max-width: 42ch;
  margin: 0 0 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  max-height: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card-large:hover .service-short {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
  }
}

.service-card-large .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
}

.service-card-large:hover .btn.btn-secondary {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* =========================
   Gallery / Projects
========================= */

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.gallery-strip::-webkit-scrollbar {
  height: 8px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(88, 45, 26, 0.25);
  border-radius: 999px;
}

.gallery-item {
  margin: 0;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  transition: var(--transition);
}

.gallery-item img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.split-grid--projects {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.project-photo {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.project-photo--featured {
  min-height: 420px;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-photo:hover img {
  transform: scale(1.04);
}

.project-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08) 45%, transparent 70%);
}

.project-photo__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(10, 18, 32, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* =========================
   Chips / Map / Reviews / CTA
========================= */

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.area-chips span {
  padding: 10px 14px;
  font-weight: 600;
  color: var(--green);
  background: var(--cream);
  border-radius: 999px;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reviews-carousel {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.review-slide {
  display: none;
  text-align: center;
}

.review-slide.is-active {
  display: block;
}

.review-stars {
  margin-bottom: 16px;
  color: #ffd47f;
}

.review-slide p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.review-slide strong {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.02rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn,
.carousel-dot {
  border: 0;
  transition: var(--transition);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.26);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 34px;
  text-align: center;
  color: var(--white);
  background: var(--green);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-banner-inner h2,
.cta-banner-inner p {
  color: var(--white);
}

.cta-banner-inner .eyebrow {
  color: var(--ink);
}

/* =========================
   Pricing / FAQ / Values / Benefits
========================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff8ea, var(--white));
}

.price-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(213, 157, 57, 0.18);
  border-radius: 999px;
}

.price-main {
  margin-bottom: 16px;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
}

.price-main small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone);
}

.price-ribbon {
  position: absolute;
  top: 18px;
  right: -55px;
  z-index: 2;
  padding: 10px 52px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transform: rotate(45deg);
}

.faq-list {
  max-width: 980px;
}

.faq-item {
  margin-bottom: 18px;
  padding: 0 24px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 0 24px;
}

.values-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card i,
.benefit-box i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--green);
  background: rgba(213, 157, 57, 0.16);
  border-radius: 18px;
}

.values-grid--large,
.benefits-grid--large {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.value-card--image,
.benefit-box--image {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  border-radius: 1.5rem;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.value-card--image {
  min-height: 380px;
  background-image:
    linear-gradient(to top, rgba(7, 12, 20, 0.82) 0%, rgba(7, 12, 20, 0.52) 38%, rgba(7, 12, 20, 0.18) 100%),
    var(--card-bg);
}

.benefit-box--image {
  min-height: 360px;
  background-image:
    linear-gradient(to top, rgba(7, 12, 20, 0.82) 0%, rgba(7, 12, 20, 0.52) 38%, rgba(7, 12, 20, 0.18) 100%),
    var(--card-bg);
}

.value-card--image::after,
.benefit-box--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.value-card__content,
.benefit-box__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem;
  color: var(--white);
}

.value-card--image h3,
.benefit-box--image h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
}

.value-card--image h3 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.benefit-box--image h3 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.value-card--image p,
.benefit-box--image p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.value-card--image p {
  max-width: 32ch;
  font-size: 1.02rem;
}

.benefit-box--image p {
  max-width: 34ch;
  font-size: 1.02rem;
}

.founder-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  min-width: 240px;
  margin-top: 24px;
}

.founder-box strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
}

.founder-box span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

/* =========================
   Contact / Forms
========================= */

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-list i {
  margin-top: 5px;
  color: var(--gold);
}

.success-box {
  margin: 24px 0;
  padding: 16px 18px;
  background: #eff8ef;
  border-left: 4px solid #4e944f;
  border-radius: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label,
.quote-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--green);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(88, 45, 26, 0.14);
  border-radius: 14px;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(213, 157, 57, 0.14);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--gold);
}

.check-list i {
  display: none;
}

.check-list.compact {
  gap: 10px;
}

/* =========================
   Diagrams / Charts / Process
========================= */

.process-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.diagram-card svg {
  width: 100%;
  height: auto;
  padding: 12px;
  background: #fffaf3;
  border-radius: 20px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 22px;
  min-height: 260px;
  margin: 30px 0 18px;
}

.bar-group {
  flex: 1;
  text-align: center;
}

.bar-wrap {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 220px;
  padding: 12px;
  background: var(--cream);
  border-radius: 18px;
}

.bar {
  width: 80px;
  background: var(--stone);
  border-radius: 18px 18px 0 0;
}

.bar.high {
  background: var(--green);
}

.bar.gold {
  background: var(--gold);
}

.chart-note {
  font-size: 0.95rem;
  color: rgba(36, 25, 21, 0.7);
}

/* =========================
   Footer
========================= */

.site-footer {
  padding: 30px 0 28px;
  color: rgba(255, 255, 255, 0.85);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-col {
  padding-top: 30px;
}

.footer-grid h4 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-grid ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: block;
  margin-top: 28px;
  margin-bottom: 0;
  padding-top: 22px;
  padding-bottom: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  color: var(--stone);
}

.site-footer .footer-contact,
.site-footer .footer-contact p,
.site-footer .footer-contact strong,
.site-footer .footer-contact span,
.site-footer .footer-contact a,
.site-footer .footer-contact i {
  color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer a:hover,
.footer-contact a:hover {
  color: #ffd98f !important;
}

/* =========================
   Modal
========================= */


.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 9, 0.68);
  backdrop-filter: blur(8px);
}

.quote-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  max-height: min(88dvh, 900px);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(20, 12, 8, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
  min-height: 0;
  flex: 1;
}

.quote-info {
  padding: 38px 34px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(160deg, var(--green), #4e944f);
  color: var(--white);
}

.quote-info .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.88);
}

.quote-info h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
}

.quote-info p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}

.quote-benefits {
  margin: 20px 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.quote-benefits li {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.95);
}

.quote-benefits i {
  display: none;
}

.quote-form {
  padding: 34px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: var(--white);
  min-height: 0;
}

.quote-form__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field > span {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-field small {
  color: rgba(36, 25, 21, 0.62);
  line-height: 1.5;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 25, 21, 0.12);
  background: #fcfbf9;
  color: var(--ink);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-form textarea {
  resize: vertical;
  min-height: 130px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(152, 187, 73, 0.8);
  box-shadow: 0 0 0 4px rgba(152, 187, 73, 0.14);
  background: var(--white);
}

.form-field--file input[type="file"] {
  padding: 0.8rem 0.9rem;
  background: #f8f6f2;
  cursor: pointer;
}

.quote-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quote-close:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.26);
}

.quote-close:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.cf-turnstile {
  margin: 10px 0 18px;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

/* Tablet + mobile */
@media (max-width: 920px) {
  .quote-modal {
    align-items: flex-start;
    justify-content: stretch;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .quote-dialog {
    width: 100%;
    max-width: 100%;
    min-height: 100dvh;
    max-height: none;
    height: auto;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }

  .quote-panel {
    display: block;
    min-height: 100dvh;
    overflow: visible;
  }

  .quote-info {
    padding: 24px 20px 18px;
  }

  .quote-form {
    padding: 20px;
    overflow: visible;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .quote-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .quote-form__actions .btn {
    width: 100%;
  }
}



.quote-form,
.form-field,
.form-grid {
  min-width: 0;
}
/* =========================
   Responsive
========================= */

@media (max-width: 756px) {
  .values-grid--large,
  .benefits-grid--large {
    grid-template-columns: 1fr;
  }

  .value-card--image {
    min-height: 320px;
  }

  .benefit-box--image {
    min-height: 320px;
  }
}

@media (max-width: 756px) {
  .footer-col {
    padding-top: 0;
  }

  .service-card-grid,
  .price-grid,
  .values-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split-grid .area-chips {
    justify-content: center;
    text-align: center;
  }

  .image-stack img,
  .service-visual img {
    height: 460px;
  }
}

@media (max-width: 756px) {
  .split-grid--projects {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .project-photo--featured {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 756px) {
  :root {
    --topbar-height: 0px;
    --navbar-height: 76px;
    --header-offset: var(--navbar-height);
  }

  .topbar {
    display: none;
  }

  .navbar {
    top: 0;
    background: transparent;
  }

  .navbar.scrolled,
  body.menu-open .navbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(36, 25, 21, 0.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: none; /* important */
    -webkit-backdrop-filter: none; /* important */
  }
  .nav-inner {
    grid-template-columns: 1fr auto 48px;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
    min-height: var(--navbar-height);
  }

  .brand {
    max-width: 100%;
    justify-content: center;
  }

  .logo-space {
    width: 112px;
    height: 64px;
    margin-inline: auto;
    border-radius: 14px;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transition: var(--transition);
  }

  .nav-toggle i {
    font-size: 1.1rem;
    color: var(--white);
  }

  .navbar.scrolled .nav-toggle,
  body.menu-open .nav-toggle {
    background: rgba(152, 187, 73, 0.14);
    border-color: rgba(152, 187, 73, 0.26);
    box-shadow: none;
  }

  .navbar.scrolled .nav-toggle i,
  body.menu-open .nav-toggle i {
    color: var(--green);
  }

  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem 1rem 2rem;
    overflow-y: auto;
    color: var(--ink);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 244, 239, 0.98) 100%);
    border-top: 1px solid rgba(36, 25, 21, 0.06);
    border-radius: 0;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(27, 17, 12, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    
  }

  .nav-menu > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 25, 21, 0.06);
    border-radius: 16px;
  }

  .nav-menu > a::after,
  .mega-link-row > a::after {
    display: none;
  }

  .nav-menu > a:hover,
  .nav-menu > a.active {
    color: var(--coffee);
    background: rgba(213, 157, 57, 0.08);
    border-color: rgba(213, 157, 57, 0.2);
    transform: translateX(2px);
  }

  .nav-item,
  .mega-wrapper {
    width: 100%;
  }

  .mega-link-row {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .mega-link-row > a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 25, 21, 0.06);
    border-radius: 16px;
  }

  .mega-link-row > a:hover,
  .mega-link-row > a.active {
    color: var(--coffee);
    background: rgba(213, 157, 57, 0.08);
    border-color: rgba(213, 157, 57, 0.2);
  }

  .mega-trigger {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(36, 25, 21, 0.08);
    border-radius: 14px;
    color: var(--coffee);
    background: rgba(255, 255, 255, 0.78);
  }

  .mega-trigger:hover {
    background: rgba(213, 157, 57, 0.08);
    border-color: rgba(213, 157, 57, 0.2);
    transform: translateY(-1px);
  }

  .mega-menu {
    position: static;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.9rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(36, 25, 21, 0.06);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: none;
  }

  .mega-wrapper.is-open .mega-menu {
    display: block;
  }

  .mega-wrapper:hover .mega-menu,
  .mega-wrapper:focus-within .mega-menu {
    transform: none;
  }

  .mega-menu-head {
    display: block;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .mega-kicker {
    color: var(--gold);
  }

  .mega-all-link {
    display: inline-flex;
    margin-top: 0.5rem;
    color: var(--coffee);
    text-shadow: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mega-card {
    min-height: 170px;
    border-radius: 18px;
  }

  .mega-card-content {
    padding: 16px;
  }

  .mega-card-content h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
  }

  .mega-card-link {
    color: #d7f08a;
  }

  .mobile-quote {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin-top: 0.85rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-copy p {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
  }

  .footer-logo img {
    display: block;
    margin-inline: auto;
  }

  .service-card-grid.large-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card-large {
    min-height: 420px;
    border-radius: 26px;
  }

  .service-short {
    display: none;
  }

  .service-card-content {
    padding: 26px;
  }

  .service-card-content h3 {
    font-size: 1.45rem;
  }


}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-home {
    padding-top: calc(var(--header-offset) + 38px);
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: center;
    margin-inline: 10px;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badges span {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stats-strip {
    margin-top: -24px;
  }

  .stats-grid,
  .service-card-grid,
  .price-grid,
  .values-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-logo,
  .logo-space,
  .footer-contact {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .gallery-strip {
    grid-auto-columns: 82%;
  }

  .image-stack img,
  .service-visual img {
    height: 360px;
  }

  .reviews-carousel,
  .intro-panel,
  .seo-card,
  .text-panel,
  .diagram-card,
  .chart-card,
  .price-card,
  .value-card,
  .benefit-box,
  .contact-form {
    padding: 22px;
  }

  .bar {
    width: 58px;
  }

  .parallax {
    background-attachment: scroll;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-photo,
  .project-photo--featured {
    min-height: 260px;
  }

  .value-card__content,
  .benefit-box__content {
    padding: 1.5rem;
  }

  .value-card--image {
    min-height: 280px;
    border-radius: 1.2rem;
  }

  .benefit-box--image {
    min-height: 270px;
    border-radius: 1.2rem;
  }

  .value-card--image h3 {
    font-size: 1.45rem;
  }

  .value-card--image p,
  .benefit-box--image p {
    font-size: 0.98rem;
  }
}

/* strong safety net */
html, body { overflow-x: hidden; }

@media (max-width: 756px) {
  /* keep the menu from causing horizontal scroll */
  .nav-menu { overflow-x: hidden; }

  /* remove sideways movement (this is the main culprit) */
  .nav-menu > a:hover,
  .nav-menu > a.active,
  .mega-link-row > a:hover,
  .mega-link-row > a.active {
    transform: none;
  }

  /* optional: keep a subtle effect without overflow */
  .nav-menu > a:hover,
  .mega-link-row > a:hover {
    transform: translateY(-1px);
  }
}



.service-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.service-layout--reverse .service-copy {
  order: 2;
}

.service-layout--reverse .service-gallery {
  order: 1;
}

.service-title-dark {
  color: var(--ink);
}

.service-copy-box {
  margin-top: 22px;
}

.service-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.service-gallery__main,
.service-gallery__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.service-gallery__main {
  min-height: 520px;
}

.service-gallery__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.service-gallery__thumb {
  min-height: 160px;
}

.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-gallery__main:hover img,
.service-gallery__thumb:hover img {
  transform: scale(1.04);
}

@media (max-width: 756px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-layout--reverse .service-copy,
  .service-layout--reverse .service-gallery {
    order: initial;
  }

  .service-copy {
    text-align: center;
  }

  .service-copy .check-list {
    text-align: left;
    max-width: 700px;
    margin-inline: auto;
  }

  .service-copy .button-row {
    justify-content: center;
  }

  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-gallery__main {
    min-height: 420px;
  }

  .service-gallery__side {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .service-gallery__thumb {
    min-height: 160px;
  }
}

@media (max-width: 640px) {
  .service-layout {
    gap: 24px;
  }

  .service-copy {
    text-align: left;
  }

  .service-copy .check-list {
    max-width: 100%;
  }

  .service-copy .button-row {
    justify-content: stretch;
  }

  .service-copy .button-row .btn {
    width: 100%;
  }

  .service-gallery {
    gap: 12px;
  }

  .service-gallery__main {
    min-height: 280px;
    border-radius: 20px;
  }

  .service-gallery__side {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-gallery__thumb {
    min-height: 120px;
    border-radius: 18px;
  }
}


.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__content {
  width: 100%;
  max-width: 860px;
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-wrap: wrap;
        align-items: center;
    text-align: center;
    justify-content: center;
  }
}

.legal-page {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page ul {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 1.25rem;
}


.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float i {
  font-size: 1.9rem;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.28);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float i {
    font-size: 1.75rem;
  }
}


.package-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(36, 25, 21, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.package-card--featured {
  background: linear-gradient(160deg, rgba(152, 187, 73, 0.12), rgba(255, 255, 255, 1));
  border: 1px solid rgba(152, 187, 73, 0.35);
  transform: translateY(-6px);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.package-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.package-price {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--coffee);
  line-height: 1;
}

.package-card p {
  margin-bottom: 1.5rem;
  color: var(--stone);
  line-height: 1.7;
}

.package-card .btn {
  margin-top: auto;
}

@media (max-width: 960px) {
  .package-row {
    grid-template-columns: 1fr;
  }

  .package-card--featured {
    transform: none;
  }
}


.balkon-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.5rem;
  align-items: center;
}

.balkon-section__copy h2 {
  margin-bottom: 0.75rem;
}

.balkon-section__copy p {
  margin: 0 0 0.75rem;
  color: var(--stone);
  line-height: 1.6;
}

.balkon-section__copy .btn {
  margin-top: 0.5rem;
}

.balkon-section__photo {
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  background: #ece7dd;
}

.balkon-section__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

@media (max-width: 860px) {
  .balkon-section {
    grid-template-columns: 1fr;
  }

  .balkon-section__photo {
    min-height: 200px;
  }

  .balkon-section__photo img {
    min-height: 200px;
  }
}