@charset "UTF-8";

:root {
  --ink: #10231c;
  --ink-deep: #071a14;
  --forest: #0b3c2a;
  --green: #126844;
  --green-soft: #dfe9e2;
  --gold: #d8b638;
  --gold-deep: #b18d18;
  --cream: #f5f1e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #66736c;
  --line: rgba(16, 35, 28, 0.16);
  --shadow: 0 24px 70px rgba(10, 35, 25, 0.13);
  --shell: min(1200px, calc(100% - 48px));
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #dfe9e2;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--green);
  font-weight: 400;
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
}

h3 {
  letter-spacing: -0.02em;
}

.lead-copy {
  color: #30423a;
  font-size: 1.2rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease,
    transform 220ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--ink-deep);
}

.button-gold:hover {
  background: #e4c64d;
}

.button-green {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.button-green:hover {
  background: var(--green);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink-deep);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span,
.card-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.card-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 94px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: height 240ms ease, background-color 240ms ease, color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  height: 78px;
  background: rgba(251, 250, 246, 0.97);
  box-shadow: 0 10px 35px rgba(6, 25, 18, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: 194px;
  align-items: center;
}

.brand img {
  width: 80%;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.15));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.primary-nav>a,
.dropdown-toggle {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav>a::after,
.dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.primary-nav>a:hover::after,
.dropdown-toggle:hover::after,
.primary-nav>a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
  position: relative;
    top: -3px;
}

.nav-dropdown.open .dropdown-toggle span {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: -24px;
  display: grid;
  width: 300px;
  padding: 12px;
  transform: translateY(8px);
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(16, 35, 28, 0.09);
  font-size: 0.84rem;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--green);
}

.header-cta {
  min-height: 46px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  margin: 0px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.045);
  background: url(/brightview/images/homes.jpg) center 57% / cover no-repeat;
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 22, 15, 0.94) 0%, rgba(4, 22, 15, 0.78) 45%, rgba(4, 22, 15, 0.18) 78%),
    linear-gradient(0deg, rgba(4, 22, 15, 0.65) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 860px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-copy {
  width: min(780px, 72%);
  animation: hero-copy-in 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-eyebrow {
  color: #eadc9d;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 32px;
  font-size: clamp(4rem, 7vw, 6rem);
}

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

.hero-lead {
  max-width: 615px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-note {
  align-self: flex-end;
  width: 245px;
  margin-bottom: 78px;
  padding: 26px 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(7, 27, 20, 0.55);
  backdrop-filter: blur(10px);
  animation: hero-copy-in 900ms 350ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-note-number {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-note p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-line::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--gold);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

.trust-bar {
  background: var(--cream);
}

.trust-grid {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: stretch;
}

.trust-intro,
.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

.trust-intro {
  padding-left: 0;
}

.trust-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.trust-intro p {
  margin: 0;
  max-width: 230px;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.35;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.trust-item strong {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.about-visual {
  position: relative;
  padding: 0 0 54px 40px;
}

.about-visual::before {
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 0;
  width: 54%;
  background: var(--green-soft);
  content: "";
}

.image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.86;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  z-index: 2;
  right: -36px;
  bottom: 0;
  display: flex;
  width: 190px;
  height: 155px;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  background: var(--gold);
}

.about-stamp span {
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-stamp strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.05;
}

.about-copy>p:not(.eyebrow) {
  color: var(--muted);
}

.about-points {
  display: grid;
  margin: 40px 0;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-points>div {
  display: flex;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-points span {
  color: var(--gold-deep);
  font-size: 0.65rem;
  font-weight: 750;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.about-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.92rem;
}

.services {
  overflow: hidden;
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 66px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading>p {
  max-width: 430px;
  padding-bottom: 8px;
  color: var(--muted);
}

.service-track {
  display: grid;
  grid-auto-columns: calc((100% - 42px) / 3);
  grid-auto-flow: column;
  gap: 21px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  overflow: hidden;
  scroll-margin-top: 100px;
  scroll-snap-align: start;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(19, 49, 37, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 64px rgba(19, 49, 37, 0.14);
}

.service-image {
  position: relative;
  height: 305px;
  overflow: hidden;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 26, 18, 0.44));
  content: "";
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-number {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(7, 27, 20, 0.35);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.service-body {
  min-height: 340px;
  padding: 34px 30px 32px;
}

.service-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-body h3 {
  min-height: 62px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.service-body>p:not(.service-kicker) {
  min-height: 105px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-link {
  color: var(--green);
  font-size: 0.68rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 34px;
}

.round-button {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(16, 35, 28, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.round-button:hover {
  transform: translateY(-2px);
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.slider-progress {
  width: 120px;
  height: 2px;
  overflow: hidden;
  background: rgba(16, 35, 28, 0.17);
}

.slider-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  transform: translateX(0);
  background: var(--green);
  transition: transform 280ms ease;
}

.why-us {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.why-us::before {
  position: absolute;
  top: -170px;
  left: -110px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.why-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
}

.why-heading h2 em {
  color: var(--gold);
}

.why-heading>p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.why-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.why-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.why-list article>span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.why-list h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.why-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.process {
  background: var(--paper);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr 46px;
  align-items: center;
  gap: 36px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms ease, background-color 220ms ease;
}

.process-list li:hover {
  padding-left: 18px;
  background: var(--cream);
}

.process-number {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.process-list li>div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: 50px;
}

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.process-list li:hover .process-symbol {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink-deep);
}

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

.projects-heading {
  grid-template-columns: 1fr auto;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-button {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 330px);
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  transition: opacity 260ms ease, transform 260ms ease;
}

.project-card-wide {
  grid-row: 1 / span 2;
}

.project-card.filtered-out {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.project-card:hover img {
  transform: scale(1.045);
  filter: brightness(0.82);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 26, 18, 0.83));
  color: var(--white);
}

.project-overlay p {
  margin-bottom: 4px;
  color: #eadc9d;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-overlay h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.1;
}

.project-overlay>span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.project-card:hover .project-overlay>span {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink-deep);
}

.project-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.counters {
  padding: 74px 0;
  background: var(--gold);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-item {
  min-height: 135px;
  padding: 10px 32px;
  border-right: 1px solid rgba(16, 35, 28, 0.25);
  text-align: center;
}

.counter-item:last-child {
  border-right: 0;
}

.counter-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.counter-item sup {
  top: -0.8em;
  margin-left: 3px;
  font-family: var(--sans);
  font-size: 0.25em;
}

.counter-item p {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.testimonials {
  background: var(--paper);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.testimonial-intro>p:not(.eyebrow) {
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.testimonial-window {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.testimonial-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 0.8, 0.25, 1);
}

.testimonial-card {
  min-width: 100%;
  min-height: 480px;
  margin: 0;
  padding: 68px 64px 54px;
  background: var(--forest);
  color: var(--white);
}

.quote-mark {
  display: block;
  height: 76px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 7.5rem;
  line-height: 0.85;
}

.testimonial-card>p {
  margin: 24px 0 48px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.35;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-card footer strong,
.testimonial-card footer span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-card footer span {
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-dots {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: none;
  gap: 7px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--gold);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(70px, 9vw, 130px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-heading>p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item>button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  padding: 27px 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.faq-item>button>span:first-child {
  font-family: var(--serif);
  font-size: 1.33rem;
  font-weight: 500;
  line-height: 1.3;
}

.faq-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.faq-item.open .faq-icon {
  background: var(--forest);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 58px 27px 0;
}

.cta-panel {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.cta-image,
.cta-shade {
  position: absolute;
  inset: 0;
}

.cta-image {
  background: url("/brightview/images/ban1.jpg") center 54% / cover no-repeat;
}

.cta-shade {
  background: linear-gradient(90deg, rgba(4, 23, 16, 0.93), rgba(4, 23, 16, 0.3));
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  max-width: 820px;
}

.cta-content h2 em {
  color: var(--gold);
}

.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 9vw, 130px);
}

.contact-copy>p:not(.eyebrow) {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-details div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 0.9rem;
}

.contact-form {
  padding: 48px;
  background: var(--cream);
}

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

.contact-form label {
  display: block;
  margin-bottom: 25px;
}

.contact-form label>span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 35, 28, 0.33);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d968f;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 8px;
}

.form-footer p {
  margin: 0;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.form-message {
  display: none;
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--green-soft);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 650;
}

.form-message.visible {
  display: block;
  animation: message-in 240ms ease both;
}

.site-footer {
  padding-top: 80px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 260px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links h3 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  transform: translateX(3px);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(18px);
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 12px 35px rgba(5, 28, 19, 0.2);
  color: var(--ink-deep);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.js .reveal {
  transform: translateY(32px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal-left {
  transform: translate(-32px, 18px);
}

.js .reveal.visible {
  transform: translate(0, 0);
  opacity: 1;
}

@keyframes hero-settle {
  to {
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    transform: translateY(28px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }

  55%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes message-in {
  from {
    transform: translateY(8px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 20px;
  }

  .brand {
    width: 178px;
  }

  .primary-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .hero-copy {
    width: min(800px, 85%);
  }

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

  .trust-intro,
  .trust-item {
    padding-inline: 18px;
  }

  .trust-intro {
    padding-left: 0;
  }

  .service-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .why-layout,
  .testimonial-layout,
  .faq-layout,
  .contact-layout {
    gap: 70px;
  }

  .testimonial-card {
    padding-inline: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  .section {
    padding: 92px 0;
  }

  h2 {
    font-size: clamp(2.75rem, 10vw, 4.2rem);
  }

  .site-header,
  .site-header.scrolled,
  .site-header.nav-active {
    height: 74px;
  }
.primary-nav.open .dropdown-menu {
    background: none;
}
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    position: relative;
    z-index: 2;
    width: 165px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
  }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
                transform: translateY(11.5px) rotate(40deg);
    }


  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 110px max(28px, calc((100vw - 700px) / 2)) 40px;
    transform: translateX(100%);
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 240ms ease;
  }

  .primary-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    height:100vh;
    text-align: center;
  }
.primary-nav.open a {
    width: 100%;
    font-size:20px;
}
  .primary-nav>a,
  .dropdown-toggle {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-transform: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0 14px 18px;
    transform: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    font-size: 0.87rem;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 112px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 13vw, 6rem);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 22, 15, 0.95) 0%, rgba(4, 22, 15, 0.66) 64%, rgba(4, 22, 15, 0.42) 100%);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .scroll-cue {
    display: none;
  }

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

  .trust-intro,
  .trust-item {
    min-height: 120px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-grid,
  .why-layout,
  .testimonial-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 80px;
  }

  .about-visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .section-heading>p {
    padding-bottom: 0;
  }

  .service-track {
    grid-auto-columns: 78%;
  }

  .why-layout,
  .testimonial-layout,
  .faq-layout,
  .contact-layout {
    gap: 65px;
  }

  .why-heading {
    max-width: 620px;
  }

  .process-list li>div {
    grid-template-columns: 0.55fr 1fr;
    gap: 25px;
  }

  .projects-heading {
    grid-template-columns: 1fr;
  }

  .project-filters {
    justify-content: flex-start;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 480px 350px 350px;
  }

  .project-card-wide {
    grid-row: auto;
  }

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

  .counter-item:nth-child(2) {
    border-right: 0;
  }

  .counter-item:nth-child(-n + 2) {
    margin-bottom: 40px;
  }

  .faq-heading {
    position: static;
  }

  .cta-panel {
    min-height: 540px;
  }

  .contact-form {
    padding: 38px;
  }

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

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding: 76px 0;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .hero-lead {
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .hero .button {
    width: 100%;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-intro,
  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-last-child(-n + 2) {
    min-height: 88px;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .about-visual {
    padding: 0 0 38px 18px;
  }

  .about-stamp {
    right: -4px;
    width: 155px;
    height: 128px;
    padding: 20px;
  }

  .about-stamp strong {
    font-size: 1.4rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .service-track {
    grid-auto-columns: 91%;
    gap: 14px;
  }

  .service-image {
    height: 260px;
  }

  .service-body {
    min-height: 335px;
    padding: 28px 24px;
  }

  .service-controls {
    justify-content: space-between;
  }

  .slider-progress {
    flex: 1;
  }

  .why-list article {
    grid-template-columns: 36px 1fr;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 16px;
  }

  .process-list li>div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-symbol {
    display: none;
  }

  .process-list li:hover {
    padding-left: 0;
  }

  .project-filters {
    gap: 7px;
  }

  .filter-button {
    padding-inline: 10px;
    font-size: 0.61rem;
  }

  .project-grid {
    grid-template-rows: repeat(3, 380px);
  }

  .project-overlay {
    padding: 25px;
  }

  .project-overlay>span {
    width: 40px;
    height: 40px;
  }

  .counter-item {
    padding-inline: 12px;
  }

  .counter-item strong {
    font-size: 3.3rem;
  }

  .counter-item p {
    font-size: 0.6rem;
  }

  .testimonial-card {
    min-height: 500px;
    padding: 50px 28px 42px;
  }

  .testimonial-card>p {
    font-size: 1.55rem;
  }

  .testimonial-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .faq-item>button>span:first-child {
    font-size: 1.15rem;
  }

  .cta-panel {
    min-height: 500px;
  }

  .cta-shade {
    background: rgba(4, 23, 16, 0.72);
  }

  .contact-form {
    padding: 30px 22px;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .footer-links div:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    transform: none;
    opacity: 1;
  }
}

/* Contact page specific styles */

.contact-hero {
  position: relative;
  display: flex;
  min-height: 480px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.045);
  background: url('https://peerdemo.in/brightview/images/cont.png') center 50% / cover no-repeat;
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.contact-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 15, 0.94) 0%, rgba(4, 22, 15, 0.72) 50%, rgba(4, 22, 15, 0.20) 80%),
    linear-gradient(0deg, rgba(4, 22, 15, 0.60) 0%, transparent 50%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 60px;
}

.contact-hero-copy {
  max-width: 740px;
  animation: hero-copy-in 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.contact-hero-copy .eyebrow {
  color: #eadc9d;
}

.contact-hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

.contact-hero-copy h1 em {
  color: var(--gold);
}

.contact-hero-copy .hero-lead {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info>p {
  color: var(--muted);
  margin-bottom: 40px;
}

.contact-info .info-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info .info-item:last-child {
  border-bottom: 0;
}

.contact-info .info-item .info-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1rem;
}

.contact-info .info-item div strong {
  display: block;
  font-size: 0.92rem;
}

.contact-info .info-item div p {
  margin: 2px 0 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Contact Form - reused from home page with enhancements */
.contact-form {
  padding: 48px;
  background: var(--cream);
  border-radius: 2px;
}

.contact-form .form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form .form-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 30px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 25px;
}

.contact-form label>span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 35, 28, 0.33);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  font-family: var(--sans);
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d968f;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 8px;
}

.form-footer p {
  margin: 0;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.form-message {
  display: none;
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--green-soft);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 650;
}

.form-message.visible {
  display: block;
  animation: message-in 240ms ease both;
}

/* Map Section - Full Width */
.map-section {
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: var(--ink-deep);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-section .map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(4, 22, 15, 0.85);
  backdrop-filter: blur(6px);
  padding: 30px 44px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.map-section .map-overlay strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.map-section .map-overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .contact-hero {
    min-height: 420px;
  }

  .contact-hero-content {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .contact-hero-copy h1 {
    font-size: 2.6rem;
  }

  .contact-section {
    padding: 72px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info {
    max-width: 580px;
  }

  .contact-form {
    padding: 38px 30px;
  }

  .map-section {
    height: 350px;
  }

  .map-section .map-overlay {
    padding: 22px 30px;
  }

  .map-section .map-overlay strong {
    font-size: 1.3rem;
  }
}

@media (max-width: 560px) {
  .contact-hero {
    min-height: 380px;
  }

  .contact-hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .contact-hero-copy h1 {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 56px 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .map-section {
    height: 280px;
  }

  .map-section .map-overlay {
    padding: 16px 20px;
    width: 85%;
  }

  .map-section .map-overlay strong {
    font-size: 1.1rem;
  }

  .map-section .map-overlay span {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-media {
    animation: none;
  }
}

/* bathroom page css */
.detail-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.detail-hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.045);
  background: url('https://peerdemo.in/brightview/images/cus.jpg') center 50% / cover no-repeat;
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 22, 15, 0.94) 0%, rgba(4, 22, 15, 0.72) 50%, rgba(4, 22, 15, 0.20) 80%), linear-gradient(0deg, rgba(4, 22, 15, 0.60) 0%, transparent 50%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 70px;
}

.detail-hero-copy {
  max-width: 740px;
  animation: hero-copy-in 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.detail-hero-copy .eyebrow {
  color: #eadc9d;
}

.detail-hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

.detail-hero-copy h1 em {
  color: var(--gold);
}

.detail-hero-copy .hero-lead {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.detail-hero-copy .hero-lead+.hero-lead {
  margin-top: 16px;
}

.detail-section {
  padding: 100px 0;
}

.detail-section-alt {
  background: var(--cream);
  padding: 100px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.detail-grid-reverse .detail-visual {
  order: 2;
}

.detail-grid-reverse .detail-text {
  order: 1;
}

.detail-text .lead-copy {
  margin-bottom: 28px;
}

.detail-text p {
  color: var(--muted);
}

.detail-visual .image-frame {
  aspect-ratio: 1/1.1;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-visual .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-visual {
  position: relative;
}

.detail-visual .detail-stamp {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  padding: 22px 28px;
  max-width: 170px;
}

.detail-visual .detail-stamp strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink-deep);
}

.detail-visual .detail-stamp span {
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-deep);
  opacity: 0.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
}

.feature-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.feature-grid li:last-child,
.feature-grid li:nth-last-child(2) {
  border-bottom: 0;
}

.feature-grid li .fg-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.7rem;
}

.feature-grid li div strong {
  display: block;
  font-size: 0.92rem;
}

.feature-grid li div p {
  margin: 2px 0 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(10, 35, 25, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(10, 35, 25, 0.10);
}

.process-step .step-number {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.process-step h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== GALLERY SLIDER - Instagram Feed Style ===== */
.gallery-section {
  padding: 0 0 100px 0;
  background: var(--paper);
}

.gallery-section .section-heading {
  padding-top: 80px;
  margin-bottom: 40px;
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ink-deep);
}

.gallery-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slide .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 60px 30px;
  background: linear-gradient(transparent, rgba(4, 22, 15, 0.85));
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-slide.active .slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-slide .slide-overlay h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.gallery-slide .slide-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.gallery-slide .slide-overlay .slide-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 14px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.gallery-dot:hover {
  border-color: var(--gold);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(4, 22, 15, 0.5);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.gallery-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-deep);
}

.gallery-arrow.prev {
  left: 20px;
}

.gallery-arrow.next {
  right: 20px;
}

.gallery-autoplay-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

.gallery-slide .slide-number {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.gallery-slider-wrapper:hover .gallery-autoplay-indicator {
  animation-play-state: paused;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(70px, 9vw, 130px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-heading>p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item>button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  padding: 27px 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.faq-item>button>span:first-child {
  font-family: var(--serif);
  font-size: 1.33rem;
  font-weight: 500;
  line-height: 1.3;
}

.faq-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.faq-item.open .faq-icon {
  background: var(--forest);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 58px 27px 0;
}

@media (max-width:1080px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:820px) {
  .detail-hero {
    min-height: 460px;
  }

  .detail-hero-content {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .detail-hero-copy h1 {
    font-size: 2.6rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .detail-grid-reverse .detail-visual {
    order: 1;
  }

  .detail-grid-reverse .detail-text {
    order: 2;
  }

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

  .feature-grid li:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .detail-visual .detail-stamp {
    right: 0;
    bottom: -10px;
    padding: 18px 22px;
    max-width: 140px;
  }

  .detail-visual .detail-stamp strong {
    font-size: 1.2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .detail-section,
  .detail-section-alt {
    padding: 72px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-heading {
    position: static;
  }

  .faq-item.open .faq-answer p {
    padding: 0 20px 20px 0;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .gallery-arrow.prev {
    left: 10px;
  }

  .gallery-arrow.next {
    right: 10px;
  }

  .gallery-slide .slide-overlay {
    padding: 24px 28px 20px;
  }

  .gallery-slide .slide-overlay h3 {
    font-size: 1.2rem;
  }

  .gallery-section .section-heading {
    padding-top: 60px;
  }

  .gallery-section {
    padding: 0 0 60px 0;
  }
}

@media (max-width:560px) {
  .detail-hero {
    min-height: 400px;
  }

  .detail-hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .detail-hero-copy h1 {
    font-size: 2.2rem;
  }

  .detail-section,
  .detail-section-alt {
    padding: 56px 0;
  }

  .detail-visual .detail-stamp {
    padding: 12px 16px;
    max-width: 110px;
    bottom: -6px;
    right: 6px;
  }

  .detail-visual .detail-stamp strong {
    font-size: 1rem;
  }

  .detail-visual .detail-stamp span {
    font-size: 0.45rem;
  }

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

  .gallery-slide .slide-overlay {
    padding: 16px 18px 14px;
  }

  .gallery-slide .slide-overlay h3 {
    font-size: 1rem;
  }

  .gallery-slide .slide-overlay p {
    font-size: 0.78rem;
  }

  .gallery-controls {
    bottom: 16px;
    gap: 8px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-slide .slide-number {
    top: 14px;
    right: 16px;
    font-size: 0.65rem;
    padding: 2px 10px;
  }

  .gallery-section .section-heading {
    padding-top: 40px;
  }

  .gallery-section {
    padding: 0 0 40px 0;
  }
}

@media (prefers-reduced-motion:reduce) {
  .detail-hero-media {
    animation: none;
  }

  .gallery-track {
    transition: none;
  }

  .gallery-autoplay-indicator {
    display: none;
  }
}

/* Services page specific styles */

.services-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.services-hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.045);
  background: url('https://peerdemo.in/brightview/images/pro2.jpg') center 50% / cover no-repeat;
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.services-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 15, 0.94) 0%, rgba(4, 22, 15, 0.72) 50%, rgba(4, 22, 15, 0.20) 80%),
    linear-gradient(0deg, rgba(4, 22, 15, 0.60) 0%, transparent 50%);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 70px;
}

.services-hero-copy {
  max-width: 740px;
  animation: hero-copy-in 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.services-hero-copy .eyebrow {
  color: #eadc9d;
}

.services-hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.services-hero-copy h1 em {
  color: var(--gold);
}

.services-hero-copy .hero-lead {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

/* Service detail cards (3-column layout) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 16px;
}

.service-detail-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 35, 25, 0.06);
  transition: transform 320ms ease, box-shadow 320ms ease;
  border-radius: 2px;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(10, 35, 25, 0.12);
}

.service-detail-card .service-detail-image {
  aspect-ratio: 1.3/1;
  overflow: hidden;
}

.service-detail-card .service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-card .service-detail-body {
  padding: 34px 30px 38px;
}

.service-detail-card .service-detail-body .service-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-card .service-detail-body h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-detail-card .service-detail-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-detail-card .service-detail-body .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.service-detail-card .service-detail-body .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink);
}

.service-detail-card .service-detail-body .feature-list li:last-child {
  border-bottom: 0;
}

.service-detail-card .service-detail-body .feature-list li::before {
  content: "✦";
  color: var(--gold-deep);
  font-size: 0.6rem;
}

/* Comparison / Why choose us */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.comparison-text .lead-copy {
  margin-bottom: 28px;
}

.comparison-text p {
  color: var(--muted);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.comparison-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-list li:last-child {
  border-bottom: 0;
}

.comparison-list li .comp-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--serif);
  font-size: 1rem;
}

.comparison-list li div strong {
  display: block;
  font-size: 1.05rem;
}

.comparison-list li div p {
  margin: 4px 0 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.comparison-visual {
  position: relative;
}

.comparison-visual .image-frame {
  aspect-ratio: 1/1.15;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-visual .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-visual .comp-stamp {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  padding: 24px 30px;
  max-width: 180px;
}

.comparison-visual .comp-stamp strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink-deep);
}

.comparison-visual .comp-stamp span {
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-deep);
  opacity: 0.7;
}

/* ===== WHITE BACKGROUND SECTION (footer se pehle) ===== */
.white-section {
  background: var(--paper);
  padding: 80px 0;
}

.white-section .white-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.white-section .white-item {
  padding: 30px 20px;
}

.white-section .white-item .white-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.white-section .white-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.white-section .white-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.white-section .white-item .white-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 180ms ease;
}

.white-section .white-item .white-link:hover {
  color: var(--gold-deep);
}

/* Responsive */
@media (max-width: 1080px) {
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .services-hero {
    min-height: 480px;
  }

  .services-hero-content {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .services-hero-copy h1 {
    font-size: 2.8rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-inline: auto;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .comparison-visual .comp-stamp {
    right: 0;
    bottom: -10px;
    padding: 20px 24px;
    max-width: 150px;
  }

  .comparison-visual .comp-stamp strong {
    font-size: 1.3rem;
  }

  .white-section .white-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .services-hero {
    min-height: 420px;
  }

  .services-hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .services-hero-copy h1 {
    font-size: 2.4rem;
  }

  .service-detail-card .service-detail-body {
    padding: 26px 22px 32px;
  }

  .service-detail-card .service-detail-body h3 {
    font-size: 1.7rem;
  }

  .comparison-visual .comp-stamp {
    padding: 14px 18px;
    max-width: 120px;
    bottom: -6px;
    right: 6px;
  }

  .comparison-visual .comp-stamp strong {
    font-size: 1.1rem;
  }

  .comparison-visual .comp-stamp span {
    font-size: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-media {
    animation: none;
  }
}

/* About page specific overrides and additions */

.about-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.about-hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.045);
  background: url('https://peerdemo.in/brightview/images/abnt.jpg') center 50% / cover no-repeat;
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 15, 0.92) 0%, rgba(4, 22, 15, 0.70) 50%, rgba(4, 22, 15, 0.20) 80%),
    linear-gradient(0deg, rgba(4, 22, 15, 0.60) 0%, transparent 50%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 80px;
}

.about-hero-copy {
  max-width: 900px;
  animation: hero-copy-in 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.about-hero-copy .eyebrow {
  color: #eadc9d;
}

.about-hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.5vw, 6rem);
}

.about-hero-copy h1 em {
  color: var(--gold);
}

.about-hero-copy .hero-lead {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

/* Story section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.story-text .lead-copy {
  margin-bottom: 28px;
}

.story-text p {
  color: var(--muted);
}

.story-visual {
  position: relative;
}

.story-visual .image-frame {
  aspect-ratio: 1/1.1;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-visual .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual .story-stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  padding: 28px 32px;
  max-width: 200px;
}

.story-visual .story-stamp span {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink-deep);
}

.story-visual .story-stamp small {
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-deep);
  opacity: 0.7;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.value-card {
  padding: 40px 32px 36px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(10, 35, 25, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 35, 25, 0.10);
}

.value-card .value-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

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

.team-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 35, 25, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 35, 25, 0.10);
}

.team-card .team-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.team-card:hover .team-image img {
  transform: scale(1.04);
}

.team-card .team-body {
  padding: 28px 26px 30px;
}

.team-card .team-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card .team-body .team-role {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card .team-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--line);
}

.timeline-item {
  margin-bottom: 48px;
  padding-left: 30px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item .year {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 1080px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .about-hero {
    min-height: 520px;
  }

  .about-hero-content {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-visual .story-stamp {
    right: 0;
    bottom: -10px;
    padding: 22px 26px;
    max-width: 170px;
  }

  .story-visual .story-stamp span {
    font-size: 1.4rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline-item {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -34px;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 560px) {
  .about-hero {
    min-height: 460px;
  }

  .about-hero-content {
    padding-top: 100px;
    padding-bottom: 44px;
  }

  .about-hero-copy h1 {
    font-size: 2.8rem;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .timeline-item .year {
    font-size: 1.4rem;
  }

  .story-visual .story-stamp {
    padding: 16px 20px;
    max-width: 140px;
    bottom: -6px;
    right: 6px;
  }

  .story-visual .story-stamp span {
    font-size: 1.1rem;
  }

  .story-visual .story-stamp small {
    font-size: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-media {
    animation: none;
  }
}