:root {
  --ink: #171717;
  --charcoal: #23211f;
  --muted: #6f6a63;
  --stone: #f5f2ec;
  --warm: #ddd3c2;
  --gold: #b78a45;
  --gold-dark: #8b6632;
  --white: #ffffff;
  --line: rgba(35, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.16);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--stone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass-nav {
  background: rgba(245, 242, 236, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-link {
  color: rgba(23, 23, 23, 0.76);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-dark);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-slider,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1400ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(19, 18, 17, 0.84) 0%, rgba(19, 18, 17, 0.58) 43%, rgba(19, 18, 17, 0.2) 100%),
    linear-gradient(0deg, rgba(19, 18, 17, 0.7) 0%, rgba(19, 18, 17, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 800;
}

.lead {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  border-radius: var(--radius);
  font-weight: 800;
}

.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, #d8b36b, var(--gold));
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(183, 138, 69, 0.28);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--ink);
  background: linear-gradient(135deg, #ecc777, #bd8c42);
  transform: translateY(-1px);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-proof {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof span {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.service-strip {
  background: #f4eadb;
}

.service-pill {
  min-height: 5.5rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--charcoal);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(183, 138, 69, 0.16));
  border: 1px solid rgba(139, 102, 50, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(35, 33, 31, 0.08);
  text-align: center;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading-split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading-split > div {
  max-width: 760px;
}

.section-heading h2,
.archive-title,
.about-section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f4eadb;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(35, 33, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 33, 31, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
}

.recent-heading {
  position: relative;
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.recent-heading .eyebrow {
  color: var(--gold-dark);
}

.recent-heading h2 {
  color: var(--charcoal);
  font-size: clamp(1.65rem, 3.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-number {
  position: absolute;
  left: 50%;
  top: -4.8rem;
  color: rgba(139, 102, 50, 0.12);
  font-size: clamp(6rem, 17vw, 15rem);
  line-height: 1;
  transform: translateX(-50%);
  z-index: -1;
}

.heading-line {
  display: block;
  width: 4.5rem;
  height: 1px;
  margin: 0 auto 1.4rem;
  background: rgba(139, 102, 50, 0.38);
}

.recent-project-card {
  height: 100%;
  color: #f7f2e9;
}

.recent-project-media {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.recent-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(35, 25, 22, 0.46)),
    linear-gradient(135deg, rgba(183, 138, 69, 0.2), transparent 45%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.recent-project-media img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 700ms ease, filter 300ms ease;
}

.recent-project-card:hover .recent-project-media img,
.recent-project-card:focus-within .recent-project-media img {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.08);
}

.recent-project-card:hover .recent-project-media::after,
.recent-project-card:focus-within .recent-project-media::after {
  opacity: 1;
}

.recent-project-action {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  color: #f7f2e9;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 240ms ease, transform 240ms ease;
}

.recent-project-card:hover .recent-project-action,
.recent-project-card:focus-within .recent-project-action {
  opacity: 1;
  transform: scale(1);
}

.recent-project-body h3 {
  margin-bottom: 0.75rem;
  color: #fff8ed;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recent-project-body p {
  max-width: 34rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.recent-project-tag {
  color: #c78d62;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.recent-actions {
  margin-top: 2.75rem;
  text-align: center;
}

.portfolio-section .btn-outline-light {
  color: var(--charcoal);
  border-color: rgba(35, 33, 31, 0.34);
}

.portfolio-section .btn-outline-light:hover,
.portfolio-section .btn-outline-light:focus {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.portfolio-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(221, 211, 194, 0.28)),
    rgba(245, 242, 236, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(183, 138, 69, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 260ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  border-color: rgba(183, 138, 69, 0.34);
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(23, 23, 23, 0.18);
}

.portfolio-card:hover::before,
.portfolio-card:focus-within::before {
  opacity: 1;
}

.portfolio-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.portfolio-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-card:hover .portfolio-card-media img,
.portfolio-card:focus-within .portfolio-card-media img {
  transform: scale(1.06);
}

.card-action {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(14px);
}

.portfolio-card:hover .card-action,
.portfolio-card:focus-within .card-action {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
}

.related-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin: 1rem 0;
}

.related-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(23, 23, 23, 0.08);
}

.portfolio-link {
  color: var(--gold-dark);
  font-weight: 900;
}

.tag {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.8rem;
  color: var(--gold-dark);
  background: rgba(183, 138, 69, 0.12);
  border: 1px solid rgba(183, 138, 69, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.about-section {
  background: #f4eadb;
}

.about-editorial {
  max-width: 980px;
  margin: 0 auto;
}

.about-intro {
  max-width: 760px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.about-intro h2 {
  color: var(--charcoal);
  font-size: clamp(1.65rem, 3.5vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-image-pair,
.about-image-band {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0.75rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.about-image-pair-wide {
  grid-template-columns: 0.85fr 1.7fr;
}

.about-image-band {
  grid-template-columns: 2fr 0.75fr;
}

.about-image-pair img,
.about-image-band img,
.about-feature img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.about-stats strong {
  display: block;
  color: rgba(35, 33, 31, 0.12);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  font-weight: 800;
}

.services-editorial {
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26)),
    #e9ddcb;
}

.services-shell,
.method-shell {
  max-width: 980px;
  margin: 0 auto;
}

.services-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}

.services-heading h2 {
  color: var(--charcoal);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.services-heading .eyebrow {
  color: var(--gold-dark);
}

.services-list {
  border-top: 1px solid rgba(35, 33, 31, 0.13);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: clamp(1.25rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid rgba(35, 33, 31, 0.13);
}

.service-row h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.55;
}

.method-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    #f4eadb;
}

.method-intro {
  max-width: 820px;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(35, 33, 31, 0.13);
  text-align: center;
}

.method-intro .eyebrow {
  color: var(--gold-dark);
}

.method-intro h2 {
  color: var(--charcoal);
  font-size: clamp(1.65rem, 3.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.5rem) clamp(2.2rem, 6vw, 5rem);
}

.method-grid::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(139, 102, 50, 0.36), transparent);
  transform: translateX(-50%);
}

.method-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0 1rem;
  min-height: 10.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  background: rgba(255, 255, 255, 0.43);
  border: 1px solid rgba(139, 102, 50, 0.16);
  box-shadow: 0 20px 50px rgba(35, 33, 31, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.method-grid article:nth-child(even) {
  transform: translateY(2.4rem);
}

.method-grid article::before {
  content: "";
  position: absolute;
  top: 2rem;
  width: clamp(1.5rem, 3vw, 2.6rem);
  height: 1px;
  background: rgba(139, 102, 50, 0.32);
}

.method-grid article:nth-child(odd)::before {
  right: calc(clamp(1.5rem, 3vw, 2.6rem) * -1);
}

.method-grid article:nth-child(even)::before {
  left: calc(clamp(1.5rem, 3vw, 2.6rem) * -1);
}

.method-grid article:hover {
  border-color: rgba(139, 102, 50, 0.34);
  box-shadow: 0 26px 62px rgba(35, 33, 31, 0.1);
  transform: translateY(-0.18rem);
}

.method-grid article:nth-child(even):hover {
  transform: translateY(2.1rem);
}

.method-grid span {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: #fff8ef;
  background: linear-gradient(135deg, #8b6632, #b78a45);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(139, 102, 50, 0.22);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.method-grid h3 {
  margin: 0.15rem 0 0.45rem;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.method-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.about-stats span {
  display: block;
  max-width: 10rem;
  margin: 0.7rem auto 0;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-feature {
  max-width: 760px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.about-feature-split {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.about-feature h3 {
  color: var(--charcoal);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-feature p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    #f4eadb;
}

.contact-shell {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.contact-heading h2 {
  font-size: clamp(1.65rem, 3.5vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  text-align: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form .form-label {
  width: 100%;
  text-align: center;
}

.contact-form .form-control,
.contact-form .form-select {
  text-align: center;
}

.form-control,
.form-select {
  min-height: 3.2rem;
  border-color: rgba(35, 33, 31, 0.18);
  border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(183, 138, 69, 0.18);
}

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-whatsapp {
  margin-top: 1.5rem;
}

.contact-divider {
  width: min(100%, 760px);
  height: 1px;
  margin: clamp(2.5rem, 6vw, 4rem) auto;
  background: linear-gradient(90deg, transparent, rgba(139, 102, 50, 0.42), transparent);
}

.enquiries-block {
  max-width: 760px;
  margin: 0 auto;
}

.enquiries-block .eyebrow {
  color: var(--gold-dark);
}

.ciob-badge {
  display: block;
  width: 6.25rem;
  height: auto;
  margin: 1rem auto 0;
  filter: drop-shadow(0 12px 20px rgba(35, 33, 31, 0.16));
}

.social-links a,
.back-link {
  color: var(--gold-dark);
  font-weight: 800;
}

.site-footer {
  padding: 1.5rem 0;
  color: #434341;
  /* background: var(--charcoal); */
}

.site-footer a {
  color: var(--warm);
}

.project-page {
  min-height: 100vh;
  background: var(--stone);
}

.projects-archive {
  padding-top: 8rem;
}

.projects-list {
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 5vw, 5rem);
  align-items: center;
}

.project-row-reverse .project-row-media {
  order: 2;
}

.project-row-reverse .project-row-content {
  order: 1;
}

.project-row-media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(23, 23, 23, 0.14);
}

.project-row-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 650ms ease, filter 260ms ease;
}

.project-row-media:hover img,
.project-row-media:focus img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.045);
}

.project-row-content {
  max-width: 620px;
}

.project-row-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3.5vw, 3.15rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-row-content p {
  color: var(--muted);
  font-size: 1.03rem;
}

.project-row-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.5rem 0;
  max-width: 430px;
}

.project-row-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.1);
}

.project-hero {
  padding-top: 8rem;
}

.project-title {
  margin-top: 1.2rem;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.96;
  font-weight: 800;
}

.project-meta {
  color: var(--muted);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  grid-column: span 6;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 23, 23, 0.1);
}

.gallery-item:first-child {
  grid-column: span 12;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.82), rgba(183, 138, 69, 0.72)),
    var(--charcoal);
  border-radius: var(--radius);
  text-align: center;
}

.share-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.toast-message {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .section-heading-split {
    display: grid;
  }

  .hero-section h1 {
    max-width: 10ch;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: span 12;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 1.2rem;
  }

  .method-grid::before {
    left: 0;
    top: 0.8rem;
    bottom: 0.8rem;
    transform: none;
  }

  .method-grid article,
  .method-grid article:nth-child(even),
  .method-grid article:hover,
  .method-grid article:nth-child(even):hover {
    transform: none;
  }

  .method-grid article::before,
  .method-grid article:nth-child(odd)::before,
  .method-grid article:nth-child(even)::before {
    left: -1.2rem;
    right: auto;
    width: 1.2rem;
  }

  .project-row,
  .project-row-reverse {
    grid-template-columns: 1fr;
  }

  .project-row-reverse .project-row-media,
  .project-row-reverse .project-row-content {
    order: initial;
  }

  .about-intro {
    margin-left: 0;
    margin-right: 0;
  }

  .about-image-pair,
  .about-image-pair-wide,
  .about-image-band,
  .about-feature-split {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    max-width: 74vw;
    font-size: 0.95rem;
  }

  .hero-section h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }
}
