/* ===================================================
   MIKAMIHO — Dual Identity "Dvě Tváře" Design
   =================================================== */

/* ---------- Custom Properties ---------- */
:root {
  /* Garden */
  --garden-bg: #f4f1eb;
  --garden-dark: #2c3e2d;
  --garden-accent: #7a9e7e;
  --garden-light: #e8ede5;

  /* Construction */
  --build-bg: #1e2328;
  --build-light: #e8eaed;
  --build-accent: #c67b3c;
  --build-mid: #3a4249;

  /* Shared */
  --transition: #5c6b5e;
  --font-body: 'Nunito Sans', sans-serif;
  --font-garden: 'Cormorant Garamond', serif;
  --font-build: 'Archivo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--garden-bg);
}

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

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

ul { list-style: none; }

/* ---------- Scroll Reveal Base ---------- */
[data-anim="reveal"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-anim="reveal"].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================
   1. NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.is-scrolled {
  background: linear-gradient(90deg, var(--garden-dark) 50%, var(--build-bg) 50%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  position: relative;
}

.nav__logo img {
  height: 38px;
  width: auto;
  border-radius: 4px;
  transition: transform 0.3s;
}

.nav__logo:hover img {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links--garden {
  margin-right: auto;
}

.nav__links--build {
  margin-left: auto;
}

.nav__link {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--garden {
  font-family: var(--font-garden);
  font-style: italic;
  font-size: 1rem;
  color: var(--garden-light);
}

.nav__link--garden::after {
  background: var(--garden-accent);
}

.nav__link--garden:hover {
  color: var(--garden-accent);
}

.nav__link--build {
  font-family: var(--font-build);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--build-light);
}

.nav__link--build::after {
  background: var(--build-accent);
}

.nav__link--build:hover {
  color: var(--build-accent);
}

.nav__divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.nav.is-scrolled .nav__divider {
  opacity: 1;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--build-bg);
  padding: 0 24px 20px;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  padding: 12px 0;
  color: var(--build-light);
  font-size: 1rem;
  border-bottom: 1px solid var(--build-mid);
  transition: color 0.3s;
}

.nav__mobile-link:hover {
  color: var(--build-accent);
}


/* ==========================================================
   2. HERO — THE SPLIT
   ========================================================== */
.hero {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.hero__half {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

.hero__half:hover .hero__bg {
  transform: scale(1.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--garden {
  background: rgba(122, 158, 126, 0.4);
}

.hero__overlay--build {
  background: rgba(30, 35, 40, 0.5);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 520px;
}

.hero__content--garden {
  margin-right: auto;
}

.hero__content--build {
  margin-left: auto;
  text-align: right;
}

.hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero__title {
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero__title--garden {
  font-family: var(--font-garden);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.hero__title--build {
  font-family: var(--font-build);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  letter-spacing: 0.04em;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
  font-weight: 300;
}

.hero__btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__btn--garden {
  border-color: var(--garden-accent);
}

.hero__btn--garden:hover {
  background: var(--garden-accent);
  color: #fff;
}

.hero__btn--build {
  border-color: var(--build-accent);
}

.hero__btn--build:hover {
  background: var(--build-accent);
  color: #fff;
}

/* Divider line */
.hero__divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.hero__divider::before {
  top: 0;
  height: 40%;
  animation: dividerPulse 3s ease-in-out infinite;
}

.hero__divider::after {
  bottom: 0;
  height: 40%;
  animation: dividerPulse 3s ease-in-out infinite 1.5s;
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero__divider-mark {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--transition);
  font-family: var(--font-build);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* ==========================================================
   3. GARDEN SERVICES
   ========================================================== */
.section {
  position: relative;
  overflow: hidden;
}

.section--garden {
  background: var(--garden-bg);
  padding: 100px 0;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

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

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

.section__title {
  margin-bottom: 8px;
}

.section__title--garden {
  font-family: var(--font-garden);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--garden-dark);
}

.section__title--build {
  font-family: var(--font-build);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: 0.05em;
  color: var(--build-light);
}

.section__title--neutral {
  font-family: var(--font-build);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2a2a2a;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--garden-accent);
  font-weight: 300;
  margin-bottom: 48px;
}

.section__subtitle--light {
  color: rgba(232, 234, 237, 0.6);
}

.section__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.section__columns--reverse {
  direction: rtl;
}

.section__columns--reverse > * {
  direction: ltr;
}

.section__text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4a4a4a;
}

.section__text--light {
  color: rgba(232, 234, 237, 0.8);
}

/* Service lists */
.service-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-list--garden li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--garden-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.49 4.49 0 0 0 8 20c4 0 8.68-3.2 9-11h3L17 5l-3 4h3a8.74 8.74 0 0 1-3 5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.49 4.49 0 0 0 8 20c4 0 8.68-3.2 9-11h3L17 5l-3 4h3a8.74 8.74 0 0 1-3 5z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.service-list--build li {
  color: var(--build-light);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.service-list--build li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--build-accent);
  background: transparent;
}

/* Photos */
.section__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.photo--garden {
  border-radius: 5px;
}

.photo--build {
  border-radius: 0;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo:hover img {
  transform: scale(1.06);
}

/* Garden decorations */
.garden-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.garden-deco--1 {
  width: 400px;
  height: 400px;
  background: var(--garden-accent);
  top: -100px;
  right: -100px;
}

.garden-deco--2 {
  width: 250px;
  height: 250px;
  background: var(--garden-dark);
  bottom: -60px;
  left: -60px;
}


/* ==========================================================
   4. CONSTRUCTION SERVICES
   ========================================================== */
.section--build {
  background: var(--build-bg);
  padding: 100px 0;
}

/* Build decorations */
.build-deco {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

.build-deco--1 {
  width: 300px;
  height: 300px;
  border: 3px solid var(--build-accent);
  top: 60px;
  left: -80px;
  transform: rotate(15deg);
}

.build-deco--2 {
  width: 200px;
  height: 200px;
  border: 3px solid var(--build-light);
  bottom: 40px;
  right: -40px;
  transform: rotate(-25deg);
}


/* ==========================================================
   5. PROJECTS
   ========================================================== */
.section--projects {
  background: #f5f5f5;
  padding: 100px 0;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 22px;
  border: 2px solid #ccc;
  background: transparent;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #555;
}

.filter-tab:hover {
  border-color: #999;
  color: #222;
}

.filter-tab--active,
.filter-tab--active:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.filter-tab--garden.filter-tab--active,
.filter-tab--garden.filter-tab--active:hover {
  background: var(--garden-accent);
  border-color: var(--garden-accent);
  color: #fff;
}

.filter-tab--build.filter-tab--active,
.filter-tab--build.filter-tab--active:hover {
  background: var(--build-accent);
  border-color: var(--build-accent);
  color: #fff;
}

.filter-tab--neutral.filter-tab--active,
.filter-tab--neutral.filter-tab--active:hover {
  background: var(--transition);
  border-color: var(--transition);
  color: #fff;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, opacity 0.4s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.project-card.is-hidden {
  display: none;
}

.project-card--garden {
  border-left: 3px solid var(--garden-accent);
  border-radius: 0 0 8px 8px;
}

.project-card--build {
  border-top: 3px solid var(--build-accent);
  border-radius: 0;
}

.project-card--public {
  border-left: 3px solid var(--transition);
  border-radius: 0 0 4px 4px;
}

.project-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.project-card:hover .project-card__img img {
  transform: scale(1.08);
}

.project-card__body {
  padding: 18px 16px;
}

.project-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.project-card__cat--garden {
  background: var(--garden-light);
  color: var(--garden-dark);
}

.project-card__cat--build {
  background: var(--build-mid);
  color: var(--build-light);
}

.project-card__cat--public {
  background: #e8e8e8;
  color: #555;
}

.project-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.project-card__desc {
  font-size: 0.85rem;
  color: #888;
  font-weight: 300;
}


/* ==========================================================
   6. GALLERY — SPLIT SCROLL
   ========================================================== */
.gallery {
  padding: 0;
  background: linear-gradient(180deg, var(--garden-light) 0%, #f5f5f5 50%, var(--build-mid) 100%);
  overflow: hidden;
}

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

.gallery__strip--garden::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(122, 158, 126, 0.1);
  pointer-events: none;
  z-index: 2;
}

.gallery__strip--build::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 35, 40, 0.15);
  pointer-events: none;
  z-index: 2;
}

.gallery__track {
  display: flex;
  width: max-content;
}

.gallery__track--left {
  animation: scrollLeft 40s linear infinite;
}

.gallery__track--right {
  animation: scrollRight 40s linear infinite;
}

.gallery__strip:hover .gallery__track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gallery__item {
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  margin: 0 6px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item--garden {
  border-radius: 4px;
}

.gallery__item--build {
  border-radius: 0;
}

.gallery__title-row {
  text-align: center;
  padding: 40px 24px;
}

.gallery__title {
  font-family: var(--font-garden);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--garden-dark);
  font-weight: 600;
}


/* ==========================================================
   7. ABOUT
   ========================================================== */
.about {
  position: relative;
  padding: 100px 24px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__split {
  position: absolute;
  inset: 0;
  display: flex;
}

.about__half {
  flex: 1;
}

.about__half--garden {
  background: var(--garden-bg);
}

.about__half--build {
  background: var(--build-bg);
}

.about__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  background: #fff;
  padding: 56px 48px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about__title {
  font-family: var(--font-build);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--garden-dark);
  margin-bottom: 24px;
}

.about__text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__vision {
  font-weight: 600;
  color: var(--garden-dark) !important;
  font-style: italic;
  font-family: var(--font-garden);
  font-size: 1.1rem !important;
  margin-top: 8px;
}


/* ==========================================================
   8. CONTACT
   ========================================================== */
.contact {
  position: relative;
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact__half {
  padding: 80px 48px;
}

.contact__half--garden {
  background: var(--garden-bg);
}

.contact__half--build {
  background: var(--build-bg);
}

.contact__title {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.contact__title--garden {
  font-family: var(--font-garden);
  font-style: italic;
  font-weight: 600;
  color: var(--garden-dark);
}

.contact__title--build {
  font-family: var(--font-build);
  font-weight: 700;
  color: var(--build-light);
}

.contact__info {
  margin-bottom: 32px;
}

.contact__row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact__icon {
  color: var(--garden-accent);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.contact__row strong {
  display: block;
  font-size: 0.92rem;
  color: var(--garden-dark);
  margin-bottom: 2px;
}

.contact__row p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.contact__row a {
  color: var(--garden-accent);
  transition: color 0.3s;
}

.contact__row a:hover {
  color: var(--garden-dark);
}

.contact__free {
  font-family: var(--font-garden);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--garden-accent);
  font-weight: 600;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Form */
.contact__form {
  max-width: 440px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(232, 234, 237, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--build-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--build-light);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 234, 237, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--build-accent);
  box-shadow: 0 0 0 3px rgba(198, 123, 60, 0.15);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group select option {
  background: var(--build-mid);
  color: var(--build-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e74c3c;
}

.form-group.has-error .form-error {
  display: block;
}

.contact__submit {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-build);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--build-accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact__submit:hover {
  background: #d48844;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 123, 60, 0.35);
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(122, 158, 126, 0.15);
  border: 1px solid var(--garden-accent);
  border-radius: 4px;
  color: var(--garden-accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.is-visible {
  display: block;
}


/* ==========================================================
   9. FOOTER
   ========================================================== */
.footer {
  background: linear-gradient(90deg, var(--garden-dark) 0%, var(--build-bg) 100%);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer__inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer__logo {
  border-radius: 4px;
  margin-bottom: 24px;
  filter: brightness(1.1);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav.is-scrolled {
    background: var(--build-bg);
  }

  .nav__divider {
    display: none;
  }

  /* Hero */
  .hero {
    flex-direction: column;
  }

  .hero__half {
    min-height: 50vh;
  }

  .hero__content {
    padding: 40px 28px;
  }

  .hero__content--build {
    text-align: left;
    margin-left: 0;
  }

  .hero__divider {
    top: auto;
    left: 0;
    bottom: 50%;
    width: 100%;
    height: 2px;
    flex-direction: row;
    transform: none;
  }

  /* Sections */
  .section__columns,
  .section__columns--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }

  .section__header--right {
    text-align: left;
  }

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

  /* Projects */
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Gallery */
  .gallery__item {
    width: 240px;
    height: 170px;
  }

  /* About */
  .about__split {
    flex-direction: column;
  }

  .about__content {
    padding: 36px 28px;
    margin: 0 16px;
  }

  /* Contact */
  .contact__split {
    grid-template-columns: 1fr;
  }

  .contact__half {
    padding: 56px 28px;
  }

  /* Footer */
  .footer__links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero__title--garden {
    font-size: 2rem;
  }

  .hero__title--build {
    font-size: 1.8rem;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .gallery__item {
    width: 200px;
    height: 140px;
  }
}
