/* La Vita Homes — static export
   Tokens, layout, components and scroll-reveal animation. */

:root {
  --bg: #f7f4ee;
  --fg: #1a1d2b;
  --muted: #6a6b78;
  --border: #e4dfd4;
  --card: #ffffff;
  --secondary: #ecebe4;
  --gold: #cba861;
  --gold-fg: #1a1d2b;
  --ink: #131522;
  --radius: 4px;
  --maxw: 1200px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.eyebrow { font-size: 11px; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; }
.eyebrow-gold { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }




/* header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  height: 80px;
  padding: 0 60px;
  background-color: #f7f4ee;
  border-bottom: 1px solid #e2ded6;
}
@media (max-width: 767px) {
  .header {
    padding: 10px 20px;
  }
}
.header.sticky {
  position: sticky;
  z-index: 999;
  top: 0;
}
.header .header__logo {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 150px;
  flex-basis: 150px;
}
.header .cart__login__search {
  min-width: 150px;
  flex-basis: 150px;
}
.header .cart__login__search .list__icon {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
}
.header .cart__login__search .list__icon li a {
  padding: 5px;
  font-size: 18px;
  color: #1a1d2b;
  transition: 0.25s;
}
.header .cart__login__search .list__icon li a:hover {
  color: #cba861;
}
.header .menu__horizontal {
  width: 100%;
  position: initial;
  justify-content: center;
  display: flex;
  align-items: center;
}
.header .menu__horizontal .menu__horizontal__wrapper {
  overflow: hidden;
  max-height: 65px;
}
.header .menu__horizontal .header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .header .menu__horizontal .menu__horizontal__btn {
    display: none;
  }
}
.header .menu__horizontal .menu__horizontal__btn .menuBtn__wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.header .menu__horizontal .menu__horizontal__btn .menu__prev,
.header .menu__horizontal .menu__horizontal__btn .menu__next {
  width: 35px;
  height: 35px;
  font-size: 14px;
  border: 0;
  color: #FFF;
  background-color: transparent;
  cursor: pointer;
  transition: 0.25s;
}
.header .menu__horizontal .menu__horizontal__btn .menu__prev:hover,
.header .menu__horizontal .menu__horizontal__btn .menu__next:hover {
  color: #ff5722;
}
.header .menu__horizontal .menu__horizontal__btn button.disabled {
  cursor: default;
  opacity: 0.25;
}

.header__menu .main__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  height: 100%;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .header__menu .main__menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    display: block;
    padding-top: 10px;
    padding-bottom: 120px;
    background: #f7f4ee;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: 0.3s ease-out;
  }
  .header__menu .main__menu.open {
    transform: translateY(0);
  }
}
.header__menu .main__menu > .menu__item {
  position: initial;
}
@media (max-width: 767px) {
  .header__menu .main__menu > .menu__item {
    border-bottom: 1px solid #e7e3db;
  }
}
@media (min-width: 768px) {
  .header__menu .main__menu > .menu__item > .menuItem__link {
    display: flex;
    align-items: center;
    height: 65px;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .header__menu .main__menu > .menu__item > .menuItem__link {
    padding: 1rem 2rem 1rem 1rem;
    font-weight: 500;
  }
}
.header__menu .main__menu .menu__item:hover .mega__menu {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 767px) {
  .header__menu .main__menu > .menu__item:not(.visible-row):hover > .sub__menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
.header__menu .menu__item {
  position: relative;
}
@media (min-width: 768px) {
  .header__menu .menu__item:hover > .sub__menu {
    opacity: 1;
    visibility: visible;
  }
  .header__menu .menu__item:hover > .expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (min-width: 768px) {
  .header__menu .menu__item .sub__menu--right .expand-btn:after,
.header__menu .menu__item .sub__menu--left .expand-btn:after {
    right: 0.625rem;
  }
}
@media (min-width: 768px) {
  .header__menu .sub__menu {
    position: absolute;
    z-index: 99;
    top: 100%;
    width: 190px;
    padding: 5px 0;
    border-radius: 0 0 5px 5px;
    background-color: #f7f4ee;
    opacity: 0;
    visibility: hidden;
	box-shadow:0 0 20px #e2ded6;
    transition: all 0.4s ease;
  }
  .header__menu .sub__menu .menuItem__link {
    padding: 0.5rem 1.5rem 0.5rem 1rem;
  }
  .header__menu .sub__menu .menuItem__link.expand-btn::after {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .header__menu .sub__menu {
    display: none;
    position: relative;
    z-index: 999;
    top: 0;
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
    background-color: #f7f4ee;
  }
  .header__menu .sub__menu .menu__item {
    border-bottom-color: #ECECEC;
  }
}
.header__menu .sub__menu--right {
  top: 0;
  left: 100%;
}
@media (max-width: 767px) {
  .header__menu .sub__menu--right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1rem;
  }
  .header__menu .sub__menu--right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
  }
}
.header__menu .sub__menu--left {
  top: 0;
  left: -100%;
}
@media (max-width: 767px) {
  .header__menu .sub__menu--left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1rem;
  }
  .header__menu .sub__menu--left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
  }
}
.header__menu .menuItem__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
      font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
  transition: 0.25s;
}
.header__menu .menuItem__link:hover {
  color: #cba861;
}
@media (max-width: 768px) {
  .header__menu .menuItem__link.expand-btn::after {
    right: 15px;
  }
}
.header__menu ul li {
  list-style: none;
  transition: 0.3s ease;
}
.header__menu ul li a {
  position: relative;
  text-decoration: none;
  color: #1a1d2b;
}
@media (min-width: 768px) {
  .header__menu .menu__item:has(.mega__menu) {
    position: inherit !important;
  }
}
@media (min-width: 768px) {
  .header__menu .mega__menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding-top: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}
@media (max-width: 767px) {
  .header__menu .mega__menu {
    position: relative;
    display: none;
    padding-left: 0;
    padding: 0;
  }
}
.header__menu .megaMenu__wrap {
  padding: 30px;
}
@media (max-width: 767px) {
  .header__menu .megaMenu__wrap {
    padding: 1rem;
  }
}
.header__menu .megaMenu__inner {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle {
  display: flex;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  transition: 0.25s;
}
@media (max-width: 1023px) {
  .header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle a {
    padding-left: 0;
  }
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle a:hover {
  color: #ff5722;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuContent .sub__menu--static {
  padding-left: 0;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuContent .sub__menu--static .menu__item .menuItem__link {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .header__menu .menu__category {
    display: flex;
    justify-content: center;
  }
}
.header__menu .menu__category .megaMenu__wrap {
  min-width: 100%;
  flex-basis: 100%;
  border-radius: 0 0 5px 5px;
  background-color: #111;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .header__menu .menu__category .megaMenu__wrap {
    min-width: 85%;
    flex-basis: 85%;
    background-color: #000;
  }
}
.header__menu .menu__category .megaMenu__inner .megaMenu__item {
  display: flex;
  flex-flow: column;
  min-width: calc(33.333333% - 13.333333px);
  flex-basis: calc(33.333333% - 13.333333px);
}
@media (max-width: 767px) {
  .header__menu .menu__category .megaMenu__inner .megaMenu__item {
    min-width: calc(50% - 13.333333px);
    flex-basis: calc(50% - 13.333333px);
  }
}
@media (max-width: 575px) {
  .header__menu .menu__category .megaMenu__inner .megaMenu__item {
    min-width: 100%;
    flex-basis: 100%;
  }
}
@media (min-width: 768px) {
  .header__menu .menu__catalogue {
    display: flex;
    justify-content: center;
  }
}
.header__menu .menu__catalogue .megaMenu__wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
  min-width: 100%;
  flex-basis: 100%;
  border-radius: 0 0 5px 5px;
  background-color: #111;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .header__menu .menu__catalogue .megaMenu__wrap {
    min-width: 85%;
    flex-basis: 85%;
    background-color: #000;
  }
}
@media (max-width: 767px) {
  .header__menu .menu__catalogue .megaMenu__wrap {
    row-gap: 15px;
  }
}
.header__menu .menu__catalogue .megaMenu__inner {
  flex-basis: 50%;
  min-width: 50%;
}
@media (max-width: 767px) {
  .header__menu .menu__catalogue .megaMenu__inner {
    flex-basis: 100%;
    min-width: 100%;
  }
}
.header__menu .menu__catalogue .megaMenu__inner .megaMenu__item {
  display: flex;
  flex-flow: column;
  min-width: calc(33.333333% - 13.333333px);
  flex-basis: calc(33.333333% - 13.333333px);
}
@media (max-width: 767px) {
  .header__menu .menu__catalogue .megaMenu__inner .megaMenu__item {
    min-width: calc(50% - 13.333333px);
    flex-basis: calc(50% - 13.333333px);
  }
}
@media (max-width: 575px) {
  .header__menu .menu__catalogue .megaMenu__inner .megaMenu__item {
    min-width: 100%;
    flex-basis: 100%;
  }
}
.header__menu .menu__catalogue .menuMega__catalogue {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 50%;
  min-width: 50%;
  gap: 10px;
}
@media (max-width: 767px) {
  .header__menu .menu__catalogue .menuMega__catalogue {
    flex-basis: 100%;
    min-width: 100%;
  }
}
.header__menu .menu__catalogue .menuMega__catalogue .col--left,
.header__menu .menu__catalogue .menuMega__catalogue .col--right {
  flex-basis: calc(50% - 5px);
  min-width: calc(50% - 5px);
}
.header__menu .menu__catalogue .menuMega__catalogue .col--left {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--left img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--right .menuCatalogue__item {
  height: 100%;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--right a {
  height: 100%;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a {
  display: flex;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a:hover img {
  transform: scale(1.1);
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a img {
  width: 100%;
  transform: scale(1);
  transition: 0.25s;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a p {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  color: #fff;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a:before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.menu__btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 767px) {
  .menu__btn {
    display: flex;
  }
}
.menu__btn .menu__btn__lines,
.menu__btn .menu__btn__lines::before,
.menu__btn .menu__btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #6a6b78;
  transition: all 0.4s ease-in-out;
}
.menu__btn .menu__btn__lines::before, .menu__btn .menu__btn__lines::after {
  content: "";
  position: absolute;
}
.menu__btn .menu__btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu__btn .menu__btn__lines::after {
  transform: translateY(0.5rem);
}
.menu__btn.open .menu__btn__lines {
  transform: translateX(1rem);
  background: transparent;
}
.menu__btn.open .menu__btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #6a6b78;
  height: 0.05rem;
}
.menu__btn.open .menu__btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #6a6b78;
  height: 0.05rem;
}

.expand-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: " ";
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
}
.expand-btn.open {
  color: #ff5722;
}
.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 767px) {
  .overflow {
    overflow: hidden;
  }
}

@media (max-width: 1023px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .overlay.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}







/* Buttons */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-fg);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: filter .2s ease;
  width:fit-content;
}
.btn-gold:hover { filter: brightness(.95); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(247,244,238,.7);
  color: var(--bg);
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all .3s ease;
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--gold-fg); }

/* Header */
.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(228,223,212,.6);
  background: var(--bg);
}
.site-header .row {
  max-width: var(--maxw); margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand .brand-name { font-family: var(--serif); font-size: 22px; letter-spacing: .15em; line-height: 1; }
.brand img{width:100px; padding: 0px 10px;}
.brand .brand-sub { font-size: 10px; letter-spacing: .3em; opacity: .7; margin-top: 2px; }
.nav { display: none; gap: 32px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }
.nav a { transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--gold); }
@media (min-width: 768px) { .nav { display: flex; } .brand img{width:100px; padding: 0px 0px;}}

/* Footer */
.site-footer { background: var(--ink); color: rgba(247,244,238,.8); padding: 64px 0; text-align:center }
.site-footer .grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
.site-footer .brand-name img{
	height:80px
}
.map{
	width:100%; height:auto;
	padding-top:60px;
}
@media (min-width: 768px) { .site-footer .grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h4 { font-size: 11px; letter-spacing: .3em; color: var(--gold); font-family: var(--sans); font-weight: 600; margin-bottom: 16px; text-transform: uppercase; }
.site-footer li { font-size: 14px; margin-top: 8px; }
.site-footer .bottom {
  max-width: var(--maxw); margin: 48px auto 0; padding: 24px 24px 0;
  border-top: 1px solid rgba(247,244,238,.1);
  font-size: 12px; color: rgba(247,244,238,.5);
}

/* Sections */
section { position: relative; }
.section { padding: 96px 0; }
.section-lg { padding: 120px 0; }

/* Hero (home) */
.hero {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 96px;
}
@media (min-width: 768px) {
    .brand img{width:100px; padding: 0px 0px; !important}
  .hero { grid-template-columns: 5fr 7fr; gap: 40px; padding: 65px 24px 120px; align-items: stretch; }
}
.hero-text { display: flex; flex-direction: column; justify-content: center; }
.hero-text h1 {
  font-size: clamp(48px, 8vw, 108px);
  line-height: .95;
  margin-top: 24px;
}
.hero-text p { color: var(--muted); font-size: 14px; margin: 24px 0 32px; max-width: 32em; }
.hero-image { position: relative; margin-top: 24px; }
@media (min-width: 768px) { .hero-image { margin-top: 0; } }
.hero-image .frame { position: relative; overflow: hidden; height: 420px; }
@media (min-width: 768px) { .hero-image .frame { height: 560px; } }
.hero-image .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 3; background: var(--gold); color: var(--gold-fg);
  padding: 20px 28px; box-shadow: 0 10px 30px rgba(0,0,0,.15);
  bottom: -24px; left: 24px;
}
@media (min-width: 768px) { .hero-badge { left: auto; right: 32px; bottom: -32px; } }
.hero-badge .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
.hero-badge .t { font-family: var(--serif); font-size: 20px; line-height: 1.15; }

/* Generic grids */
.two-col { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.three-col { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .three-col { grid-template-columns: repeat(3, 1fr); } }
.four-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .four-col { grid-template-columns: repeat(4, 1fr); } }

.section h2 { font-size: clamp(32px, 4vw, 52px); }
.section .lead { color: var(--muted); }

/* Feature stats */
.stat { text-align: center; }
.stat .n { font-family: var(--serif); color: var(--gold); font-size: 40px; }
.stat .l { font-size: 11px; letter-spacing: .2em; color: var(--muted); margin-top: 8px; text-transform: uppercase; }

/* Image tiles with hover zoom */
.zoom { overflow: hidden; }
.zoom img { transition: transform .7s ease; }
.zoom:hover img { transform: scale(1.05); }
.tile-img { height: 320px; width: 100%; object-fit: cover; }
.tile-img-sm { height: 160px; width: 100%; object-fit: cover; }
.tile-img-md { height: 224px; width: 100%; object-fit: cover; }

/* Design experts (dark centered) */
.experts { padding: 64px 0; }
.experts-frame { position: relative; overflow: hidden; height: 60vh; min-height: 440px; }
.experts-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.experts-frame .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.experts-frame .content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 24px; text-align: center; color: var(--bg);
}
.experts-frame .content .eyebrow { color: rgba(247,244,238,.8); font-size: 10px; letter-spacing: .4em; margin-bottom: 24px; }
.experts-frame .content h2 { font-size: clamp(40px, 7vw, 88px); }
/* Services cards */
.card { background: var(--bg); }
.card .body { padding: 24px; }
.section-secondary { background: var(--secondary); }

/* Process (dark image with grid) */
.process { position: relative; margin-top: 64px; overflow: hidden; height: 560px; }
@media (min-width: 768px) { .process { height: 640px; } }
.process > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.process .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.2); }
.process .grid {
  position: relative; z-index: 2; height: 100%;
  display: grid; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .process .grid { grid-template-columns: repeat(4, 1fr); } }
.process .step {
  position: relative; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--bg);
  border-right: 1px solid rgba(247,244,238,.3);
  border-bottom: 1px solid rgba(247,244,238,.3);
  transition: background .5s ease;
}
.process .step:last-child { border-right: 0; }
@media (min-width: 768px) { .process .step { border-bottom: 0; } }
.process .step .n { font-family: var(--serif); font-size: 44px; color: var(--gold); transition: color .5s ease; }
.process .step .t { margin-top: 12px; font-size: 14px; font-weight: 600; transition: transform .5s ease; }
.process .step .d { margin-top: 4px; font-size: 12px; color: rgba(247,244,238,.7); }
.process .step .underline { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .5s ease; }
.process .step:hover { background: rgba(203,168,97,.9); }
.process .step:hover .n { color: var(--bg); }
.process .step:hover .t { transform: translateY(-4px); }
.process .step:hover .underline { width: 100%; }

/* Portfolio badge */
.stacked { position: relative; }
.stacked .badge {
  position: absolute; left: 24px; bottom: -24px;
  background: var(--gold); color: var(--gold-fg);
  padding: 16px 24px;
}
.stacked .badge .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
.stacked .badge .t { font-family: var(--serif); font-size: 20px; }

/* CTA */
.cta { position: relative; overflow: hidden; }
.cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.cta .content {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
  padding: 112px 24px; text-align: center; color: var(--bg);
}
.cta h2 { font-size: clamp(32px, 5vw, 64px); }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 10px; letter-spacing: .3em; color: var(--muted); text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; margin-top: 8px; padding: 12px 0; font: inherit;
  border: 0; border-bottom: 1px solid var(--border); background: transparent; color: var(--fg);
  outline: none; transition: border-color .2s;
}
.field textarea { resize: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 4fr 8fr; } }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; padding: 24px; max-width: var(--maxw); margin: 0 auto; }
.chip {
  border: 1px solid var(--border); color: var(--muted);
  padding: 8px 20px; border-radius: 999px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  transition: all .2s;
}
.chip:hover { border-color: var(--gold); color: var(--fg); }
.chip.active { border-color: var(--gold); background: var(--gold); color: var(--gold-fg); }

.project-card .meta {
  margin-top: 16px; display: flex; justify-content: space-between; align-items: baseline;
}
.project-card .meta .title { font-family: var(--serif); font-size: 18px; }
.project-card .meta .place { font-size: 12px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.project-card .meta .cat { font-size: 10px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; }

/* Solutions row alternating */
.solution-row { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .solution-row { grid-template-columns: 1fr 1fr; gap: 48px; } }
.solution-row.reverse .media { order: 2; }
.solution-row .media img { height: 440px; width: 100%; object-fit: cover; }
.solution-row .points { margin-top: 24px; }
.solution-row .points li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; margin-top: 8px; }
.solution-row .points li::before {
  content: ""; display: block; width: 24px; height: 1px; background: var(--gold); margin-top: 10px; flex: 0 0 24px;
}

/* Values (about) */
.values { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value { border-top: 1px solid var(--border); padding-top: 24px; transition: border-color .2s; }
.value:hover { border-color: var(--gold); }
.value .n { font-family: var(--serif); font-size: 32px; color: var(--gold); }
.value h3 { font-size: 18px; font-family: var(--sans); font-weight: 600; margin-top: 12px; }
.value p { color: var(--muted); font-size: 14px; margin-top: 8px; }

.text-center { text-align: center; }
.mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; } .mt-12 { margin-top: 48px; } .mt-14 { margin-top: 56px; } .mt-16 { margin-top: 64px; }
.mt-20 { margin-top: 80px; }
.max-md { max-width: 32em; }

/* Scroll reveal (matches Reveal.tsx) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.9); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 24px; right: 24px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .3em; }
.lb-close:hover { color: var(--gold); }
.lb-caption { position: absolute; left: 24px; bottom: 24px; color: #fff; }
.lb-caption .lb-title { font-family: var(--serif); font-size: 18px; }
.lb-caption .lb-meta { font-size: 10px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }


/* Nav dropdown */
.has-drop { position: relative; }
.has-drop > a .caret { font-size: 9px; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 190px; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,.10);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s ease; padding: 8px 0; z-index: 60; }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 18px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.dropdown a:hover { color: var(--gold); background: var(--secondary); }

/* Hero slider */
.slider { position: relative; }
.slider .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 5s linear; }
.slider .slide.active { opacity: 1; transform: scale(1); }
.slider .dots { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider .dot { height: 6px; width: 16px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.75); transition: all .3s ease; }
.slider .dot.active { width: 32px; background: var(--gold); }
