/* ==========================================================================
   BROTHERS OUTDOOR SERVICES
   Global stylesheet — light theme
   ========================================================================== */

:root {
  --bg: #fcfcf9;
  --bg-2: #f1efe8;
  --surface: #ffffff;
  --surface-2: #f6f5ef;
  --green: #1d3526;
  --green-2: #2a4a36;
  --green-3: #3e6b4d;
  --accent: #4f7a42; /* soft moss green — WCAG AA on light backgrounds */
  --accent-strong: #c9e4a4; /* soft light green — buttons & dark-background accents */
  --text: #1b1a15;
  --muted: #6d6c62;
  --muted-2: #8f8e83;
  --line: rgba(20, 20, 15, 0.08);
  --line-strong: rgba(20, 20, 15, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1180px;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Visually hidden, available to assistive tech */
.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--green);
  color: #fdfcf7;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1, h2 {
  letter-spacing: -0.025em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow--pill {
  background: rgba(20, 20, 15, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #fdfcf7;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 44px);
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin-top: 18px;
  font-size: 16.5px;
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn--accent {
  background: var(--accent-strong);
  color: #1d3526;
}

.btn--accent:hover {
  background: #d8edba;
}

.btn--dark {
  background: var(--green);
  color: #fdfcf7;
}

.btn--dark:hover {
  background: var(--green-2);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--green-outline {
  border-color: var(--green-3);
  color: var(--green-2);
  background: rgba(62, 107, 77, 0.08);
}

.btn--green-outline:hover {
  border-color: var(--green-2);
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.text-link:hover {
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 244, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1;
}

.brand span {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Services dropdown */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 76px;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item .caret {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.nav-item:hover .caret,
.nav-item:focus-within .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(25, 24, 16, 0.14);
  padding: 10px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__label {
  display: block;
  padding: 10px 14px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.nav-links .dropdown a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border-bottom: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links .dropdown a:hover {
  background: var(--bg-2);
  color: var(--text);
}

.nav-links .dropdown a.active {
  color: var(--accent);
  border-bottom: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 11px 22px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Hero (shared patterns) — sits over photos/video, so content stays light
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 110px 0;
  color: #f5f4ee;
}

.hero--tall {
  min-height: calc(100vh - 76px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 7, 0.93) 20%, rgba(8, 8, 7, 0.55) 60%, rgba(8, 8, 7, 0.35));
  z-index: -1;
}

.hero__content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 62px);
  margin-bottom: 24px;
  color: #fdfcf7;
}

.hero p {
  color: #cfcec5;
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
}

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

.hero .eyebrow--pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fdfcf7;
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fdfcf7;
}

.hero .btn--outline:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 44px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, 0.68);
}

.hero__badges span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 110px 0;
}

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

/* Service pages: flat white sections separated by hairline rules */
.section--rule {
  border-top: 1px solid var(--line);
}

/* Anchored sub-service sections land below the sticky header */
main [id] {
  scroll-margin-top: 90px;
}

.section-head {
  margin-bottom: 56px;
}

/* Ruled section head: title left, small index caption right, hairline below */
.section-head--rule {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
}

.section-head--rule .section-lead {
  margin-top: 12px;
}

.section-head__meta {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Feature cards (home trio, lighting trio)
   -------------------------------------------------------------------------- */

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 40px 34px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 20, 15, 0.34);
}

.feature-card--green {
  background: var(--green);
  border-color: rgba(94, 143, 106, 0.35);
}

.feature-card--green h3 {
  color: #fdfcf7;
}

.feature-card--green p {
  color: #b8cabd;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(95, 140, 80, 0.1);
  border: 1px solid rgba(95, 140, 80, 0.3);
  color: var(--accent);
  margin-bottom: 26px;
}

.feature-card--green .feature-card__icon {
  background: rgba(201, 228, 164, 0.1);
  border-color: rgba(201, 228, 164, 0.3);
  color: var(--accent-strong);
}

.feature-card--green .text-link {
  color: var(--accent-strong);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.feature-card .text-link {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Image cards (portfolio, services grid, galleries) — text over photos
   -------------------------------------------------------------------------- */

.img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: var(--surface-2);
  border: 1px solid var(--line);
  isolation: isolate;
}

.img-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: -2;
}

.img-card:hover .img-card__bg {
  transform: scale(1.05);
}

.img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.05) 30%, rgba(8, 8, 7, 0.85) 100%);
  z-index: -1;
}

.img-card__body {
  padding: 30px;
  width: 100%;
}

.img-card .tag {
  display: inline-block;
  background: rgba(14, 14, 12, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e6e5dc;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.img-card .tag--accent {
  color: var(--accent-strong);
}

.img-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 10px;
  color: #fdfcf7;
}

.img-card p {
  color: #c9c8bf;
  font-size: 14.5px;
  max-width: 420px;
  margin-bottom: 16px;
}

.img-card .text-link {
  color: var(--accent-strong);
}

/* Portfolio grid (home) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-grid .img-card {
  min-height: 380px;
}

.portfolio-grid .img-card--wide {
  grid-column: 1 / -1;
  min-height: 340px;
}

/* Services bento grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.services-grid .img-card {
  min-height: 360px;
}

.services-grid .span-3 { grid-column: span 3; }
.services-grid .span-2 { grid-column: span 2; }

/* Amenities grid (home) */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.amenities-grid .img-card {
  min-height: 340px;
}

/* Gallery (lighting) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-grid .img-card {
  min-height: 360px;
}

/* --------------------------------------------------------------------------
   Process (home)
   -------------------------------------------------------------------------- */

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

.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: 0 6px 22px rgba(25, 24, 16, 0.05);
}

.process-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(95, 140, 80, 0.45);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Testimonial / review band (home)
   -------------------------------------------------------------------------- */

.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
}

.testimonial blockquote {
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}

.testimonial cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   CTA bands
   -------------------------------------------------------------------------- */

.cta-band {
  padding: 110px 0;
  text-align: center;
}

.cta-band--green {
  background: var(--green-2);
}

.cta-band h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 20px;
}

.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-band--green h2 {
  color: #fdfcf7;
}

.cta-band--green p {
  color: rgba(243, 242, 236, 0.78);
}

.cta-band--green .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fdfcf7;
}

.cta-band--green .btn--outline:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

/* --------------------------------------------------------------------------
   Split sections (about, lighting, contact)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.split__content h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 24px;
}

.split__content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.split__content .btn {
  margin-top: 12px;
}

.split--reverse .split__media {
  order: -1;
}

/* --------------------------------------------------------------------------
   Page hero (service pages) — split layout on the light background
   -------------------------------------------------------------------------- */

.page-hero {
  padding: 84px 0 24px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  margin-bottom: 22px;
}

.page-hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-hero__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Discipline cards (service page overviews)
   -------------------------------------------------------------------------- */

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

.discipline-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.discipline-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 36px 34px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.discipline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 20, 15, 0.34);
}

.discipline-card--span3 {
  grid-column: span 3;
}

.discipline-card--span2 {
  grid-column: span 2;
}

.discipline-card--wide {
  grid-column: 1 / -1;
}

/* Pale green corner square, per the reference's lead card */
.discipline-card--corner::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 36px;
  height: 36px;
  background: var(--accent-strong);
  opacity: 0.55;
  border-radius: 3px;
}

.discipline-card--tint {
  background: var(--surface-2);
  border-top: 2px solid var(--accent-strong);
}

/* Content beside a small photo thumbnail */
.discipline-card--thumb {
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.discipline-card--thumb .discipline-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discipline-card__thumb {
  flex: none;
  width: 190px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.discipline-card__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-2);
  margin-bottom: 24px;
}

.discipline-card__icon svg {
  width: 26px;
  height: 26px;
}

.discipline-card__num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.discipline-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.discipline-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 22px;
}

.discipline-card .text-link {
  margin-top: auto;
}

.discipline-card--dark {
  background: var(--green);
  border-color: rgba(94, 143, 106, 0.35);
}

.discipline-card--dark h3 {
  color: #fdfcf7;
}

.discipline-card--dark p {
  color: #b8cabd;
}

.discipline-card--dark .discipline-card__icon {
  color: var(--accent-strong);
}

.discipline-card--dark .discipline-card__num,
.discipline-card--dark .text-link {
  color: var(--accent-strong);
}

/* Small pill button, used on the dark card per the reference */
.btn-mini {
  display: inline-block;
  background: var(--accent-strong);
  color: #1d3526;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  margin-top: auto;
  transition: background 0.2s ease;
}

.btn-mini:hover {
  background: #d8edba;
}

/* --------------------------------------------------------------------------
   Process band (service pages) — dark green, four steps
   -------------------------------------------------------------------------- */

.process-band {
  background: var(--green);
  padding: 100px 0;
}

.process-band .section-head {
  text-align: center;
  margin-bottom: 0;
}

.process-band .section-title {
  color: #fdfcf7;
}

.process-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.process-step__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 228, 164, 0.1);
  border: 1px solid rgba(201, 228, 164, 0.32);
  color: var(--accent-strong);
}

.process-step__icon svg {
  width: 20px;
  height: 20px;
}

.process-step h3 {
  color: var(--accent-strong);
  font-size: 16.5px;
  margin-bottom: 10px;
}

.process-step p {
  color: #b8cabd;
  font-size: 14px;
}

.floating-badge {
  position: absolute;
  left: -36px;
  bottom: 42px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 24px 48px rgba(25, 24, 16, 0.18);
}

.floating-badge strong {
  display: block;
  font-size: 30px;
  color: var(--accent);
  line-height: 1.1;
}

.floating-badge span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Checklist (lighting) */
.checklist {
  margin-top: 10px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #45443b;
  font-size: 15.5px;
  padding: 10px 0;
}

.checklist li svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Team / expertise cards (about) — text over photos
   -------------------------------------------------------------------------- */

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

.team-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  isolation: isolate;
}

.team-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card__bg {
  transform: scale(1.05);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0) 35%, rgba(8, 8, 7, 0.9) 100%);
  z-index: -1;
}

.team-card__body {
  padding: 28px;
}

.team-card h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #fdfcf7;
}

.team-card p {
  color: #c5c4bb;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(25, 24, 16, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-2);
}

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

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236d6c62' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(62, 107, 77, 0.1);
  border: 1px solid var(--green-3);
  color: var(--green-2);
  font-size: 15px;
  text-align: center;
}

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

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(25, 24, 16, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 16.5px;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-item__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(95, 140, 80, 0.1);
  border: 1px solid rgba(95, 140, 80, 0.3);
  color: var(--accent);
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item__title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text);
  font-size: 15.5px;
  margin: 0;
}

/* Map band */
.map-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e9e8dd;
}

.map-band__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.map-band__label {
  position: absolute;
  color: rgba(27, 26, 21, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
}

.map-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(25, 24, 16, 0.18);
}

.map-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(95, 140, 80, 0.1);
  border: 1px solid rgba(95, 140, 80, 0.3);
  color: var(--accent);
}

.map-card__icon svg {
  width: 22px;
  height: 22px;
}

.map-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.map-card p {
  color: var(--muted);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--green);
  padding: 80px 0 36px;
  color: #b8cabd;
}

.site-footer .brand {
  color: #fdfcf7;
}

.site-footer .brand span {
  color: var(--accent-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #b8cabd;
  font-size: 14.5px;
  margin-top: 18px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8cabd;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 22px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #b8cabd;
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fdfcf7;
}

.footer-col address {
  font-style: normal;
  color: #b8cabd;
  font-size: 14.5px;
  line-height: 1.9;
}

.footer-col address a {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(243, 242, 236, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Navigation collapses early — seven top-level items need the width */
@media (max-width: 1060px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fdfcf8;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    font-size: 15px;
    border-bottom: none;
  }

  .nav-item {
    height: auto;
    display: block;
    width: 100%;
  }

  .nav-item .caret {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    padding: 0 0 8px 16px;
  }

  .dropdown__label {
    padding: 8px 0 4px;
    border-bottom: none;
    margin-bottom: 0;
  }

  .nav-links .dropdown a {
    padding: 8px 0;
    font-size: 14px;
    border-radius: 0;
  }

  .nav-links .dropdown a:hover {
    background: transparent;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn {
    display: none;
  }
}

@media (max-width: 1020px) {
  .feature-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

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

  .services-grid .span-3,
  .services-grid .span-2 {
    grid-column: auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .split__media img {
    height: 420px;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero__media img {
    height: 340px;
  }

  .discipline-grid,
  .discipline-grid--3 {
    grid-template-columns: 1fr;
  }

  .discipline-card--span3,
  .discipline-card--span2 {
    grid-column: auto;
  }

  .section-head--rule {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .floating-badge {
    left: 20px;
  }

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

@media (max-width: 860px) {
  .portfolio-grid,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: 560px;
    padding: 90px 0;
  }

  .form-shell {
    padding: 32px 24px;
  }

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

@media (max-width: 560px) {
  .process-grid,
  .process-band__grid {
    grid-template-columns: 1fr;
  }

  .discipline-card--thumb {
    flex-direction: column;
    align-items: flex-start;
  }

  .discipline-card__thumb {
    width: 100%;
    height: 170px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .map-card {
    margin: 0 24px;
    padding: 32px 26px;
  }
}
