:root {
  --ink: #221a16;
  --muted: #74675d;
  --soft: #f6f0e8;
  --paper: #fbf7f0;
  --white: #ffffff;
  --line: #e4d8ca;
  --coffee: #3b2a22;
  --cocoa: #5b4032;
  --clay: #9f5f42;
  --copper: #b9794f;
  --sand: #d8b98a;
  --sage: #687867;
  --shadow: 0 24px 60px rgba(59, 42, 34, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.anchor-target {
  display: block;
  position: relative;
  top: -130px;
  visibility: hidden;
}

.coming-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 34%, rgba(185, 121, 79, 0.2), transparent 32%),
    linear-gradient(120deg, #241b17, #46342a 56%, #725343);
}

.coming-page.interiors-page {
  background:
    linear-gradient(90deg, rgba(24, 18, 15, 0.9) 0%, rgba(36, 27, 23, 0.76) 42%, rgba(36, 27, 23, 0.24) 74%),
    url("img/homeinterior_card.jpeg") right center / cover no-repeat,
    linear-gradient(120deg, #241b17, #46342a 56%, #725343);
}

.coming-page .site-header {
  background: transparent;
}

.coming-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100vh;
  padding: clamp(112px, 14vw, 150px) clamp(22px, 8vw, 104px) 72px;
  overflow: hidden;
}

.coming-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.coming-content .eyebrow {
  color: var(--sand);
}

.coming-content h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 400;
  line-height: 1.02;
}

.coming-content p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.coming-rule {
  display: block;
  width: min(330px, 78vw);
  height: 1px;
  margin: 0 0 28px;
  background: rgba(216, 185, 138, 0.28);
  overflow: hidden;
}

.coming-rule::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  animation: coming-scan 2.7s ease-in-out infinite;
}

.coming-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f6ead9;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.coming-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  animation: coming-pulse 1.8s ease-in-out infinite;
}

@keyframes coming-scan {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(250%);
  }
}

@keyframes coming-pulse {
  50% {
    transform: scale(1.65);
    opacity: 0.48;
  }
}

.rebuild-message {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.launch-countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.launch-countdown span {
  display: grid;
  gap: 4px;
  min-width: 64px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.launch-countdown strong {
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1;
}

.enterprise-header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 220ms ease,
    opacity 220ms ease;
  will-change: transform;
}

.enterprise-header {
  --header-edge: clamp(18px, 5vw, 72px);
  --menu-span: min(690px, 53vw);
}

.enterprise-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 124px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(34, 26, 22, 0.52) 0%,
    rgba(34, 26, 22, 0.38) 44%,
    rgba(34, 26, 22, 0.2) 72%,
    transparent 100%
  );
  backdrop-filter: blur(4px);
  mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 100%);
}

.enterprise-header.is-hidden,
.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
}

.standard-header {
  min-height: 86px;
  color: var(--white);
  background: rgba(34, 26, 22, 0.2);
  backdrop-filter: blur(10px);
}

.standard-header .brand {
  gap: 14px;
}

.standard-header .brand-mark {
  width: 46px;
  height: 46px;
  box-shadow: none;
}

.standard-header .brand-mark svg {
  width: 34px;
  height: 34px;
}

.standard-header .brand-text {
  font-size: 1.42rem;
  font-weight: 400;
}

.standard-header .brand-tagline {
  font-size: 0.58rem;
}

.standard-header .site-nav {
  width: min(690px, 56vw);
  gap: clamp(18px, 2vw, 30px);
  padding: 7px 0;
  color: #fff9f1;
  text-shadow: none;
  font-weight: 400;
  transform: none;
}

.standard-header .site-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(216, 185, 138, 0.68), rgba(255, 255, 255, 0.38));
}

.standard-header .site-nav > a,
.standard-header .nav-business-toggle {
  font-weight: 400;
  letter-spacing: 0.01em;
}

.enterprise-header.is-scrolled,
.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.enterprise-header.is-open,
.site-header.is-open {
  color: var(--white);
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.top-rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 34px;
  padding: 7px clamp(18px, 5vw, 72px);
  border-bottom: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-links,
.sensex-ticker {
  display: flex;
  align-items: center;
}

.top-links {
  grid-column: 3;
  justify-content: flex-end;
  gap: 0;
}

.sensex-ticker {
  grid-column: 2;
  justify-self: center;
  gap: 12px;
  min-width: max-content;
  color: rgba(255, 255, 255, 0.88);
}

.enterprise-header .sensex-ticker {
  position: absolute;
  left: calc(100% - var(--header-edge) - var(--menu-span));
}

.sensex-ticker strong {
  color: var(--sand);
}

.sensex-arrow {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

.sensex-ticker.is-up .sensex-arrow,
.sensex-ticker.is-up [data-sensex-points] {
  color: #4fd18b;
}

.sensex-ticker.is-down .sensex-arrow,
.sensex-ticker.is-down [data-sensex-points] {
  color: #ff7b72;
}

.sensex-ticker.is-neutral .sensex-arrow,
.sensex-ticker.is-neutral [data-sensex-points] {
  color: rgba(255, 255, 255, 0.78);
}

.enterprise-header.is-scrolled .top-rail,
.enterprise-header.is-open .top-rail {
  background: transparent;
}

.enterprise-header.is-scrolled .sensex-ticker,
.enterprise-header.is-open .sensex-ticker {
  color: rgba(255, 255, 255, 0.88);
}

.enterprise-header.is-scrolled .sensex-ticker strong,
.enterprise-header.is-open .sensex-ticker strong {
  color: var(--sand);
}

.enterprise-header.is-scrolled .sensex-ticker.is-neutral .sensex-arrow,
.enterprise-header.is-scrolled .sensex-ticker.is-neutral [data-sensex-points],
.enterprise-header.is-open .sensex-ticker.is-neutral .sensex-arrow,
.enterprise-header.is-open .sensex-ticker.is-neutral [data-sensex-points] {
  color: rgba(255, 255, 255, 0.78);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav > .brand {
  transform: translateY(-50px);
  gap: 15px;
}

.main-nav > .brand .brand-mark {
  width: 84px;
  height: 84px;
}

.main-nav > .brand .brand-mark svg {
  width: 63px;
  height: 63px;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.main-nav > .brand .brand-text {
  font-size: 2.475rem;
  font-weight: 400;
}

.brand-tagline {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.79rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--coffee));
  box-shadow: 0 12px 26px rgba(91, 64, 50, 0.3);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  font-size: 1.65rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 3.4vw, 56px);
  justify-content: center;
  padding: 7px 0;
  color: #fff9f1;
  background: transparent;
  text-shadow: 0 1px 5px rgba(20, 14, 11, 0.5);
  font-size: 0.94rem;
  font-weight: 400;
  transform: translateY(-32px);
}

.enterprise-header .site-nav {
  position: relative;
  width: var(--menu-span);
}

.enterprise-header .site-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.62),
    rgba(216, 185, 138, 0.76) 48%,
    rgba(255, 255, 255, 0.46)
  );
  opacity: 0.76;
}

.top-links {
  font-weight: 400;
}

.top-links a,
.site-nav > a,
.nav-business-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 clamp(10px, 1.25vw, 16px);
}

.site-nav > a,
.nav-business {
  flex: 0 0 auto;
}

.site-nav > a,
.nav-business-toggle {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.nav-business {
  position: relative;
  display: flex;
  justify-content: center;
}

.nav-business-toggle {
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-shadow: inherit;
  cursor: pointer;
}

.nav-business-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-business.is-open .nav-business-toggle::after,
.nav-business:focus-within .nav-business-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.business-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  gap: 6px;
  width: max-content;
  min-width: 188px;
  padding: 6px;
  border: 1px solid rgba(216, 185, 138, 0.24);
  border-radius: 8px;
  color: #fff9f1;
  background: rgba(34, 26, 22, 0.92);
  box-shadow: 0 18px 40px rgba(20, 14, 11, 0.24);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.business-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(216, 185, 138, 0.24);
  border-left: 1px solid rgba(216, 185, 138, 0.24);
  background: rgba(34, 26, 22, 0.92);
  transform: translateX(-50%) rotate(45deg);
}

.nav-business:hover .business-dropdown,
.nav-business:focus-within .business-dropdown,
.nav-business.is-open .business-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.business-dropdown a {
  display: block;
  min-width: 176px;
  padding: 10px 12px;
  color: inherit;
  line-height: 1.35;
  white-space: nowrap;
}

.business-dropdown a:hover,
.business-dropdown a:focus-visible {
  color: var(--sand);
  background: rgba(255, 255, 255, 0.06);
}

.top-links a:last-child {
  padding-right: 0;
}

.top-links a:not(:last-child)::after,
.site-nav > a:not(:last-child)::after,
.nav-business::after {
  display: none;
  content: none;
}

.top-links a:not(:last-child)::after {
  display: none;
}

@keyframes nav-divider-pulse {
  0%,
  100% {
    opacity: 0.24;
    transform: translateY(-50%) scaleY(0.55);
  }

  50% {
    opacity: 0.58;
    transform: translateY(-50%) scaleY(1);
  }
}

.site-nav > a,
.nav-business-toggle,
.business-dropdown a,
.top-rail a,
.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav > a:hover,
.nav-business-toggle:hover,
.top-rail a:hover,
.site-footer a:hover {
  color: var(--sand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.enterprise-hero,
.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--coffee);
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-image {
  width: 100%;
}

.hero-slide {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.018);
  transition:
    opacity 1800ms ease-in-out,
    filter 1800ms ease-in-out,
    transform 7200ms ease-out;
  will-change: opacity, filter, transform;
}

.hero-slide.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.hero-slide img,
.hero-image {
  object-fit: cover;
}

.enterprise-hero::after,
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 26, 22, 0.82) 0%, rgba(34, 26, 22, 0.58) 21%, rgba(34, 26, 22, 0.22) 42%, rgba(34, 26, 22, 0.04) 54%, transparent 64%);
  pointer-events: none;
}

.hero-fixed-copy {
  position: absolute;
  left: clamp(24px, 7vw, 92px);
  top: 52%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  text-align: left;
  color: var(--white);
  pointer-events: none;
  text-shadow: 0 2px 18px rgba(20, 14, 11, 0.32);
}

.hero-brand-line {
  display: block;
  width: clamp(344px, calc(22vw + 200px), 460px);
  height: 1px;
  margin: 20px 0 0;
  background: linear-gradient(90deg, var(--sand), rgba(216, 185, 138, 0.1));
}

.hero-feature-title {
  margin: 0;
  color: #f6ead9;
  font-size: clamp(2.475rem, 4.3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  min-height: 1.12em;
}

.hero-feature-line {
  display: block;
}

.hero-feature-line + .hero-feature-line {
  margin-top: 12px;
  font-size: 0.56em;
  line-height: 1.28;
}

.hero-feature-letter {
  display: inline-block;
  opacity: 0;
  transform: translateX(-13px);
}

.enterprise-hero.has-feature-title .hero-feature-letter {
  animation: hero-letter-reveal 330ms ease-out both;
  animation-delay: calc(var(--letter-index) * 52ms);
}

@keyframes hero-letter-reveal {
  from {
    opacity: 0;
    transform: translateX(-13px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.enterprise-hero-content,
.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) 9vh;
  padding-top: 170px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.enterprise-hero .eyebrow,
.hero .eyebrow,
.division-hero .eyebrow,
.construct-hero .eyebrow,
.impact-band .eyebrow,
.contact-section .eyebrow {
  color: #f1c987;
}

.enterprise-hero h1,
.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.enterprise-hero p:not(.eyebrow):not(.hero-feature-title),
.hero p:not(.eyebrow):not(.hero-feature-title) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions,
.construct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--clay);
}

.button.primary:hover {
  background: #834a34;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.button.text-link {
  color: var(--cocoa);
  border-color: var(--line);
  background: var(--soft);
}

.outline-arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid rgba(216, 185, 138, 0.82);
  border-radius: 999px;
  color: #f6ead9;
  background: rgba(33, 24, 21, 0.18);
  box-shadow: 0 12px 30px rgba(20, 14, 11, 0.18);
  backdrop-filter: blur(8px);
  font-weight: 500;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.outline-arrow-button:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  background: rgba(33, 24, 21, 0.32);
}

.section {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 7vw, 92px);
  background: var(--white);
}

.intro-panel h2,
.section-heading h2,
.feature-copy h2,
.impact-band h2,
.contact-copy h2,
.detail-panel h2,
.detail-copy h2,
.field-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.ticker-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.ticker-cards article {
  min-height: 166px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 30px;
  color: var(--white);
  background: var(--coffee);
}

.ticker-cards strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.ticker-cards span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.04rem;
}

.visual-blocks {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.visual-block {
  display: grid;
  grid-template-columns: minmax(320px, 1.12fr) minmax(300px, 0.88fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-block.is-reversed {
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
}

.visual-block.is-reversed .visual-media {
  order: 2;
}

.visual-media {
  display: block;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: var(--coffee);
}

.visual-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 380ms ease, filter 380ms ease;
}

.visual-block:hover .visual-media img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.visual-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.visual-copy > span {
  color: var(--clay);
  font-size: 1.05rem;
  font-weight: 900;
}

.visual-copy h3 {
  margin: 8px 0 16px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.04;
}

.visual-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(40px, 6vw, 76px);
  background: linear-gradient(135deg, #efe4d5 0%, #f8f4ed 58%, #ded0bd 100%);
  color: var(--ink);
}

.feature-image {
  display: grid;
  place-items: center;
}

.feature-image img {
  width: min(100%, 460px);
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(59, 42, 34, 0.16);
}

.feature-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
  padding: 0;
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.inline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.inline-list span {
  padding: 16px;
  border-left: 4px solid var(--sand);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--white);
}

.editorial-grid .section-heading {
  grid-column: 1 / -1;
}

.editorial-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.editorial-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(59, 42, 34, 0.12);
}

.editorial-grid img {
  height: 250px;
  object-fit: cover;
}

.editorial-grid h3,
.editorial-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.editorial-grid h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.editorial-grid p {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--muted);
}

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

.care-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(18px, 4vw, 34px);
}

.care-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(240px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(59, 42, 34, 0.09);
}

.care-card img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: var(--soft);
}

.care-card div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 38px);
}

.care-card span {
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.care-card h3 {
  margin: 12px 0 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.care-card p {
  margin: 0 0 24px;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--coffee);
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fdfaf5;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #1c1410;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

.division-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--coffee);
}

.division-hero img,
.division-hero::after {
  position: absolute;
  inset: 0;
  height: 100%;
}

.division-hero img {
  object-fit: cover;
}

.division-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(34, 26, 22, 0.92), rgba(34, 26, 22, 0.54), rgba(34, 26, 22, 0.18)),
    linear-gradient(0deg, rgba(34, 26, 22, 0.74), rgba(34, 26, 22, 0));
}

.division-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 90px) 8vh;
  padding-top: 120px;
}

.division-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 1.02;
}

.tagline {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-left: 4px solid var(--sand);
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
}

.portfolio-line {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.division-summary {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.construction-division-page .division-summary,
.construction-division-page .detail-copy p,
.construction-division-page .service-grid p,
.construction-division-page .detail-panel li {
  font-size: 0.96rem;
}

.construction-division-page .service-grid h3,
.construction-division-page .detail-panel h2 {
  font-size: 1.12rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
}

.detail-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-panel ul,
.detail-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: justify;
  text-align-last: left;
}

.division-services {
  background: var(--soft);
}

.service-grid,
.business-grid,
.project-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.business-grid,
.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.business-card,
.project-grid article,
.values-grid article,
.service-grid article {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(59, 42, 34, 0.07);
}

.business-card,
.service-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.business-card:hover,
.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 95, 66, 0.36);
  box-shadow: 0 18px 42px rgba(59, 42, 34, 0.13);
}

.business-card img,
.project-grid img {
  height: 230px;
  object-fit: cover;
}

.business-card div,
.project-grid article,
.values-grid article,
.service-grid article {
  padding: 24px;
}

.business-card span {
  color: var(--clay);
  font-weight: 900;
}

.business-card h3,
.project-grid h3,
.values-grid h3,
.service-grid h3 {
  margin: 8px 0 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.business-card p,
.project-grid p,
.values-grid p,
.service-grid p {
  margin: 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.business-card .division-label {
  margin: -2px 0 12px;
  color: var(--sage);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.construct-page {
  background: #211815;
  color: var(--white);
}

.construct-page .section-heading h2,
.construct-page .section-heading p:not(.eyebrow) {
  color: inherit;
}

.construct-page .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.construct-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.construct-hero img,
.construct-hero::after {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: -2;
}

.construct-hero img {
  object-fit: cover;
}

.construct-hero::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(33, 24, 21, 0.98), rgba(33, 24, 21, 0.78), rgba(33, 24, 21, 0.5)),
    linear-gradient(0deg, #211815 0%, rgba(33, 24, 21, 0.3) 62%);
}

.software-hero::after {
  background:
    linear-gradient(270deg, rgba(33, 24, 21, 0.96) 0%, rgba(33, 24, 21, 0.78) 24%, rgba(33, 24, 21, 0.38) 46%, rgba(33, 24, 21, 0.08) 66%, transparent 82%),
    linear-gradient(0deg, rgba(33, 24, 21, 0.38) 0%, transparent 48%);
}

.construct-hero-grid {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto 8vh;
  padding-top: 120px;
}

.software-hero .construct-hero-grid {
  display: grid;
  justify-items: end;
  width: min(1180px, calc(100% - 36px));
  margin-right: clamp(18px, 6vw, 86px);
  margin-left: auto;
}

.software-hero .construct-copy {
  max-width: 780px;
  text-align: right;
  text-shadow: 0 2px 20px rgba(20, 14, 11, 0.34);
  transform: translateX(30px);
}

.software-hero .construct-copy .eyebrow {
  animation: software-hero-copy-reveal 760ms ease-out both;
}

.construct-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.98;
  max-width: 940px;
}

.software-hero .construct-copy h1 {
  max-width: none;
  color: #f6ead9;
  font-size: clamp(2.475rem, 4.3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
}

.software-hero .portfolio-line {
  margin-left: auto;
  color: #f6ead9;
  font-size: clamp(1.386rem, 2.4vw, 1.876rem);
  font-weight: 400;
  line-height: 1.28;
}

.software-hero .software-login-actions {
  justify-content: flex-end;
}

.automation-landing img {
  object-position: center center;
}

.automation-landing .construct-lede {
  margin: 18px 0 0 auto;
  max-width: 640px;
  color: rgba(246, 234, 217, 0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.72;
  text-align: right;
}

.automation-landing .automation-badges {
  justify-content: flex-end;
}

.construction-hero img {
  object-position: center 62%;
}

.construction-hero .construction-hero-tagline {
  margin: 16px 0 0;
  color: #f6ead9;
  font-size: clamp(1.386rem, 2.4vw, 1.876rem);
  font-weight: 400;
  line-height: 1.28;
}

.construction-hero .division-summary {
  max-width: 760px;
  margin-left: auto;
  color: rgba(246, 234, 217, 0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.72;
  text-align: right;
  text-align-last: right;
}

.software-hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateX(-13px);
}

.software-hero.has-software-title .software-hero-letter {
  animation: hero-letter-reveal 330ms ease-out both;
  animation-delay: calc(var(--letter-index) * 42ms);
}

@keyframes software-hero-copy-reveal {
  from {
    opacity: 0;
    transform: translateX(24px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.construct-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.software-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.construct-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #2d211c;
}

.construct-strip div {
  padding: 28px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.construct-strip strong {
  display: block;
  color: var(--sand);
  font-size: 1.9rem;
  line-height: 1;
}

.construct-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.construct-intro,
.software-lab,
.field-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  background: #211815;
}

.builder-stack,
.lab-grid,
.module-grid,
.ai-grid,
.showcase-grid {
  display: grid;
  gap: 16px;
}

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

.builder-stack article,
.lab-grid article,
.ai-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.builder-stack span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--coffee);
  background: var(--sand);
  font-weight: 900;
}

.builder-stack h3,
.lab-grid h3,
.ai-grid h3 {
  margin: 16px 0 8px;
  color: var(--white);
  line-height: 1.2;
}

.builder-stack p,
.lab-grid p,
.ai-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.software-lab {
  grid-template-columns: minmax(300px, 0.78fr) minmax(320px, 1.22fr);
  padding-top: 0;
}

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

.construct-product {
  background:
    linear-gradient(135deg, rgba(246, 234, 217, 0.96), rgba(232, 214, 190, 0.82)),
    radial-gradient(circle at 80% 0%, rgba(159, 95, 66, 0.18), transparent 34%);
  color: var(--ink);
}

.construct-product .section-heading {
  max-width: 980px;
}

.construct-product .section-heading h2 {
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.construct-product .section-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.construct-product .section-heading h2 a:hover,
.construct-product .section-heading h2 a:focus-visible {
  color: var(--cocoa);
}

.construct-product .section-heading p:not(.eyebrow),
.construct-product-grid p {
  color: var(--muted);
}

.construct-product-tagline {
  margin-top: 18px;
  color: var(--cocoa) !important;
  font-size: clamp(1.35rem, 3vw, 2.35rem) !important;
  line-height: 1.16;
}

.construct-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.construct-product-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(159, 95, 66, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 36px rgba(59, 42, 34, 0.08);
}

.construct-product-grid span {
  color: var(--clay);
  font-weight: 800;
}

.construct-product-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.construct-modules,
.field-section {
  background: var(--paper);
  color: var(--ink);
}

.construct-modules .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.module-grid,
.ai-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.module-grid article,
.ai-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
}

.module-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(59, 42, 34, 0.07);
}

.module-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--clay);
  font-weight: 900;
}

.module-grid h3,
.ai-grid h3 {
  margin: 18px 0 10px;
  line-height: 1.18;
}

.module-grid p,
.field-copy p {
  margin: 0;
  color: var(--muted);
}

.ai-section,
.dashboard-showcase {
  background: #211815;
}

.field-section {
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  align-items: center;
}

.login-page {
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  background:
    linear-gradient(90deg, rgba(33, 24, 21, 0.94), rgba(33, 24, 21, 0.68), rgba(33, 24, 21, 0.34)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=2200&q=85") center / cover;
  color: var(--white);
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(28px, 7vw, 86px);
  width: min(1180px, 100%);
  min-height: calc(100vh - 204px);
  margin: 0 auto;
}

.login-visual h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.96;
}

.login-visual p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.login-status {
  display: inline-grid;
  gap: 5px;
  margin-top: 26px;
  padding: 15px 18px;
  border-left: 3px solid var(--sand);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.login-status span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.login-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(216, 185, 138, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 24px 70px rgba(20, 14, 11, 0.28);
  backdrop-filter: blur(12px);
}

.login-panel h2 {
  margin: 0 0 4px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.login-panel label {
  display: grid;
  gap: 8px;
  color: var(--cocoa);
  font-weight: 700;
}

.login-panel input {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf2;
  font: inherit;
}

.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.phone-shell {
  width: min(330px, 100%);
  min-height: 620px;
  margin: auto;
  padding: 18px;
  border: 1px solid #cdbba8;
  border-radius: 38px;
  background: #211815;
  box-shadow: 0 30px 70px rgba(59, 42, 34, 0.24);
}

.phone-screen {
  min-height: 582px;
  padding: 28px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #2d211c, #5b4032);
}

.phone-screen h3 {
  margin: 0 0 24px;
  color: var(--white);
}

.phone-screen p {
  margin: 0 0 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.field-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.field-list span {
  padding: 16px;
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

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

.showcase-grid span {
  min-height: 120px;
  display: grid;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.dashboard-graph-grid {
  align-items: stretch;
}

.dashboard-graph-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 214px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.graph-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.graph-card-head span {
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.graph-card-head strong {
  color: var(--sand);
  font-size: 1.35rem;
  line-height: 1;
}

.mini-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-kpi-row b {
  padding: 8px;
  border-radius: 8px;
  background: rgba(216, 185, 138, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.bar-chart,
.forecast-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 82px;
  padding: 10px 8px 0;
  border-bottom: 1px solid rgba(216, 185, 138, 0.22);
  background: repeating-linear-gradient(0deg, transparent 0 19px, rgba(255, 255, 255, 0.06) 20px);
}

.bar-chart i,
.forecast-chart span {
  flex: 1;
  height: var(--value);
  min-height: 16px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #d8b98a, #8e6d4a);
}

.line-chart {
  height: 126px;
  padding: 6px 0 0;
  border-radius: 8px;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px);
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.line-chart polyline {
  fill: none;
  stroke: #d8b98a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-chart path {
  fill: rgba(216, 185, 138, 0.16);
}

.timeline-chart {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px 0;
}

.timeline-chart::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  top: 50%;
  height: 1px;
  background: rgba(216, 185, 138, 0.28);
}

.timeline-chart span {
  position: relative;
  left: var(--start);
  width: var(--width);
  min-height: 0;
  display: block;
  padding: 9px 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 185, 138, 0.92), rgba(142, 109, 74, 0.84));
  color: #211815;
  font-size: 0.72rem;
  font-weight: 900;
}

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

.heatmap-grid i {
  min-height: 30px;
  border-radius: 8px;
}

.heatmap-grid .low { background: rgba(216, 185, 138, 0.22); }
.heatmap-grid .mid { background: rgba(216, 185, 138, 0.5); }
.heatmap-grid .high { background: rgba(216, 185, 138, 0.9); }

.forecast-chart span {
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #f4d59d, #d8b98a 58%, rgba(216, 185, 138, 0.28));
}

.donut-chart,
.safety-rings i {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#d8b98a 0 var(--progress), rgba(255, 255, 255, 0.12) var(--progress) 360deg);
}

.donut-chart {
  width: 118px;
  height: 118px;
  margin: 0 auto;
}

.donut-chart b,
.safety-rings b {
  display: grid;
  place-items: center;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: #211815;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.vendor-score-list {
  display: grid;
  gap: 12px;
}

.vendor-score-list span {
  min-height: 0;
  display: grid;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.vendor-score-list b {
  display: block;
  width: var(--value);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8b98a, #8e6d4a);
}

.safety-rings {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.safety-rings i {
  width: 84px;
  height: 84px;
}

@media (max-width: 1100px) {
  .editorial-grid,
  .care-layout,
  .service-grid,
  .project-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .top-rail {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .top-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .sensex-ticker {
    position: static;
    justify-self: start;
    min-width: 0;
    flex-wrap: wrap;
    transform: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: none;
    transform: none;
    width: auto;
  }

  .enterprise-header .site-nav::before {
    display: none;
  }

  .site-nav > a,
  .nav-business-toggle {
    flex: none;
    justify-content: flex-start;
    padding: 14px 12px;
  }

  .nav-business {
    display: block;
    flex: none;
  }

  .nav-business::after,
  .site-nav > a:not(:last-child)::after {
    display: none;
  }

  .business-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 8px 8px;
    padding: 0 0 4px 16px;
    border: 0;
    color: var(--muted);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .business-dropdown::before {
    display: none;
  }

  .nav-business.is-open .business-dropdown {
    display: grid;
    transform: none;
  }

  .business-dropdown a {
    padding: 10px 12px;
    white-space: normal;
  }

  .enterprise-header.is-open .site-nav,
  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero-fixed-copy {
    left: 20px;
    top: 54%;
    width: calc(100% - 40px);
  }

  .hero-feature-title {
    font-size: clamp(2rem, 8.5vw, 2.475rem);
  }

  .hero-brand-line {
    width: min(100%, 344px);
    margin: 16px 0 0;
  }

  .intro-panel,
  .visual-block,
  .visual-block.is-reversed,
  .feature-band,
  .contact-section,
  .detail-layout,
  .construct-hero-grid,
  .construct-intro,
  .software-lab,
  .field-section,
  .construct-product-grid,
  .login-shell {
    grid-template-columns: 1fr;
  }

  .software-hero .construct-copy {
    transform: none;
  }

  .visual-block.is-reversed .visual-media {
    order: 0;
  }

  .visual-media {
    height: clamp(250px, 54vw, 340px);
    min-height: 0;
  }

  .feature-band {
    gap: 28px;
    padding: 34px 20px;
  }

  .feature-copy {
    max-width: none;
  }

  .feature-image img {
    width: min(100%, 360px);
  }

  .ticker-cards,
  .construct-strip,
  .inline-list,
  .field-list,
  .builder-stack,
  .lab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .enterprise-hero-content {
    padding-top: 190px;
    margin-bottom: 330px;
  }

}

@media (max-width: 580px) {
  .site-header,
  .main-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .main-nav > .brand {
    gap: 9px;
  }

  .main-nav > .brand .brand-mark {
    width: 60px;
    height: 60px;
  }

  .main-nav > .brand .brand-mark svg {
    width: 45px;
    height: 45px;
  }

  .main-nav > .brand .brand-text {
    font-size: 1.65rem;
  }

  .brand-tagline {
    margin-top: 5px;
    font-size: 0.57rem;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ticker-cards,
  .editorial-grid,
  .care-layout,
  .service-grid,
  .project-grid,
  .construct-strip,
  .showcase-grid,
  .inline-list,
  .field-list,
  .builder-stack,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .care-card img {
    min-height: 240px;
  }

  .ticker-cards article {
    min-height: 126px;
  }
}

/* Property advisory landing page */
.property-page {
  --property-green: var(--coffee);
  --property-green-dark: var(--ink);
  --property-gold: var(--sand);
  --property-cream: var(--soft);
  --property-copy: var(--muted);
  --property-border: var(--line);
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

.property-page h1,
.property-page h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.property-page section[id] {
  scroll-margin-top: 86px;
}

.property-page .site-nav {
  gap: clamp(18px, 2vw, 30px);
  color: var(--cocoa);
  background: transparent;
  backdrop-filter: none;
  text-shadow: none;
  transform: none;
}

.property-page .site-nav > a {
  flex: 0 0 auto;
  min-height: auto;
  padding: 8px 4px;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.02em;
}

.property-page .site-nav > a::after {
  display: none;
}

.property-page .site-nav > a:hover {
  color: var(--property-gold);
}

.property-page .standard-header .site-nav {
  width: min(960px, 68vw);
  color: #fff9f1;
}

.property-page .standard-header .site-nav > a,
.property-page .standard-header .nav-business-toggle {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 4px;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.property-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-content: center;
  padding: 152px clamp(20px, 7vw, 94px) 132px;
  color: var(--white);
  overflow: visible;
}

.property-hero-image,
.property-hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.property-hero-image {
  object-fit: cover;
  object-position: center;
}

.property-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(34, 26, 22, 0) 0%,
    rgba(34, 26, 22, 0.04) 34%,
    rgba(34, 26, 22, 0.68) 68%,
    rgba(34, 26, 22, 0.9) 100%
  );
}

.property-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
  margin-left: auto;
  text-align: right;
  transform: translateY(-76px);
}

.property-kicker {
  margin: 0 0 16px;
  color: var(--property-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.property-hero h1 {
  max-width: 660px;
  margin: 0 0 22px;
  font-size: clamp(3rem, 5.3vw, 4.75rem);
  line-height: 1.1;
}

.property-hero .property-kicker[data-property-kicker] {
  opacity: 0;
  transform: translateY(12px);
}

.property-hero .property-kicker[data-property-kicker].is-visible {
  animation: property-kicker-reveal 520ms ease-out both;
}

.property-hero-word {
  display: inline-block;
  white-space: nowrap;
}

.property-hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateX(-13px);
}

.property-hero.has-property-title .property-hero-letter {
  animation: hero-letter-reveal 330ms ease-out both;
  animation-delay: calc(var(--letter-index) * 42ms);
}

@keyframes property-kicker-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
  }

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

.property-hero-copy > p:not(.property-kicker) {
  max-width: 565px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.property-hero-enquiry {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: calc(55% + 125px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(241, 201, 135, 0.98);
  border-radius: 999px;
  color: #fff8ec;
  background: rgba(129, 78, 47, 0.78);
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(34, 26, 22, 0.32), 0 0 0 4px rgba(241, 201, 135, 0.12);
  transform: translateX(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.property-hero-enquiry:hover {
  border-color: #f1c987;
  background: rgba(159, 95, 66, 0.9);
  transform: translateX(-50%) translateY(-2px);
}

.property-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.91rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.property-button-primary {
  color: var(--white);
  background: var(--property-gold);
}

.property-button-primary:hover {
  background: #ad8350;
}

.property-search {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(1130px, calc(100% - 40px));
  padding: 25px clamp(20px, 3vw, 34px) 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(59, 42, 34, 0.15);
  transform: translate(-50%, 50%);
}

.property-search h2 {
  margin: 0 0 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.property-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 18px;
}

.property-fields label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-fields select {
  width: 100%;
  height: 52px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid #dedbd2;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
  text-transform: none;
}

.property-fields button {
  height: 52px;
  padding: 0 27px;
  border: 0;
  color: var(--white);
  background: var(--property-green);
  font: inherit;
  font-size: 0.91rem;
  font-weight: 700;
  cursor: pointer;
}

.property-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1130px;
  margin: 100px auto 0;
  padding: 42px 0 36px;
  border-bottom: 1px solid var(--property-border);
}

.property-highlights article {
  display: grid;
  justify-items: center;
  gap: 7px;
  border-right: 1px solid var(--property-border);
}

.property-highlights article:last-child {
  border-right: 0;
}

.property-highlights strong {
  color: var(--property-green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 600;
}

.property-highlights span {
  color: var(--property-copy);
  font-size: 0.88rem;
}

.property-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(65px, 8vw, 88px) clamp(20px, 4vw, 35px);
}

.property-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 42px;
}

.property-heading .property-kicker {
  grid-column: 1 / -1;
}

.property-heading h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 2.75rem);
  line-height: 1.22;
}

.property-heading > a {
  margin-bottom: 8px;
  color: var(--property-green);
  font-weight: 700;
}

.property-heading > a span {
  margin-left: 9px;
  color: var(--property-gold);
}

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

.listing-card {
  border: 1px solid var(--property-border);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(59, 42, 34, 0.1);
}

.listing-photo {
  position: relative;
}

.listing-photo img {
  height: 258px;
  object-fit: cover;
}

.listing-photo span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--property-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-content {
  padding: 21px 22px 24px;
}

.listing-content p {
  margin: 0 0 9px;
  color: var(--property-copy);
  font-size: 0.81rem;
}

.listing-content h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.47rem;
}

.listing-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--property-border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.listing-content > strong {
  color: var(--property-green);
  font-size: 0.96rem;
}

.property-about {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 78px);
  padding: clamp(65px, 8vw, 94px) max(calc((100vw - 1130px) / 2), 20px);
  background: var(--property-cream);
}

.property-about-photo {
  position: relative;
  padding: 0 0 34px 34px;
}

.property-about-photo::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 55%;
  background: var(--property-green);
}

.property-about-photo img {
  position: relative;
  height: clamp(400px, 42vw, 514px);
  object-fit: cover;
}

.property-about-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  line-height: 1.25;
}

.property-about-copy > p:not(.property-kicker) {
  margin: 0 0 34px;
  color: var(--property-copy);
  line-height: 1.8;
}

.property-points {
  display: grid;
  gap: 20px;
}

.property-points article {
  padding-left: 20px;
  border-left: 2px solid var(--property-gold);
}

.property-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--property-green);
}

.property-points span {
  color: var(--property-copy);
  font-size: 0.92rem;
}

.property-services {
  padding-top: clamp(72px, 8vw, 92px);
  padding-bottom: clamp(72px, 8vw, 100px);
}

.property-heading-centered {
  display: block;
  text-align: center;
}

.property-heading-centered h2 {
  margin: 0 auto;
}

.property-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.property-service-grid article {
  padding: 32px 25px;
  border: 1px solid var(--property-border);
  transition: border-color 180ms ease, background 180ms ease;
}

.property-service-grid article:hover {
  border-color: transparent;
  background: var(--property-cream);
}

.property-service-grid article > span {
  color: var(--property-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.property-service-grid h3 {
  margin: 20px 0 13px;
  color: var(--property-green);
  font-size: 1.08rem;
}

.property-service-grid p {
  margin: 0;
  color: var(--property-copy);
  font-size: 0.9rem;
  line-height: 1.7;
}

.property-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(35px, 7vw, 78px);
  padding: clamp(55px, 7vw, 75px) max(calc((100vw - 1130px) / 2), 20px);
  color: var(--white);
  background: var(--property-green);
}

.property-cta h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.25;
}

.property-cta > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.property-enquiry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.property-enquiry.contact-form input {
  height: 54px;
  padding: 0 16px;
  border: 1px solid #dfddd5;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.property-enquiry.contact-form input::placeholder {
  color: #7a8681;
}

.property-enquiry .property-button {
  height: 54px;
  cursor: pointer;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 29px max(calc((100vw - 1130px) / 2), 20px);
  color: #98a59f;
  background: var(--property-green-dark);
  font-size: 0.82rem;
}

.property-footer p {
  margin: 0;
}

.email-page {
  background: var(--paper);
}

.email-hero {
  padding: 160px clamp(20px, 7vw, 92px) 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(34, 26, 22, 0.92), rgba(59, 42, 34, 0.72)),
    radial-gradient(circle at 76% 18%, rgba(216, 185, 138, 0.2), transparent 34%);
}

.email-hero h1 {
  max-width: 840px;
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
}

.email-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.email-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  background: var(--white);
}

.email-grid article,
.email-process,
.email-notes {
  border: 1px solid var(--line);
  background: var(--white);
}

.email-grid article {
  padding: 30px;
}

.email-grid span {
  color: var(--sand);
  font-size: 1.65rem;
  font-weight: 800;
}

.email-grid p,
.email-process li,
.email-notes p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--clay);
  font-weight: 800;
}

.email-process,
.email-notes {
  margin: 0 clamp(20px, 5vw, 72px) 42px;
}

.email-process ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.email-notes a {
  color: var(--clay);
  font-weight: 800;
}

.automation-page {
  color: var(--ink);
  background: var(--ivory);
}

.automation-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  min-height: 760px;
  padding: 150px clamp(20px, 7vw, 92px) 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 185, 138, 0.24), transparent 30%),
    linear-gradient(110deg, rgba(34, 26, 22, 0.96), rgba(59, 42, 34, 0.84));
  overflow: hidden;
}

.automation-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -36% 28%;
  height: 460px;
  border-radius: 999px;
  background: rgba(216, 185, 138, 0.14);
  filter: blur(16px);
}

.automation-hero-copy,
.automation-hero-panel {
  position: relative;
  z-index: 1;
}

.automation-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  line-height: 0.94;
}

.automation-tagline {
  margin: 0 0 24px;
  color: var(--sand);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: 0.04em;
}

.automation-hero-copy > p:not(.eyebrow):not(.automation-tagline) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.automation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.automation-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(216, 185, 138, 0.28);
  border-radius: 999px;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.automation-hero-panel {
  min-height: 520px;
}

.automation-hero-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(10, 8, 7, 0.35);
}

.automation-device-card {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: -24px;
  width: min(330px, calc(100% - 32px));
  padding: 26px;
  border: 1px solid rgba(216, 185, 138, 0.32);
  border-radius: 22px;
  color: var(--white);
  background: rgba(34, 26, 22, 0.86);
  backdrop-filter: blur(14px);
}

.automation-device-card span {
  color: var(--sand);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.automation-device-card strong {
  display: block;
  margin: 12px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.automation-device-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.automation-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -1px clamp(20px, 7vw, 92px) 0;
  background: rgba(216, 185, 138, 0.36);
  box-shadow: 0 24px 70px rgba(41, 30, 25, 0.1);
}

.automation-strip article {
  padding: 34px 30px;
  background: var(--white);
}

.automation-strip span,
.automation-feature-grid .automation-icon {
  color: var(--sand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.automation-strip h2 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.automation-strip p,
.automation-section > p,
.automation-works p,
.automation-feature-grid p,
.automation-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.automation-section {
  padding: 90px clamp(20px, 7vw, 92px);
}

.automation-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.automation-intro h2,
.automation-works h2,
.automation-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 1.04;
}

.automation-intro > p {
  margin: 0;
  font-size: 1.08rem;
}

.automation-works {
  margin: 0 clamp(20px, 7vw, 92px);
  padding: 64px;
  border-radius: 30px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(34, 26, 22, 0.94), rgba(80, 55, 42, 0.86)),
    url("img/home_automation.jpeg") center / cover;
}

.automation-works p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

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

.automation-feature-grid article {
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(216, 185, 138, 0.34);
  border-radius: 22px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.automation-feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(41, 30, 25, 0.1);
}

.automation-feature-grid .automation-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--property-green);
  background: var(--property-cream);
  letter-spacing: 0.04em;
}

.automation-feature-grid h3 {
  margin: 22px 0 12px;
  font-size: 1.12rem;
}

.automation-feature-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.automation-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 7vw, 92px) 90px;
  padding: 46px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(120deg, var(--property-green), var(--property-brown));
}

.automation-cta p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.automation-cta a {
  flex: 0 0 auto;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
}

.automation-cta a:hover {
  color: var(--sand);
}

@media (max-width: 1000px) {
  .property-fields,
  .property-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-hero,
  .automation-intro {
    grid-template-columns: 1fr;
  }

  .automation-hero-panel,
  .automation-hero-panel img {
    min-height: 0;
    height: auto;
  }

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

  .automation-works {
    padding: 42px;
  }

  .automation-cta {
    display: block;
  }

  .automation-cta a {
    display: inline-block;
    margin-top: 24px;
  }

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

  .listing-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
  }

  .property-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .property-page .site-nav > a {
    padding: 13px 12px;
  }

  .property-page .site-nav > a:not(:last-child)::after {
    display: none;
  }

  .property-page .nav-toggle {
    color: var(--property-green);
    border-color: rgba(59, 42, 34, 0.18);
  }

  .property-hero {
    min-height: 800px;
    padding-top: 126px;
    padding-bottom: 235px;
    overflow: visible;
  }

  .property-hero-enquiry {
    top: auto;
    bottom: 71px;
  }

  .property-search {
    transform: translate(-50%, 42%);
  }

  .property-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
    margin-top: 150px;
  }

  .property-highlights article:nth-child(2) {
    border-right: 0;
  }

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

  .property-about-photo {
    max-width: 570px;
  }

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

@media (max-width: 620px) {
  .property-hero {
    display: block;
    min-height: 0;
    padding: 118px 20px 42px;
    overflow: hidden;
  }

  .property-hero-copy {
    transform: translateY(-22px);
  }

  .property-hero-enquiry {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    z-index: 1;
    margin: 149px auto 0;
    transform: none;
  }

  .property-hero-enquiry:hover {
    transform: translateY(-2px);
  }

  .property-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3rem);
  }

  .property-button {
    width: 100%;
  }

  .property-search {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 30px);
    margin: 46px auto 0;
    padding: 21px 17px 20px;
    transform: none;
  }

  .property-fields,
  .property-highlights,
  .listing-grid,
  .property-service-grid,
  .automation-strip,
  .automation-feature-grid,
  .property-enquiry {
    grid-template-columns: 1fr;
  }

  .automation-hero {
    padding: 126px 20px 58px;
  }

  .automation-badges,
  .automation-cta {
    display: block;
  }

  .automation-badges span {
    display: inline-block;
    margin: 0 8px 8px 0;
  }

  .automation-strip {
    margin: 0 20px;
  }

  .automation-section {
    padding: 58px 20px;
  }

  .automation-works,
  .automation-cta {
    margin: 0 20px 58px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .automation-device-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -52px auto 0;
  }

  .property-highlights {
    margin-top: 0;
    padding-top: 32px;
  }

  .property-highlights article,
  .property-highlights article:nth-child(2) {
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--property-border);
  }

  .property-heading {
    display: block;
  }

  .property-heading > a {
    display: inline-block;
    margin-top: 22px;
  }

  .listing-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .property-about-photo {
    padding: 0 0 21px 21px;
  }

  .property-about-photo img {
    height: 365px;
  }

  .property-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
