/* =====================================================================
   BSB Innovations — Static HTML site
   Single-file stylesheet. No build step required.
   ===================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
  line-height: 1.15;
}

::selection {
  background: var(--emerald);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 2. Design tokens ---------- */
:root {
  --emerald: #0b5d4b;
  --forest: #0c3f31;
  --bottle: #014421;
  --gold: #c8a96b;
  --gold-soft: #e2cf9d;
  --cream: #f7f6f2;
  --ink: #1f1f1f;
  --ink-muted: #404040;
  --line: #e6e3da;
  --white: #ffffff;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

  --text-display: clamp(2.4rem, 4vw + 1rem, 4.5rem);
  --text-h1: clamp(2rem, 2.5vw + 1rem, 3.25rem);
  --text-h2: clamp(1.625rem, 1.5vw + 1rem, 2.25rem);
  --text-h3: clamp(1.25rem, 0.75vw + 1rem, 1.625rem);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --shadow-soft: 0 1px 2px rgba(11, 93, 75, 0.04), 0 8px 24px rgba(11, 93, 75, 0.06);
  --shadow-elevated: 0 4px 8px rgba(11, 93, 75, 0.06), 0 24px 48px rgba(11, 93, 75, 0.1);

  --container: 1200px;
  --header-h: 5rem;
}

/* ---------- 3. Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

main {
  flex: 1;
}

.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section-tight {
  padding-block: clamp(2rem, 4vw, 4rem);
}

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

.section-dark {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.muted {
  color: var(--ink-muted);
}

.section-heading {
  max-width: 48rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: var(--text-h2);
  margin-top: 0.75rem;
}

.section-heading p {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  transition: all 200ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--forest);
  box-shadow: var(--shadow-elevated);
}

.btn-accent {
  background: var(--gold);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

.btn-accent:hover {
  background: var(--gold-soft);
}

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

.btn-outline:hover {
  background: var(--emerald);
  color: #fff;
}

.btn-ghost {
  color: var(--forest);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(11, 93, 75, 0.08);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-sm {
  width: 0.85rem;
  height: 0.85rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 3rem;
  }
}

.main-nav {
  display: none;
}

@media (min-width: 960px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 2.5rem;
  padding-inline: 1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  transition: background 200ms ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(11, 93, 75, 0.08);
}

.nav-link.active {
  color: var(--forest);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-trigger .chevron {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 200ms ease;
}

.has-dropdown[data-open="true"] .chevron {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(620px, 90vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.has-dropdown[data-open="true"] .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}

.dropdown-feature {
  grid-column: span 2;
  display: block;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--emerald);
  color: #fff;
  transition: background 200ms ease;
}

.dropdown-feature:hover {
  background: var(--forest);
}

.dropdown-feature .eyebrow {
  color: var(--gold);
}

.dropdown-feature h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.dropdown-feature p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.dropdown-item {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  transition: background 180ms ease;
}

.dropdown-item:hover {
  background: var(--cream);
}

.dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  color: var(--forest);
  transition: background 200ms ease;
}

.mobile-toggle:hover {
  background: rgba(11, 93, 75, 0.1);
}

@media (min-width: 960px) {
  .mobile-toggle {
    display: none;
  }
}

.desktop-only {
  display: none;
}

@media (min-width: 960px) {
  .desktop-only {
    display: inline-flex;
  }
}

/* ---------- 6. Mobile drawer ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.mobile-drawer[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--cream);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-drawer[data-open="true"] .mobile-drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

.drawer-head h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.5rem;
}

.drawer-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--forest);
}

.drawer-link:hover {
  background: rgba(11, 93, 75, 0.08);
}

.drawer-sub {
  margin-top: 0.25rem;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--line);
}

.drawer-sub .drawer-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-muted);
  padding: 0.55rem 0.75rem;
}

.drawer-sub .drawer-link:hover {
  color: var(--forest);
}

.drawer-foot {
  padding: 1.25rem;
  border-top: 1px solid var(--line);
}

.drawer-foot .btn {
  width: 100%;
}

.drawer-foot .contact-quick {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.drawer-foot .contact-quick a {
  display: block;
  padding: 0.15rem 0;
}

.drawer-foot .contact-quick a:hover {
  color: var(--forest);
}

details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--forest);
}

details > summary:hover {
  background: rgba(11, 93, 75, 0.08);
}

details > summary::-webkit-details-marker {
  display: none;
}

details > summary .chevron {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 180ms ease;
}

details[open] > summary .chevron {
  transform: rotate(90deg);
}

/* ---------- 7. Hero (with full-width slideshow background) ---------- */
.hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 55vh;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      135deg,
      rgba(1, 68, 33, 0.92) 0%,
      rgba(14, 77, 60, 0.85) 45%,
      rgba(11, 93, 75, 0.7) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 40%);
}

.hero-slide-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-slide-nav button {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 200ms ease;
}

.hero-slide-nav button.active {
  background: var(--gold);
  width: 1.75rem;
}

.hero-slide-nav button:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Hero text — readable on dark slideshow */
.hero .hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(200, 169, 107, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero .hero-title,
.hero .hero-desc {
  color: #fff;
}

.hero .hero-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero .hero-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hero .hero-accent {
  color: var(--gold);
}

.hero .hero-accent::after {
  background: rgba(200, 169, 107, 0.35);
}

.hero .hero-stat .stat-value {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero .hero-stat .stat-value {
    font-size: 2.5rem;
  }
}

.hero .hero-stat .stat-label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero .hero-stats {
  background: rgba(1, 68, 33, 0.75);
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
  max-width: 32rem;
}

/* ---------- 7b. Page banner (inner pages: about, services, etc.) ---------- */
.page-banner {
  position: relative;
  min-height: 320px;
  padding: 5rem 0 3rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-banner {
    min-height: 380px;
    padding: 7rem 0 4rem;
  }
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 68, 33, 0.7) 0%,
    rgba(14, 77, 60, 0.85) 100%
  );
}

.page-banner > .container {
  position: relative;
  z-index: 1;
}

.page-banner h1,
.page-banner p {
  color: #fff;
}

.page-banner h1 {
  margin-top: 0.75rem;
  font-size: var(--text-h1);
  max-width: 48rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 40rem;
  line-height: 1.7;
}

.page-banner .eyebrow {
  color: var(--gold);
}

.page-banner .breadcrumbs {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.page-banner .breadcrumbs a:hover {
  color: var(--gold);
}

.page-banner .breadcrumbs .current {
  color: var(--gold);
}

.page-banner .sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- 7e. Smaller page banner variant ---------- */
.page-banner-sm {
  min-height: 200px;
  padding: 3.5rem 0 1.75rem;
}

@media (min-width: 768px) {
  .page-banner-sm {
    min-height: 240px;
    padding: 5rem 0 2.5rem;
  }
}

.page-banner-sm h1 {
  font-size: clamp(1.75rem, 1.5vw + 1rem, 2.5rem);
  margin-top: 0.5rem;
}

.page-banner-sm p {
  font-size: 0.95rem;
  margin-top: 0.6rem;
}

/* ---------- 7f. Google Map embed ---------- */
.map-section {
  padding-block: 0;
}

.map-section-full {
  padding: 0;
  margin: 0;
}

.map-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

/* Full-width edge-to-edge variant */
.map-section-full .map-wrap {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.map-frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (min-width: 768px) {
  .map-frame {
    height: 440px;
  }
}

.map-section-full .map-frame {
  height: 380px;
}

@media (min-width: 768px) {
  .map-section-full .map-frame {
    height: 460px;
  }
}

.map-maximize-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--white);
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest);
  transition: all 200ms ease;
}

.map-maximize-btn:hover {
  background: var(--emerald);
  color: #fff;
  transform: translateY(-1px);
}

.map-maximize-btn .icon {
  width: 0.9rem;
  height: 0.9rem;
}

/* Map fullscreen modal */
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 26, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.map-modal[data-open="true"] {
  display: flex;
}

.map-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  max-height: 92vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.map-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
  transition: background 200ms ease;
}

.map-modal-close:hover {
  background: var(--gold);
}

/* ---------- 7d. Portfolio case-study image placeholder ---------- */
.case-image {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
  margin-bottom: 1.25rem;
}

.case-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-image-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
}

.case-image-label .eyebrow {
  color: var(--gold);
}

.case-image-label .dims {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

.case-image-label .note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  max-width: 16rem;
  line-height: 1.5;
}

.case-image-label .corner-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.4;
}

/* ---------- 7h. Home services layout: grid (left) + tall image carousel (right) ---------- */
.services-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 980px) {
  .services-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  }
}

.services-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tall image carousel (right side) */
.services-side-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
  min-height: 380px;
}

@media (max-width: 979.98px) {
  .services-side-carousel {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

.side-carousel-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.side-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
  display: block;
  text-decoration: none;
  color: #fff;
  pointer-events: none;
}

.side-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.side-carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-carousel-title {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(11, 26, 22, 0.9) 0%, rgba(11, 26, 22, 0.5) 60%, transparent 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.side-carousel-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  z-index: 2;
}

.side-carousel-dots button {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: rgba(11, 93, 75, 0.25);
  transition: all 220ms ease;
  cursor: pointer;
}

.side-carousel-dots button:hover {
  background: rgba(11, 93, 75, 0.5);
}

.side-carousel-dots button.active {
  background: var(--emerald);
  width: 1.5rem;
}

/* ---------- 7g. Services carousel (home page) ---------- */
.services-carousel {
  position: relative;
  margin-top: 3rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.carousel-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}

@media (min-width: 768px) {
  .carousel-slide {
    grid-template-columns: 1fr 1fr;
  }
}

.carousel-slide-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
}

@media (min-width: 768px) {
  .carousel-slide-image {
    aspect-ratio: auto;
    min-height: 380px;
  }
}

.carousel-slide-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .carousel-slide-content {
    padding: 2.5rem 3rem;
  }
}

.carousel-slide-content .card-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.carousel-slide-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.15rem);
  color: var(--forest);
  margin-top: 0.75rem;
  line-height: 1.15;
}

.carousel-slide-content .tagline {
  margin-top: 0.5rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.carousel-slide-content .body {
  margin-top: 1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.carousel-slide-content .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--white);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}

.carousel-arrow:hover {
  background: var(--emerald);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .carousel-arrow {
    width: 3rem;
    height: 3rem;
  }
  .carousel-prev {
    left: 1.5rem;
  }
  .carousel-next {
    right: 1.5rem;
  }
}

.carousel-arrow .icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.carousel-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: rgba(11, 93, 75, 0.25);
  transition: all 250ms ease;
  cursor: pointer;
}

.carousel-dots button:hover {
  background: rgba(11, 93, 75, 0.5);
}

.carousel-dots button.active {
  background: var(--emerald);
  width: 1.75rem;
}

/* ---------- 7i. Founder section (About page) ---------- */
.founder-section {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .founder-section {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }
}

.founder-photo {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}

.founder-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--forest);
  box-shadow: var(--shadow-elevated);
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
}

.founder-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-frame .photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

.founder-caption {
  margin-top: 1.25rem;
  text-align: center;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.founder-title {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-bio p {
  color: var(--ink);
  line-height: 1.75;
  font-size: 1rem;
}

.founder-bio p:first-of-type {
  font-size: 1.05rem;
}

/* ---------- 7j. Trusted brands strip ---------- */
.brands-strip {
  text-align: center;
}

.brands-heading {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--forest);
  text-transform: uppercase;
}

.brands-heading::before,
.brands-heading::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.brands-row {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  align-items: center;
  justify-items: center;
}

@media (min-width: 600px) {
  .brands-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 900px) {
  .brands-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.brand-logo {
  position: relative;
  max-width: 12rem;
  width: 100%;
}

.brand-logo img {
  max-width: 100%;
  max-height: 3.5rem;
  object-fit: contain;
  filter: grayscale(0.1);
  opacity: 0.92;
  transition: all 250ms ease;
}

.brand-logo-lg img {
  max-height: 5rem;
}

.brand-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.brand-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: var(--cream);
  min-height: 3.5rem;
}

/* ---------- 7k. Highlight band (About page) ---------- */
.highlight-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: #fff;
  padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .highlight-band {
    padding: 2rem 2.5rem;
  }
}

.highlight-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.08), transparent 60%);
  pointer-events: none;
}

.highlight-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 700px) {
  .highlight-band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-item + .highlight-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

@media (min-width: 700px) {
  .highlight-item + .highlight-item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0;
    padding-left: 1.5rem;
  }
}

.highlight-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(200, 169, 107, 0.15);
  color: var(--gold);
}

.highlight-icon .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.highlight-text {
  flex: 1;
}

.highlight-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.highlight-label {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- 7c. Industries grid ---------- */
.industries-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all 200ms ease;
}

.industry-tile:hover {
  border-color: rgba(11, 93, 75, 0.3);
  background: rgba(11, 93, 75, 0.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.industry-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(11, 93, 75, 0.08);
  color: var(--emerald);
}

.industry-icon .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.industry-name {
  font-weight: 500;
  color: var(--forest);
  font-size: 1rem;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(200, 169, 107, 0.4);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: var(--text-display);
  margin-top: 1.25rem;
}

.hero-accent {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--emerald);
}

.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15em;
  height: 0.5em;
  background: rgba(200, 169, 107, 0.4);
  border-radius: 2px;
  z-index: -1;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  max-width: 28rem;
}

.hero-stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--forest);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
}

.hero-visual-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.hero-visual-card .eyebrow {
  color: var(--gold);
}

.hero-visual-card .visual-brand {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-top: 1.5rem;
}

.hero-visual-card .visual-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual-card .visual-rule {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.hero-visual-card .visual-note {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.hero-visual-back-1,
.hero-visual-back-2 {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
}

.hero-visual-back-1 {
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
  transform: rotate(3deg);
  box-shadow: var(--shadow-elevated);
}

.hero-visual-back-2 {
  background: var(--forest);
  border: 1px solid rgba(200, 169, 107, 0.6);
  transform: rotate(-2deg);
}

/* ---------- 8. Cards & grids ---------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 979.98px) {
  .card-grid.cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 250ms ease, border-color 200ms ease, box-shadow 250ms ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 93, 75, 0.3);
  box-shadow: var(--shadow-elevated);
}

.card-cream {
  background: var(--cream);
}

.card-dark {
  background: var(--forest);
  color: #fff;
}

.card-dark h3 {
  color: #fff;
}

.card-dark p {
  color: #fff;
}

.card-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.card h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--emerald);
}

.card-cta .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 200ms ease;
}

.card:hover .card-cta .icon {
  transform: translate(3px, -3px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: rgba(11, 93, 75, 0.1);
  color: var(--emerald);
}

.card-dark .card-icon {
  background: rgba(200, 169, 107, 0.2);
  color: var(--gold);
}

/* Decorative corner blob on service cards */
.card .corner-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  margin-top: -3rem;
  margin-right: -3rem;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.1);
  transition: transform 350ms ease, background 350ms ease;
  pointer-events: none;
}

.card:hover .corner-blob {
  transform: scale(1.5);
  background: rgba(200, 169, 107, 0.2);
}

.card > * {
  position: relative;
}

/* ---------- 9. CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  padding: 3rem 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .cta-band {
    padding: 4.5rem 3.5rem;
  }
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-band::before {
  top: -6rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(200, 169, 107, 0.2);
}

.cta-band::after {
  bottom: -6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(11, 93, 75, 0.4);
}

.cta-band-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-band-grid {
    grid-template-columns: 2fr 1fr;
  }

  .cta-band-grid .cta-action {
    text-align: right;
  }
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  margin-top: 1rem;
  color: #fff;
}

.cta-band p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32rem;
}

.cta-band .eyebrow {
  color: var(--gold);
}

/* ---------- 10. Footer ---------- */
.site-footer {
  margin-top: 4rem;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 3.5rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding-block: 5rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 4fr 3fr 2fr 3fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 22rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact .row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact .row .icon {
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 200ms ease, color 200ms ease;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--forest);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- 11. Page heroes (inner pages) ---------- */
.page-hero {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.page-hero h1 {
  font-size: var(--text-h1);
  margin-top: 1rem;
  max-width: 48rem;
}

.page-hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 40rem;
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.breadcrumbs a:hover {
  color: var(--forest);
}

.breadcrumbs .sep {
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--forest);
  font-weight: 500;
}

/* ---------- 12. Service detail ---------- */
.service-detail-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .service-detail-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.highlights-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.check-pill {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: rgba(11, 93, 75, 0.1);
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.check-pill .icon {
  width: 0.7rem;
  height: 0.7rem;
}

.finishes-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.4rem 0.85rem;
  background: rgba(11, 93, 75, 0.06);
  border: 1px solid rgba(11, 93, 75, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
}

.service-detail-block {
  margin-top: 2.5rem;
}

.service-detail-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
}

.service-detail-block p {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.aside-sticky {
  position: relative;
  top: 0;
}

@media (min-width: 900px) {
  .aside-sticky {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.aside-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}

.aside-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aside-visual .visual-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-top: 1rem;
}

.aside-visual .visual-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
}

.aside-quote {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.aside-quote h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
}

.aside-quote p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

.aside-quote .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ---------- 13. Forms ---------- */
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .form-card {
    padding: 2.5rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 600px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: block;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
}

.field label .req {
  color: #c0392b;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(11, 93, 75, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: rgba(192, 57, 43, 0.6);
}

.field-msg {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #c0392b;
  display: none;
}

.field.error .field-msg {
  display: block;
}

.form-foot {
  margin-top: 1.5rem;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- 14. Contact info cards ---------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-info-card:hover {
  border-color: rgba(11, 93, 75, 0.3);
  box-shadow: var(--shadow-soft);
}

.contact-info-card .card-icon {
  width: 2.75rem;
  height: 2.75rem;
}

.contact-info-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-card .value {
  margin-top: 0.3rem;
  font-weight: 500;
  color: var(--forest);
  word-break: break-word;
}

.urgent-card {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 93, 75, 0.2);
  background: rgba(11, 93, 75, 0.05);
  color: var(--forest);
}

.urgent-card strong {
  font-weight: 600;
}

.urgent-card a {
  color: var(--emerald);
  font-weight: 500;
}

.urgent-card a:hover {
  text-decoration: underline;
}

/* ---------- 15. Gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--emerald), var(--bottle));
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.gallery-item.tall {
  aspect-ratio: 3 / 4;
}

.gallery-item.wide {
  aspect-ratio: 4 / 3;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}

.gallery-placeholder .eyebrow {
  color: var(--gold);
}

.gallery-placeholder .label {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 26, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[data-open="true"] {
  display: flex;
}

.lightbox-image-wrap {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: 100%;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  inset: auto 0 -3rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

/* ---------- 16. Animations (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 17. Misc helpers ---------- */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream);
}

.text-white {
  color: #EAEAEA !important;
}