/* ═══════════════════════════════════════════════════════════
   Natural Abundance — Main Stylesheet
   Brand: Edible Landscaping & Farm Management
   Big Island, Hawaiʻi
   ═══════════════════════════════════════════════════════════ */

/* ── Font Faces ─────────────────────────────────────────── */
@font-face {
  font-family: 'Halton';
  src: url('../fonts/Halton-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Halton';
  src: url('../fonts/Halton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Halton';
  src: url('../fonts/Halton-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Halton';
  src: url('../fonts/Halton-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Custom Properties (Brand Tokens) ───────────────── */
:root {
  /* Primary */
  --slate-teal: #5F7F7E;
  --golden-amber: #E8A93B;
  --forest-green: #2D5A3D;

  /* Supporting */
  --cream: #F5F0E8;
  --warm-sand: #EDE8DD;
  --near-black: #1A1A1A;
  --white: #FFFFFF;

  /* Accent */
  --lime: #B5C944;

  /* Derived */
  --golden-amber-hover: #D49A2F;
  --forest-green-light: rgba(45, 90, 61, 0.08);
  --teal-light: rgba(95, 127, 126, 0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

  /* Typography */
  --font-heading: 'Halton', 'Raleway', 'Helvetica Neue', sans-serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-ui: 'Halton', 'Raleway', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --section-pad-mobile: 60px;
  --content-max: 1100px;
  --content-narrow: 720px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--near-black);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--golden-amber);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--golden-amber-hover);
}

/* ── Utility Classes ────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.accent-line {
  width: 50px;
  height: 2.5px;
  background: var(--golden-amber);
  margin: 0 auto 28px;
  border: none;
}
.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 2.5px solid var(--golden-amber);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img {
  height: 50px;
  width: auto;
  max-width: 220px;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 1;
  min-width: 0;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-teal);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--golden-amber);
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--golden-amber);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-green);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO BANNER ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px; /* nav height */
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 40, 30, 0.45) 0%,
    rgba(20, 40, 30, 0.55) 60%,
    rgba(20, 40, 30, 0.7) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 800px;
}
.hero__descriptor {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--golden-amber);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #E8DBC2;
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn--primary {
  background: var(--golden-amber);
  color: var(--near-black);
  border-color: var(--golden-amber);
}
.btn--primary:hover {
  background: var(--golden-amber-hover);
  border-color: var(--golden-amber-hover);
  color: var(--near-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--forest-green);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn--outline-dark:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── INTRODUCTION ───────────────────────────────────────── */
.intro {
  background: var(--cream);
  padding: var(--section-pad) 24px;
  text-align: center;
}
.intro p {
  color: var(--slate-teal);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.intro p:last-of-type {
  margin-bottom: 28px;
}
.intro__link {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--golden-amber);
  text-decoration: none;
  transition: all 0.3s ease;
}
.intro__link:hover {
  color: var(--golden-amber-hover);
  letter-spacing: 0.02em;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--white);
  padding: var(--section-pad) 24px;
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__accent {
  width: 40px;
  height: 3px;
  background: var(--golden-amber);
  margin-bottom: 18px;
  border-radius: 2px;
}
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest-green);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card:nth-child(even) .service-card__title {
  color: var(--slate-teal);
}
.service-card__desc {
  font-size: 0.95rem;
  color: var(--near-black);
  line-height: 1.65;
}

/* ── TESTIMONIAL ────────────────────────────────────────── */
.testimonial {
  background: var(--slate-teal);
  padding: var(--section-pad) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial__quote-mark {
  position: absolute;
  top: 30px;
  left: 10%;
  font-family: Georgia, serif;
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial__text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.testimonial .accent-line {
  background: var(--golden-amber);
  margin-bottom: 18px;
}
.testimonial__author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  color: var(--golden-amber);
  position: relative;
  z-index: 1;
}

/* ── OUR APPROACH ───────────────────────────────────────── */
.approach {
  background: var(--warm-sand);
  padding: var(--section-pad) 24px;
  text-align: center;
}
.approach__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pillar {
  text-align: center;
}
.pillar__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pillar__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--golden-amber);
}
.pillar__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-green);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pillar__desc {
  font-size: 0.95rem;
  color: var(--near-black);
  line-height: 1.65;
}

/* ── BOTTOM CTA ─────────────────────────────────────────── */
.cta {
  background: var(--forest-green);
  padding: var(--section-pad) 24px;
  text-align: center;
}
.cta__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 14px;
}
.cta__subtext {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #B8CDB8;
  margin-bottom: 6px;
  line-height: 1.6;
}
.cta__subtext:last-of-type {
  margin-bottom: 36px;
}
.cta .btn--primary:hover {
  background: var(--white);
  color: var(--forest-green);
  border-color: var(--white);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--near-black);
  padding: 60px 24px 30px;
}
.footer__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid #333;
}
.footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer__brand p {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer__heading {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--golden-amber);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 10px;
}
.footer__links a {
  color: #AAA;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer__links a:hover {
  color: var(--golden-amber);
}
.footer__contact p {
  color: #AAA;
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer__contact a {
  color: #AAA;
}
.footer__contact a:hover {
  color: var(--golden-amber);
}
.footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
}
.footer__bottom p {
  color: #666;
  font-size: 0.78rem;
}

/* ── SCROLL ANIMATIONS (disabled) ────────────────────────── */

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .approach__pillars {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 40px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }
  body {
    font-size: 16px;
  }

  /* Mobile nav */
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 2.5px solid var(--golden-amber);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav__links li:last-child {
    border-bottom: none;
  }
  .nav__toggle {
    display: block;
  }

  /* Hero responsive */
  .hero {
    min-height: 75vh;
  }
  .hero__title {
    font-size: 2.4rem;
  }
  .hero__descriptor {
    font-size: 0.72rem;
  }
  .hero__tagline {
    font-size: 1rem;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Section headings */
  .section-heading {
    font-size: 1.6rem;
  }
  .cta__heading {
    font-size: 1.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE STYLES
   About · Services · Projects · Contact
   ═══════════════════════════════════════════════════════════ */

/* ── Nav Logo Text ──────────────────────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest-green);
  letter-spacing: -0.01em;
}
.nav__logo-descriptor {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--golden-amber);
  letter-spacing: 0.04em;
}

/* ── Hamburger Button (nav__hamburger) ──────────────────── */
/* HTML uses .nav__hamburger; older CSS used .nav__toggle — both covered */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-green);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 900px) {
  .nav__hamburger { display: block; }
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  margin-top: 72px; /* nav height */
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--forest-green);
}
.page-hero--overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 35, 22, 0.5) 0%,
    rgba(15, 35, 22, 0.65) 100%
  );
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 760px;
}
.page-hero__descriptor {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--golden-amber);
  display: block;
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.88);
  line-height: 1.65;
  font-style: italic;
}
@media (max-width: 768px) {
  .page-hero { min-height: 260px; }
  .page-hero__title { font-size: 2.1rem; }
  .page-hero__subtitle { font-size: 0.95rem; }
}

/* ── Generic Section System ─────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--sand   { background: var(--warm-sand); }
.section--teal   { background: var(--slate-teal); }
.section--green  { background: var(--forest-green); }

.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section--teal .section__header h2,
.section--green .section__header h2 {
  color: var(--white);
}
.section__header p {
  font-size: 1rem;
  color: var(--near-black);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.section--teal .section__header p,
.section--green .section__header p {
  color: rgba(245, 240, 232, 0.85);
}

/* Footer h4 (used without class) */
.footer h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--golden-amber);
  margin-bottom: 16px;
}

/* ── Accent line left-aligned variant ──────────────────── */
.accent-line--left {
  margin-left: 0;
}

/* ── About Page ─────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.about-intro__image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.about-intro__text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--forest-green);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.about-intro__text p {
  margin-bottom: 18px;
  color: var(--near-black);
  line-height: 1.8;
}
.about-intro__text p:last-child {
  margin-bottom: 0;
}
.about-philosophy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-philosophy__card {
  padding: 32px 24px;
  background: var(--cream);
  border-radius: 6px;
  border-top: 3px solid var(--golden-amber);
}
.about-philosophy__bullet {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--golden-amber);
  border-radius: 2px;
  margin-bottom: 14px;
}
.about-philosophy__card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-green);
  margin-bottom: 10px;
}
.about-philosophy__card p {
  font-size: 0.93rem;
  color: var(--near-black);
  line-height: 1.7;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-philosophy {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .about-gallery {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonial Carousel ───────────────────────────────── */
.testimonial-carousel {
  position: relative;
  text-align: center;
  padding: var(--section-pad) 24px;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-carousel__track {
  position: relative;
  min-height: 180px;
}
.testimonial-carousel__slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.testimonial-carousel__slide.active {
  display: block;
  opacity: 1;
}
.testimonial-carousel__text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.85;
  margin-bottom: 20px;
}
.testimonial-carousel__author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--golden-amber);
  letter-spacing: 0.05em;
}
.testimonial-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.testimonial-carousel__nav:hover {
  background: rgba(255,255,255,0.25);
}
.testimonial-carousel__nav--prev { left: 0; }
.testimonial-carousel__nav--next { right: 0; }
.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonial-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}
.testimonial-carousel__dot.active {
  background: var(--golden-amber);
}

/* ── CTA Block ──────────────────────────────────────────── */
.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-block h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cta-block p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Services Page ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest-green);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--near-black);
  line-height: 1.7;
}
.design-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.design-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.design-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.design-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.design-gallery__item:hover img {
  transform: scale(1.04);
}
.design-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: rgba(26, 26, 26, 0.72);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-top: 12px;
  font-style: italic;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 3rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .design-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .design-gallery { grid-template-columns: 1fr; }
}

/* ── Projects Page ──────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.project-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.project-card__body {
  padding: 24px 20px;
}
.project-card__tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--golden-amber);
  display: block;
  margin-bottom: 8px;
}
.project-card__body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest-green);
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-card__body p {
  font-size: 0.92rem;
  color: var(--near-black);
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-card__link {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-green);
  text-decoration: none;
  border-bottom: 1.5px solid var(--golden-amber);
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.project-card__link:hover {
  color: var(--golden-amber);
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--near-black);
  background: var(--white);
  border: 1.5px solid rgba(45, 90, 61, 0.25);
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D5A3D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-info {
  padding-top: 8px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest-green);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-info__icon {
  font-size: 0.5rem;
  color: var(--golden-amber);
  margin-top: 8px;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--golden-amber);
  border-radius: 50%;
  display: inline-block;
}
.contact-info__item p {
  font-size: 0.98rem;
  color: var(--near-black);
  line-height: 1.5;
  margin: 0;
}
.contact-info__item a {
  color: var(--near-black);
  font-size: 0.98rem;
}
.contact-info__item a:hover {
  color: var(--golden-amber);
}
.contact-photo {
  margin-top: 32px;
}
.contact-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
