/* SAEM public theme — header, footer, motion */

/* White logo → black via CSS (transparent PNG with white marks) */
.site-logo--black {
  filter: brightness(0);
  -webkit-filter: brightness(0);
}

/* ---------- Header ---------- */
.site-header__bar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header__bar.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* 3-column: logo | nav | CTA */
.site-header__inner {
  max-width: var(--spacing-container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-mobile);
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .site-header__inner {
    padding: 0 var(--spacing-margin-desktop);
    min-height: 92px;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    gap: 2rem;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  justify-self: start;
  z-index: 2;
}
.site-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 992px) {
  .site-logo {
    height: 64px;
    max-width: 180px;
  }
}
.site-logo--footer {
  height: 64px;
  max-width: 180px;
}
@media (min-width: 768px) {
  .site-logo--footer {
    height: 72px;
    max-width: 200px;
  }
}
.site-header__wordmark {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: #111;
}

.site-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
@media (min-width: 992px) {
  .site-header__nav {
    display: flex;
  }
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.site-nav-link:hover {
  color: var(--color-matte-gold-muted);
}
.site-nav-link.is-active {
  color: #1a1a1a;
}
.site-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--color-matte-gold-muted);
  border-radius: 1px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  justify-self: end;
}

.site-header__cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 46px;
  padding: 0 1.4rem;
  background: #1a1a1a;
  color: #fff;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (min-width: 992px) {
  .site-header__cta {
    display: inline-flex;
  }
}
.site-header__cta:hover {
  background: #333;
}
.site-header__cta .material-symbols-outlined {
  font-size: 16px;
}
.site-header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-header__burger {
    display: none !important;
  }
}
.site-header__burger .material-symbols-outlined {
  font-size: 26px;
}

.site-header__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 0.35rem var(--spacing-margin-mobile) 1.35rem;
  max-height: min(78vh, calc(100dvh - 76px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header__drawer.is-open,
.site-header__drawer:not(.hidden) {
  display: flex !important;
}
.site-header__drawer.hidden {
  display: none !important;
}
@media (min-width: 992px) {
  .site-header__drawer,
  .site-header__drawer.is-open,
  .site-header__drawer:not(.hidden) {
    display: none !important;
  }
}
.site-header__drawer-link {
  display: block;
  width: 100%;
  padding: 1.05rem 0.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: none;
}
.site-header__drawer-link.is-active {
  color: var(--color-matte-gold-muted);
}
.site-header__cta--full {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.15rem;
  height: 52px;
  box-sizing: border-box;
}

/* Mobile chrome polish */
@media (max-width: 991.98px) {
  .site-header__inner {
    min-height: 68px;
  }
  .site-logo {
    height: 44px;
    max-width: 132px;
  }
  .site-header__burger {
    width: 42px;
    height: 42px;
  }
  main {
    padding-top: 0;
  }
  .wa-fab {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
  .home-hero {
    padding: 6.25rem 0 3.25rem;
    min-height: 92vh;
    min-height: 92dvh;
  }
  .home-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }
  .home-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero__actions .home-btn {
    width: 100%;
  }
  .home-hero__scroll {
    display: none;
  }
  .page-hero {
    padding: 6.25rem 0 2.75rem;
  }
  .page-cta {
    padding: 1.5rem;
  }
  .page-cta__btn {
    width: 100%;
  }
  .home-cta-actions {
    width: 100%;
  }
  .home-cta-phone {
    width: 100%;
    justify-content: center;
  }
  .contact-form {
    padding: 1.35rem 1.15rem;
  }
  .pd-hero {
    margin-top: 68px;
  }
  .page-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .home-stat {
    padding: 1.25rem 1rem;
  }
  .home-stat__value {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/* ---------- Footer (light, logo black) ---------- */
.site-footer {
  background: #f4f4f2;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}
.site-footer__inner {
  max-width: var(--spacing-container-max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 0;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding: 4.5rem var(--spacing-margin-desktop) 0;
  }
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
  }
}
.site-footer__brand-link {
  display: inline-flex;
}
.site-footer__desc {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #5c5f5a;
}
@media (min-width: 768px) {
  .site-footer__desc {
    margin-top: 1.25rem;
    max-width: 28rem;
    font-size: 15px;
    line-height: 1.7;
    color: #6f726d;
  }
}
.site-footer__label {
  position: relative;
  display: inline-block;
  margin: 0 0 0.85rem;
  padding-bottom: 0.45rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.site-footer__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.5rem;
  height: 2px;
  background: var(--color-matte-gold-muted);
}
.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 1rem;
}
@media (min-width: 768px) {
  .site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
}
.site-footer__links a,
.site-footer__contact-link,
.site-footer__address {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #3d403c;
  transition: color 0.2s ease;
}
.site-footer__links a,
.site-footer__links a:visited,
.site-footer__contact-link,
.site-footer__contact-link:visited {
  color: #3d403c;
  text-decoration: none;
}
.site-footer__links a {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.15rem 0;
  font-weight: 550;
}
.site-footer__links a:hover,
.site-footer__contact-link:hover {
  color: var(--color-matte-gold-muted);
}
.site-footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.site-footer__address {
  margin: 0;
  max-width: 22rem;
}
.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  font-weight: 600;
  word-break: break-word;
}
@media (min-width: 768px) {
  .site-footer__links a {
    min-height: 0;
    padding: 0;
    font-weight: 500;
  }
  .site-footer__links a,
  .site-footer__contact-link,
  .site-footer__address {
    font-size: 15px;
    line-height: 1.55;
    color: #6f726d;
  }
  .site-footer__links a,
  .site-footer__links a:visited,
  .site-footer__contact-link,
  .site-footer__contact-link:visited {
    color: #6f726d;
  }
  .site-footer__links a:hover,
  .site-footer__contact-link:hover {
    color: #1a1a1a;
  }
  .site-footer__contact-body {
    gap: 0.75rem;
  }
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.1rem 0 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12px;
  color: #7a7d78;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    padding: 1.25rem 0 1.5rem;
    font-size: 13px;
    color: #8a8d88;
  }
}
.site-footer__copy {
  margin: 0;
  max-width: 18rem;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .site-footer__copy {
    max-width: none;
  }
}
.site-footer__socials {
  display: flex;
  gap: 0.5rem;
}
.site-footer__socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-footer__socials a:hover {
  border-color: var(--color-matte-gold-muted);
  color: var(--color-matte-gold-muted);
}
.site-footer__socials .material-symbols-outlined {
  font-size: 18px;
}
.site-footer__credit {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ebebe8;
}
.site-footer__credit-inner {
  max-width: var(--spacing-container-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem calc(4.75rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) {
  .site-footer__credit-inner {
    padding: 0.85rem var(--spacing-margin-desktop) 1rem;
  }
}
.site-footer__credit-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 0.85rem;
  max-width: 100%;
  color: #5c5f5a;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.site-footer__credit-link:hover {
  color: #1a1a1a;
}
.site-footer__credit-link strong {
  font-weight: 700;
  color: #1a1a1a;
}
.site-footer__credit-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .site-footer__credit-logo {
    height: 32px;
    max-width: 140px;
  }
}
@media (max-width: 767.98px) {
  .site-logo--footer {
    height: 52px;
    max-width: 148px;
  }
}

/* Motion */
.page-reveal, .home-reveal {
  animation: saem-fade-up 0.7s ease both;
}
.page-reveal-d1, .home-reveal-d1 { animation-delay: 0.1s; }
.page-reveal-d2, .home-reveal-d2 { animation-delay: 0.2s; }
.page-reveal-d3, .home-reveal-d3 { animation-delay: 0.3s; }

@keyframes saem-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.group:hover .transition-slow,
.group:hover .scale-slow {
  transform: scale(1.05);
}

.parallax-bg { will-change: transform; }

.wa-fab {
  right: 1.25rem;
  bottom: 1.25rem;
  background: #25D366;
}

.proj-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
}
.proj-filter-pill:hover { color: var(--color-primary); }
.proj-filter-pill.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--color-surface-container);
  color: var(--color-matte-gold-muted);
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

/* =========================================================
   Inner pages — shared modern system
   ========================================================= */
.page-wrap {
  background: #fff;
}
.page-shell {
  max-width: var(--spacing-container-max);
  margin: 0 auto;
  padding-left: var(--spacing-margin-mobile);
  padding-right: var(--spacing-margin-mobile);
}
@media (min-width: 768px) {
  .page-shell {
    padding-left: var(--spacing-margin-desktop);
    padding-right: var(--spacing-margin-desktop);
  }
}

.page-hero {
  position: relative;
  padding: 7.5rem 0 3.5rem;
  overflow: hidden;
  background: #111;
  color: #fff;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 9.5rem 0 5rem;
  }
}
.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.72) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  color: #fff;
}
.page-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.page-hero .page-crumb,
.page-hero .page-crumb a,
.page-hero .page-crumb span {
  color: rgba(255,255,255,.7);
}
.page-crumb a:hover,
.page-hero .page-crumb a:hover { color: #fff; }
.page-crumb .material-symbols-outlined { font-size: 14px; opacity: 0.6; }
.page-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-matte-gold-muted);
}
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff !important;
}
.page-hero__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82) !important;
  max-width: 34rem;
}

.page-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .page-section {
    padding: 6rem 0;
  }
}
.page-section--muted {
  background: #f7f7f7;
}
.page-section__head {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .page-section__head {
    margin-bottom: 3.25rem;
  }
}
.page-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.page-section__label::before {
  content: "";
  width: 1.75rem;
  height: 1.5px;
  background: var(--color-matte-gold-muted);
}
.page-section__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1.2;
}

/* Corporate */
.corp-story {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .corp-story {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
  }
}
.corp-story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ececec;
}
.corp-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.corp-story__media:hover img {
  transform: scale(1.04);
}
.corp-story__frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}
.corp-mv {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .corp-mv {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.corp-mv__card {
  position: relative;
  padding: 2rem 1.75rem;
  min-height: 16rem;
  overflow: hidden;
}
.corp-mv__card--light {
  background: #f3f3f4;
  color: #1a1a1a;
}
.corp-mv__card--dark {
  background: #1a1a1a;
  color: #fff;
}
.corp-mv__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.5rem;
  font-weight: 700;
  opacity: 0.08;
  line-height: 1;
}
.corp-mv__card--dark .corp-mv__num { opacity: 0.12; color: #fff; }
.corp-mv__card h3 {
  position: relative;
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 650;
}
.corp-mv__card p {
  position: relative;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.78;
}
.corp-values {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .corp-values {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.corp-value {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.corp-value:hover {
  border-color: rgba(198, 161, 91, 0.55);
  transform: translateY(-2px);
}
.corp-value .material-symbols-outlined {
  font-size: 1.75rem;
  color: var(--color-matte-gold-muted);
  margin-bottom: 1rem;
}
.corp-value h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.corp-value p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #6f726d;
}
.page-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: #1a1a1a;
  color: #fff;
}
@media (min-width: 768px) {
  .page-cta {
    flex-direction: row;
    align-items: center;
    padding: 2.75rem 3rem;
  }
}
.page-cta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 650;
  line-height: 1.3;
  max-width: 36rem;
}
.page-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 48px;
  padding: 0 1.5rem;
  background: #fff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.page-cta__btn:hover { background: #f0f0f0; }
.page-cta__btn .material-symbols-outlined { font-size: 16px; }

/* Projects list */
.proj-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.proj-filter {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 1rem;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f726d;
  transition: all 0.2s ease;
}
.proj-filter:hover {
  color: #1a1a1a;
  border-color: rgba(0,0,0,.25);
}
.proj-filter.is-active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.proj-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .proj-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 900px) {
  .proj-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.proj-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ececec;
  color: #fff;
}
.proj-grid--3 .proj-card {
  aspect-ratio: 3 / 4;
}
@media (min-width: 900px) {
  .proj-grid--3 .proj-card__body {
    padding: 1.15rem 1.15rem 1.35rem;
  }
  .proj-grid--3 .proj-card h2,
  .proj-grid--3 .proj-card h3 {
    font-size: 1.2rem;
  }
}
.proj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.proj-card:hover img {
  transform: scale(1.05);
}
.proj-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78) 100%);
}
.proj-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.5rem 1.75rem;
}
.proj-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.proj-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-matte-gold-muted);
  display: inline-block;
}
.proj-card__status.is-done i { background: #c8c8c8; }
.proj-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.proj-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.78);
}
.proj-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.proj-card__meta .material-symbols-outlined { font-size: 15px; }

/* Project detail */
.pd-hero {
  position: relative;
  min-height: 68vh;
  min-height: 68dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #111;
  margin-top: 68px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .pd-hero {
    margin-top: 92px;
    min-height: 78vh;
  }
}
.pd-hero__media {
  position: absolute;
  inset: 0;
}
.pd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.82) 100%);
}
.pd-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
@media (min-width: 768px) {
  .pd-hero__content {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
}
.pd-hero .page-crumb,
.pd-hero .page-crumb a,
.pd-hero .page-crumb span {
  color: rgba(255,255,255,.72);
}
.pd-hero .page-crumb a:hover { color: #fff; }
.pd-hero .page-crumb .page-crumb__current {
  max-width: min(42vw, 11rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pd-badge {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pd-hero .page-kicker {
  display: block;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.pd-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 8vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 18ch;
  color: #fff !important;
  text-wrap: balance;
}
.pd-hero__loc {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  max-width: 100%;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.pd-hero__loc .material-symbols-outlined {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 18px;
}
.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}
@media (min-width: 480px) {
  .pd-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
}
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  height: 48px;
  padding: 0 1.35rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
}
@media (max-width: 479.98px) {
  .pd-btn { width: 100%; }
}
.pd-btn--solid {
  background: #fff;
  color: #1a1a1a;
}
.pd-btn--solid:hover { background: #f0f0f0; }
.pd-btn--ghost {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  background: rgba(0,0,0,.2);
}
.pd-btn--ghost:hover {
  background: rgba(255,255,255,.1);
}
.pd-facts {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (min-width: 560px) {
  .pd-facts { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .pd-facts { grid-template-columns: repeat(4, 1fr); }
}
.pd-fact {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: baseline;
}
@media (min-width: 560px) {
  .pd-fact {
    display: block;
    padding: 1.25rem 1.15rem;
    border-right: 1px solid rgba(0,0,0,.06);
  }
  .pd-fact:nth-child(2n) { border-right: 0; }
}
@media (min-width: 768px) {
  .pd-fact {
    border-bottom: 0;
    padding: 1.75rem 1.5rem;
  }
  .pd-fact:nth-child(2n) { border-right: 1px solid rgba(0,0,0,.06); }
  .pd-fact:last-child { border-right: 0; }
}
.pd-fact:last-child { border-bottom: 0; }
@media (min-width: 560px) and (max-width: 767.98px) {
  .pd-fact:nth-last-child(-n+2) { border-bottom: 0; }
}
.pd-fact__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8d88;
}
@media (min-width: 560px) {
  .pd-fact__label { margin: 0 0 0.35rem; }
}
.pd-fact__value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pd-about {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .pd-about {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}
.pd-about .prose {
  max-width: none;
}
.pd-about .prose p {
  font-size: 0.98rem;
  line-height: 1.7;
}
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .amenity-grid { gap: 0.85rem; }
}
@media (min-width: 1024px) {
  .amenity-grid { grid-template-columns: repeat(4, 1fr); }
}
.amenity-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  min-width: 0;
}
@media (min-width: 640px) {
  .amenity-item {
    gap: 0.75rem;
    padding: 1.35rem 1.25rem;
  }
}
.amenity-item .material-symbols-outlined {
  color: var(--color-matte-gold-muted);
  font-size: 1.35rem;
}
.amenity-item h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
@media (min-width: 640px) {
  .amenity-item h3 { font-size: 0.95rem; }
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
@media (min-width: 768px) {
  .gallery-grid { gap: 1.1rem; }
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ececec;
}
.gallery-grid figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
@media (min-width: 768px) {
  .gallery-grid figure:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.03);
}
@media (max-width: 767.98px) {
  .page-wrap .page-section {
    padding: 2.75rem 0;
  }
  .page-wrap .page-section__head {
    margin-bottom: 1.5rem;
  }
  .page-wrap .page-section__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
  .page-wrap .contact-map {
    height: 240px;
    border-radius: 0;
  }
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-row__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f4;
  color: var(--color-matte-gold-muted);
  flex-shrink: 0;
}
.contact-row__icon .material-symbols-outlined { font-size: 1.25rem; }
.contact-row h3 {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.contact-row p,
.contact-row a {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.55;
  color: #6f726d;
}
.contact-row a:hover { color: #1a1a1a; }
.contact-form {
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.75rem 1.5rem;
}
@media (min-width: 768px) {
  .contact-form { padding: 2.5rem; }
}
.contact-form h2 {
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
  font-weight: 650;
}
.contact-form > p {
  margin: 0 0 1.75rem;
  color: #6f726d;
}
.contact-map {
  width: 100%;
  height: 320px;
  background: #ececec;
}
@media (min-width: 768px) {
  .contact-map { height: 480px; }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2);
}

/* =========================================================
   Homepage
   ========================================================= */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 4.5rem;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
}
@media (min-width: 768px) {
  .home-hero {
    padding: 8rem 0 5.5rem;
  }
}
.home-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--home-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: home-kenburns 18s ease-out both;
}
@keyframes home-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 42%, rgba(0,0,0,.15) 72%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 40%, rgba(0,0,0,.72) 100%);
}
.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  color: #fff;
}
.home-hero__brand {
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-matte-gold-muted);
}
.home-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.15rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.home-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88) !important;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0 1.4rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.home-btn .material-symbols-outlined { font-size: 16px; }
.home-btn--solid {
  background: #fff;
  color: #111;
}
.home-btn--solid:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
.home-btn--ghost {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}
.home-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.home-btn--outline {
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  color: #1a1a1a;
  background: #fff;
}
.home-btn--outline:hover {
  border-color: #1a1a1a;
}
.home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 12px;
  display: none;
}
@media (min-width: 768px) {
  .home-hero__scroll { display: block; }
}
.home-hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 7px auto 0;
  border-radius: 2px;
  background: rgba(255,255,255,.7);
  animation: home-scroll-dot 1.6s ease-in-out infinite;
}
@keyframes home-scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

.home-stats {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.home-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-stat {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
@media (min-width: 768px) {
  .home-stat {
    padding: 2rem 1.5rem;
    border-bottom: 0;
  }
  .home-stat:last-child { border-right: 0; }
}
.home-stat:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .home-stat:nth-child(2n) { border-right: 1px solid rgba(0,0,0,.06); }
}
.home-stat__value {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1.1;
}
.home-stat__value span {
  color: var(--color-matte-gold-muted);
}
.home-stat__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8d88;
}

.home-section-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .home-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.25rem;
  }
}
.home-section-head__lead {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #6f726d;
}
.home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.2s ease;
}
.home-section-link .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.home-section-link:hover {
  color: var(--color-matte-gold-muted);
}
.home-section-link:hover .material-symbols-outlined {
  transform: translateX(3px);
}
.home-projects .proj-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.home-projects__mobile {
  display: block;
  margin-top: 1.75rem;
}
@media (min-width: 768px) {
  .home-projects__mobile { display: none; }
}

.home-about__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #6f726d;
}
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.home-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.home-cta-phone:hover { color: #fff; }
.home-cta-phone .material-symbols-outlined { font-size: 18px; }

/* CMS form — mirrors admin field widths */
.saem-form__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.15rem 1rem;
}
.saem-form__field {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
@media (min-width: 640px) {
  .saem-form__field--half { grid-column: span 6; }
  .saem-form__field--third { grid-column: span 4; }
  .saem-form__field--two-thirds { grid-column: span 8; }
  .saem-form__field--full { grid-column: span 12; }
}
.saem-form__req {
  color: var(--color-matte-gold-muted);
}
.saem-form__error {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-on-error, #991b1b);
}
.saem-form__choices {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.25rem;
}
.saem-form__choice {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #6f726d;
  cursor: pointer;
}
.saem-form__choice input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.saem-form__footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.saem-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.saem-form__consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.saem-form__consent label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6f726d;
  cursor: pointer;
}
.saem-form__submit {
  align-self: stretch;
  justify-content: center;
}
@media (min-width: 480px) {
  .saem-form__submit {
    align-self: flex-start;
  }
}
.contact-form .saem-input {
  width: 100%;
  background: #fff;
}
