:root {
  --ink: #071c3d;
  --ink-2: #0e2f5f;
  --paper: #ffffff;
  --soft: #f4f7f7;
  --stone: #e8edf0;
  --muted: #66717f;
  --orange: #f37319;
  --orange-2: #ff9a3d;
  --sage: #9eb2a8;
  --shadow: 0 24px 70px rgba(7, 28, 61, 0.14);
  --radius: 8px;
  --max: 1180px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(244, 247, 247, 0.7), rgba(255, 255, 255, 0) 32rem),
    var(--paper);
}

body::before {
  position: fixed;
  inset: auto 0 0;
  z-index: 0;
  height: min(58vw, 760px);
  min-height: 360px;
  content: "";
  background: url("../public/assets/mountain-embossment.png") bottom center / 100% auto no-repeat;
  opacity: 0.62;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

.cursor-light {
  --x: 50vw;
  --y: 20vh;
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: radial-gradient(circle 260px at var(--x) var(--y), rgba(243, 115, 25, 0.13), transparent 70%);
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: min(calc(100% - 32px), 1220px);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(7, 28, 61, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  transition: height 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(7, 28, 61, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 6px;
  background: white;
  padding: 3px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  color: rgba(7, 28, 61, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--orange);
  transition: right 240ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.desktop-nav a.is-active {
  color: var(--ink);
}

.desktop-nav a.is-active::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(7, 28, 61, 0.16);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  border-radius: 8px;
  background: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.mobile-menu {
  position: fixed;
  top: 104px;
  left: 16px;
  right: 16px;
  z-index: 35;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--stone);
  font-weight: 800;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 31, 0.88), rgba(3, 14, 31, 0.5) 42%, rgba(3, 14, 31, 0.1)),
    linear-gradient(0deg, rgba(3, 14, 31, 0.92), rgba(3, 14, 31, 0.05) 54%);
}

.page-grid,
.section-space,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding: 146px 0 86px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.portfolio-top h2,
.process-copy h2,
.contact-card h2,
.enquiry-form h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 5.2vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), #db5f12);
  box-shadow: 0 18px 36px rgba(243, 115, 25, 0.26);
}

.button.primary:hover {
  box-shadow: 0 22px 46px rgba(243, 115, 25, 0.34);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
  background: rgba(7, 28, 61, 0.38);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button.secondary:hover {
  background: rgba(7, 28, 61, 0.54);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.button.full {
  width: 100%;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.project-mini,
.hero-metrics,
.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(17, 45, 78, 0.64), rgba(7, 28, 61, 0.48));
  box-shadow: 0 22px 60px rgba(1, 12, 29, 0.34);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.project-mini {
  padding: 24px;
}

.project-mini span,
.section-label,
.property-body span,
.visual-overlay span,
.highlight-preview span {
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-mini strong {
  display: block;
  margin-top: 8px;
  font-size: 1.9rem;
  line-height: 1.05;
}

.project-mini small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.hero-metrics div {
  min-height: 124px;
  padding: 18px;
  border-right: 1px solid rgba(184, 204, 226, 0.18);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 800;
}

.glass-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  color: white;
  text-align: left;
}

.glass-card span {
  font-weight: 900;
}

.glass-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 240ms ease;
}

.glass-card:hover svg {
  transform: translate(4px, -4px);
}

.scroll-preview {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
}

.scroll-preview span {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, white);
  animation: scrollLine 1800ms ease-in-out infinite;
}

.scroll-preview p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-space {
  padding: clamp(40px, 5vw, 68px) 0;
}

.home-about {
  padding: clamp(28px, 4vw, 48px) 0;
}

.home-about-inner {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  margin-inline: auto;
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid rgba(7, 28, 61, 0.12);
  border-bottom: 1px solid rgba(7, 28, 61, 0.12);
}

.home-about h2 {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
}

.home-about .section-label {
  color: #c95f18;
}

.home-about-copy {
  display: grid;
  gap: 18px;
}

.home-about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.home-about-copy a {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
}

.inner-page {
  min-height: 100vh;
  padding-top: 118px;
}

.page-hero {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  padding: clamp(54px, 8vw, 104px) 0 clamp(38px, 7vw, 82px);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.about-document-hero {
  grid-template-columns: minmax(0, 820px);
  align-items: start;
}

.about-document-page .page-hero {
  padding-bottom: clamp(20px, 4vw, 46px);
}

.about-document-page .about-story {
  padding-top: clamp(28px, 5vw, 64px);
}

.about-document-page .story-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.page-hero-copy h1,
.story-copy h2,
.about-cta-inner h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero-copy p:not(.section-label),
.about-cta-inner p:not(.section-label) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.page-hero-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(7, 28, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(7, 28, 61, 0.1);
}

.page-hero-card span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-card strong {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.06;
}

.page-hero-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.about-copy h2,
.portfolio-top h2,
.process-copy h2,
.contact-card h2,
.enquiry-form h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.about-section {
  position: relative;
}

.about-layout {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  margin-inline: auto;
}

.about-copy {
  position: sticky;
  top: 120px;
}

.about-copy h2 {
  max-width: 560px;
}

.about-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(7, 28, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(7, 28, 61, 0.08);
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--stone);
}

.about-stat-grid div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: white;
}

.about-stat-grid strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.65rem;
  line-height: 0.9;
}

.about-stat-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-story {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 120px;
}

.story-copy h2 {
  max-width: 560px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.story-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(7, 28, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 60px rgba(7, 28, 61, 0.08);
}

.story-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.about-page-stats {
  margin-top: clamp(24px, 5vw, 48px);
}

.about-cta {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.about-cta-inner {
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 28, 61, 0.94), rgba(7, 28, 61, 0.68)),
    url("../public/assets/hero-mountain-construction.png") center/cover;
  box-shadow: var(--shadow);
}

.about-cta-inner h2,
.about-cta-inner p:not(.section-label) {
  color: white;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
}

.project-visual,
.contact-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-visual img,
.contact-media img,
.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-visual:hover img,
.property-card:hover img {
  transform: scale(1.06);
}

.visual-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: white;
  background: rgba(7, 28, 61, 0.76);
  backdrop-filter: blur(16px);
}

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

.project-console,
.contact-card {
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.project-console {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  padding: clamp(24px, 4vw, 38px);
}

.console-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.console-header h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.console-header p {
  margin: 10px 0 0;
  color: var(--muted);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #126b4b;
  font-size: 0.78rem;
  font-weight: 900;
}

.live-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: #1fc982;
  box-shadow: 0 0 0 8px rgba(31, 201, 130, 0.12);
}

.highlight-tabs,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-tabs {
  margin-top: 32px;
}

.highlight-tabs button,
.filter-group button {
  min-height: 42px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--muted);
  background: white;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.highlight-tabs button.is-active,
.filter-group button.is-active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.highlight-preview {
  margin-top: auto;
  padding: 28px 0;
}

.highlight-preview h4 {
  max-width: 440px;
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.2vw, 3.15rem);
  line-height: 1;
}

.highlight-preview p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.wide-band {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 28, 61, 0.96), rgba(14, 47, 95, 0.92)),
    url("../public/assets/development-site.jpg") center/cover;
  box-shadow: var(--shadow);
}

.wide-band .section-heading h2 {
  color: white;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.advantage-card {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.advantage-card span {
  color: var(--orange-2);
  font-weight: 900;
}

.advantage-card h3 {
  margin: 46px 0 0;
  font-size: 1.25rem;
  line-height: 1.12;
}

.advantage-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.portfolio-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.portfolio-top h2 {
  max-width: 620px;
}

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

.property-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(7, 28, 61, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease, box-shadow 300ms ease;
}

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

.property-card:hover {
  box-shadow: 0 28px 70px rgba(7, 28, 61, 0.14);
}

.property-card img {
  height: 270px;
}

.property-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.property-body strong {
  display: block;
  margin-top: 6px;
  font-size: 1.42rem;
  line-height: 1.1;
}

.property-body p {
  margin: 18px 0 0;
  color: var(--muted);
}

.property-body footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.property-body small {
  color: var(--muted);
  font-weight: 800;
}

.property-body button {
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff0e6;
  font-size: 0.8rem;
  font-weight: 900;
}

.property-more-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.process {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-copy p:not(.section-label) {
  max-width: 430px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 42px rgba(7, 28, 61, 0.06);
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item span {
  color: var(--orange);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.35rem;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.contact-media {
  display: none;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: clamp(30px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(3, 18, 36, 0.98), rgba(10, 35, 65, 0.96)),
    url("../public/assets/mountain-embossment.png") right bottom / min(640px, 58vw) auto no-repeat;
  border: 1px solid rgba(255, 118, 22, 0.24);
  box-shadow: 0 28px 90px rgba(3, 18, 36, 0.18);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card .section-label {
  color: rgba(255, 168, 94, 0.94);
}

.contact-card h2 {
  color: rgba(255, 199, 94, 0.95);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.08;
}

.contact-card p:not(.section-label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
}

.contact-list a,
.contact-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--soft);
}

.contact-enquiry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 30px;
}

.contact-enquiry label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-enquiry .wide-field {
  grid-column: 1 / -1;
}

.contact-enquiry input,
.contact-enquiry select,
.contact-enquiry textarea {
  min-height: 58px;
  border-color: rgba(255, 168, 94, 0.34);
  color: white;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-enquiry textarea {
  min-height: 116px;
}

.contact-enquiry input::placeholder,
.contact-enquiry textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.contact-enquiry .button {
  grid-column: 1 / -1;
  min-height: 58px;
  margin-top: 6px;
  border-radius: 8px;
  color: #061526;
  background: linear-gradient(135deg, #f3b45d, var(--orange));
  box-shadow: 0 18px 36px rgba(243, 115, 25, 0.24);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-enquiry .button:hover {
  box-shadow: 0 22px 46px rgba(243, 115, 25, 0.34);
}

@media (min-width: 981px) {
  .contact {
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .contact-card {
    order: 1;
    min-height: 720px;
    padding: clamp(34px, 3.6vw, 54px);
  }

  .contact-card h2 {
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    line-height: 1.08;
  }

  .contact-card p:not(.section-label) {
    max-width: 40ch;
  }

  .contact > .contact-card .contact-enquiry {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 24px;
  }

  .contact > .contact-card .contact-enquiry .wide-field {
    grid-column: 1;
  }

  .contact-media {
    order: 2;
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: 18px;
    min-height: 720px;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-media img {
    min-height: 0;
    border: 1px solid rgba(7, 28, 61, 0.12);
    border-radius: 8px;
    box-shadow: 0 22px 64px rgba(7, 28, 61, 0.16);
  }
}

.icon-circle {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: clamp(48px, 6vw, 76px) max(20px, calc((100vw - var(--max)) / 2)) clamp(56px, 7vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, #061526 0%, #082445 48%, #03172f 100%);
  border-top: 2px solid rgba(255, 118, 22, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 36, 0.98), rgba(3, 18, 36, 0.78)),
    url("../public/assets/mountain-embossment.png") right bottom / min(760px, 72vw) auto no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(4, minmax(135px, 0.72fr));
  gap: clamp(24px, 3.6vw, 58px);
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-brand {
  display: grid;
  gap: 10px;
  max-width: 330px;
}

.site-footer strong {
  color: white;
}

.footer-heading {
  margin: 0 0 4px;
  color: rgba(255, 168, 94, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.1;
}

.footer-copy,
.footer-brand span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.footer-copy b {
  color: white;
}

.site-footer a {
  font-weight: 800;
}

.footer-strip {
  width: 100%;
  padding: 4px 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-links {
  display: grid;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 9px;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
}

.footer-links a {
  width: fit-content;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.careers-page {
  padding-bottom: 0;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.career-details {
  display: grid;
  gap: 18px;
}

.career-details h2 {
  margin: 0;
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.career-details p:not(.section-label) {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.career-points {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.career-points span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 900;
}

.career-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(7, 28, 61, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 239, 0.9)),
    url("../public/assets/mountain-embossment.png") right bottom / min(560px, 70vw) auto no-repeat;
  box-shadow: var(--shadow);
}

.career-form label {
  display: grid;
  gap: 8px;
  color: rgba(7, 28, 61, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(7, 28, 61, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.career-form textarea {
  min-height: 126px;
  padding-block: 14px;
  resize: vertical;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  outline: 2px solid rgba(243, 115, 25, 0.28);
  border-color: rgba(243, 115, 25, 0.56);
}

.career-form .button,
.career-form .form-status {
  grid-column: 1 / -1;
}

.legal-page {
  width: min(calc(100% - 32px), var(--max));
  min-height: 100vh;
  margin-inline: auto;
  padding: 130px 0 76px;
}

.legal-page .reveal {
  opacity: 1;
  transform: none;
}

.legal-hero {
  max-width: 820px;
  padding: clamp(42px, 7vw, 84px) 0 clamp(28px, 5vw, 52px);
}

.legal-hero h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.legal-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.legal-shell {
  display: block;
}

.legal-side {
  display: none;
}

.legal-card {
  display: grid;
  gap: 24px;
  max-width: 920px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(7, 28, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 70px rgba(7, 28, 61, 0.08);
}

.legal-card section {
  display: grid;
  gap: 10px;
}

.legal-card h2,
.legal-card h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
}

.legal-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.legal-card h3 {
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.legal-updated {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border-radius: 8px;
  color: #80521d;
  background: #fff3e8;
  font-size: 0.78rem;
  font-weight: 900;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 46;
}

.chatbot-launcher {
  position: relative;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--orange), #d9570d 48%, #8f390d);
  box-shadow: 0 18px 46px rgba(7, 28, 61, 0.3), 0 0 0 7px rgba(243, 115, 25, 0.12);
  font-size: 0.7rem;
  font-weight: 900;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.chatbot-launcher:hover {
  box-shadow: 0 22px 56px rgba(7, 28, 61, 0.36), 0 0 0 9px rgba(243, 115, 25, 0.14);
  transform: translateY(-2px);
}

.chatbot-launcher svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.chatbot-launcher-pulse {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(243, 115, 25, 0.18);
  animation: assistantPulse 2200ms ease-out infinite;
}

.chatbot-window {
  position: absolute;
  right: 0;
  bottom: 84px;
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 100px rgba(7, 28, 61, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 220ms ease;
}

.chatbot.is-open .chatbot-window {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 28, 61, 0.98), rgba(18, 58, 115, 0.9)),
    url("../public/assets/hero-community-mountain.png") center/cover;
}

.chatbot-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  padding: 3px;
}

.chatbot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chatbot-title {
  min-width: 0;
  margin-right: auto;
}

.chatbot-title strong {
  display: block;
  font-size: 1rem;
  line-height: 1.18;
}

.chatbot-title small {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 750;
}

.chatbot-title small::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #38d087;
  box-shadow: 0 0 0 5px rgba(56, 208, 135, 0.12);
}

.chatbot-header button {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.2rem;
}

.chatbot-messages {
  min-height: 0;
  max-height: 260px;
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(244, 247, 247, 0.86), rgba(255, 255, 255, 0.96)),
    url("../public/assets/mountain-embossment.png") bottom center / 110% auto no-repeat;
}

.chat-message {
  max-width: 92%;
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.chat-message.bot {
  justify-self: start;
  color: var(--ink);
  background: white;
  box-shadow: 0 10px 26px rgba(7, 28, 61, 0.08);
}

.chat-message.is-pending {
  color: var(--muted);
}

.chat-message.user {
  justify-self: end;
  color: white;
  background: linear-gradient(135deg, var(--ink), #143d78);
}

.chatbot-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 12px;
  background: white;
}

.chatbot-prompts button,
.chatbot-actions a,
.chatbot-actions button {
  min-height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 0 13px;
  font-size: 0.75rem;
  font-weight: 900;
}

.chatbot-prompts button {
  border: 1px solid var(--stone);
  color: var(--ink);
  background: var(--soft);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.chatbot-prompts button:hover {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px 18px 18px;
  border-top: 1px solid var(--stone);
  background: white;
}

.chatbot-form input {
  min-height: 42px;
  padding: 0 12px;
  font-size: 16px;
}

.chatbot-form button {
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  color: white;
  background: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.enquiry-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100dvh - 24px);
  margin: 0;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: white;
  background: transparent;
  box-shadow: 0 34px 90px rgba(7, 28, 61, 0.28);
  overflow: auto;
  transform: translate(-50%, -50%);
}

.enquiry-dialog::backdrop {
  background: rgba(5, 16, 35, 0.62);
  backdrop-filter: blur(7px);
}

.enquiry-form {
  position: relative;
  padding: clamp(24px, 5vw, 44px);
}

.enquiry-dialog .contact-card {
  min-height: auto;
  margin: 0;
  border-color: rgba(255, 168, 94, 0.38);
}

.enquiry-dialog .contact-card h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 1.06;
}

.enquiry-dialog .contact-card p:not(.section-label) {
  margin: 0;
}

.enquiry-dialog .form-status {
  grid-column: 1 / -1;
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.6rem;
  line-height: 1;
  z-index: 2;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 115, 25, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #146c4c;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 750ms ease var(--delay, 0ms),
    transform 750ms ease var(--delay, 0ms);
}

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

.hero .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0ms);
}

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

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.45);
    transform-origin: top;
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes assistantPulse {
  0% {
    opacity: 0.78;
    transform: scale(0.92);
  }
  70% {
    opacity: 0;
    transform: scale(1.28);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .ghost-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-content,
  .project-layout,
  .about-layout,
  .page-hero-layout,
  .about-story-layout,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .about-copy {
    position: static;
  }

  .story-copy {
    position: static;
  }

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

  .process-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-logo img {
    width: 100%;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .mobile-menu {
    top: 86px;
    left: 10px;
    right: 10px;
  }

  .hero {
    min-height: 100svh;
  }

  .inner-page {
    padding-top: 86px;
  }

  .page-hero {
    padding-top: 42px;
  }

  .page-hero-copy h1,
  .about-cta-inner h2 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .story-copy h2 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .hero-content {
    align-items: start;
    gap: 24px;
    padding: 92px 0 118px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 8.8vw, 3rem);
    line-height: 1.02;
  }

  .hero p {
    display: block;
    max-width: 34ch;
    margin-top: 14px;
    padding-left: 12px;
    border-left: 3px solid var(--orange);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-media img {
    transform: none;
    object-position: 58% center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    min-height: 50px;
    padding-inline: 14px;
    width: 100%;
  }

  .advantage-grid,
  .about-stat-grid,
  .property-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-space {
    padding: 24px 0;
  }

  .about-layout {
    gap: 22px;
  }

  .home-about {
    padding: 22px 0;
  }

  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
  }

  .wide-band {
    padding: 24px 18px;
  }

  .advantage-grid,
  .property-grid {
    margin-top: 18px;
  }

  .advantage-card {
    min-height: 190px;
  }

  .advantage-card h3 {
    margin-top: 32px;
  }

  .about-panel {
    padding: 22px;
  }

  .story-panel,
  .page-hero-card,
  .about-cta-inner {
    padding: 22px;
  }

  .about-stat-grid div {
    min-height: 104px;
  }

  .hero-panel {
    margin-top: 6px;
    gap: 10px;
  }

  .project-mini {
    padding: 18px;
  }

  .project-mini strong {
    font-size: 1.55rem;
  }

  .project-mini small {
    font-size: 0.78rem;
  }

  .hero-metrics,
  .glass-card {
    display: none;
  }

  .scroll-preview {
    display: none;
  }

  .chatbot {
    right: 14px;
    bottom: 18px;
  }

  .chatbot-launcher {
    width: 58px;
    height: 58px;
  }

  .chatbot-launcher svg {
    width: 27px;
    height: 27px;
  }

  .chatbot-window {
    right: 0;
    bottom: 72px;
    width: min(360px, calc(100vw - 28px));
  }

  .chatbot-messages {
    min-height: 0;
    max-height: 230px;
  }

  .chatbot-prompts {
    display: flex;
    flex-wrap: wrap;
  }

  .project-visual,
  .project-console,
  .contact-card {
    min-height: auto;
  }

  .project-visual,
  .contact-media {
    aspect-ratio: 4 / 4.8;
  }

  .contact-enquiry {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card h2 {
    line-height: 1.08;
  }

  .visual-overlay {
    flex-direction: column;
  }

  .portfolio-top {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    transform: translateY(24px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 42px 22px 70px;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links {
    display: grid;
    font-size: 0.8rem;
    gap: 8px;
  }

  .footer-heading {
    font-size: 0.98rem;
  }

  .footer-links a {
    min-height: auto;
    padding: 0;
    background: transparent;
    text-align: left;
  }

  .career-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .career-details h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 15vw, 4.1rem);
  }

  .career-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .legal-page {
    padding-top: 96px;
  }

  .legal-hero {
    padding-top: 34px;
  }

  .legal-card {
    padding: 22px;
  }

  .mobile-menu a[href$="disclaimer.html"],
  .mobile-menu a[href$="privacy-policy.html"],
  .mobile-menu a[href$="terms-and-conditions.html"] {
    display: none;
  }
}

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