/* ==========================================================================
   Laxmi Interiors — stylesheet
   ========================================================================== */

:root {
  --navy: #182437;
  --navy-deep: #101828;
  --navy-light: #24344d;
  --cream: #f7f2e7;
  --cream-alt: #f1e9d8;
  --white: #ffffff;
  --gold: #b3904f;
  --gold-light: #cfa96a;
  --ink: #1c2431;
  --muted: #5d6470;
  --muted-light: #8b8f97;
  --border: #e6ddc9;
  --border-dark: rgba(255, 255, 255, 0.14);

  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --shadow-soft: 0 18px 40px -20px rgba(16, 24, 40, 0.25);
  --shadow-card: 0 10px 30px -18px rgba(16, 24, 40, 0.35);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--navy);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--tight {
  padding: 88px 0;
}

.section--alt {
  background: var(--cream-alt);
}

.section--dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

/* ---- Eyebrow / kicker labels ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section--dark .eyebrow {
  color: var(--gold-light);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold);
  font-weight: 500;
  line-height: 1.5;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.section--dark .btn-primary:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---- Logo mark ---- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--gold);
}

.logo__icon svg {
  width: 100%;
  height: 100%;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.logo__sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
}

.logo--light .logo__name {
  color: var(--white);
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(16, 24, 40, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px -12px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(16, 24, 40, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -14px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-light);
  transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 24px;
}

.nav__phone svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center 20% / cover no-repeat;
  opacity: 0.55;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 24, 40, 0.97) 0%, rgba(16, 24, 40, 0.86) 32%, rgba(16, 24, 40, 0.35) 62%, rgba(16, 24, 40, 0.55) 100%),
    linear-gradient(0deg, rgba(16, 24, 40, 0.5), transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
}

.hero__logo {
  margin-bottom: 34px;
}

.hero__logo .logo__icon {
  width: 40px;
  height: 40px;
}

.hero__logo .logo__name {
  font-size: 30px;
}

.hero__rule {
  width: 130px;
  height: 1px;
  background: var(--gold);
  margin: 26px 0 28px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 62px);
  line-height: 1.14;
  color: var(--white);
}

.hero__desc {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 2;
}

.hero__foot .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero__foot-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-cue__line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  padding-top: 90px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.94) 0%, rgba(16, 24, 40, 0.72) 45%, rgba(16, 24, 40, 0.92) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 46px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb svg {
  width: 11px;
  height: 11px;
  opacity: 0.6;
}

.page-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 50px);
  color: var(--white);
  max-width: 720px;
}

.page-hero__lede {
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
}

/* ==========================================================================
   Intro note
   ========================================================================== */

.note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: var(--shadow-soft);
}

.note__quote {
  background: var(--navy);
  color: var(--white);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.note__quote .quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 18px;
}

.note__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.note__quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.note__why {
  background: var(--white);
  padding: 56px 52px;
  border-top: 4px solid var(--gold);
}

.note__why h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.72fr;
  gap: 46px;
  align-items: stretch;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.about__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 20px;
  line-height: 1.5;
  max-width: 66%;
}

.about__body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__glance {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  align-self: start;
}

.about__glance h4 {
  font-size: 20px;
  margin-bottom: 26px;
}

.glance-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.glance-item:last-child {
  border-bottom: none;
}

.glance-item .k {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.glance-item .v {
  font-size: 15.5px;
  color: var(--navy);
}

/* ==========================================================================
   Vision & Mission
   ========================================================================== */

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.vm-card__head {
  padding: 34px 38px;
  background: var(--navy);
  color: var(--white);
}

.vm-card__head span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.vm-card__head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
}

.vm-card__body {
  padding: 30px 38px 36px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

/* ==========================================================================
   Philosophy
   ========================================================================== */

.philosophy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.philosophy__media img {
  width: 100%;
  object-fit: cover;
  min-height: 420px;
}

.philosophy__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--gold);
  margin-bottom: 22px;
  line-height: 1.4;
}

.philosophy__copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.pillar {
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}

.pillar h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Values
   ========================================================================== */

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

.value-card {
  background: var(--white);
  padding: 34px 30px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card .num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.service-card {
  background: var(--white);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover,
.service-card.is-active {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card .icon svg {
  width: 100%;
  height: 100%;
}

.service-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted-light);
  margin-bottom: 8px;
  display: block;
}

.service-card h3 {
  font-size: 17.5px;
  line-height: 1.35;
}

/* Service detail blocks */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  margin-top: 64px;
}

.service-detail:nth-child(odd) .service-detail__media {
  order: 1;
}

.service-detail__media {
  position: relative;
  min-height: 420px;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-detail__body {
  padding: 54px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail__body .eyebrow {
  margin-bottom: 14px;
}

.service-detail__body h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail__body .desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-detail__list {
  display: grid;
  gap: 11px;
}

.service-detail__list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

.service-detail__list svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* compact mini-grid services (office / commercial / retail) */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

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

.mini-card {
  background: var(--white);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}

.mini-card .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.mini-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.service-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 96px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.service-block-head:first-of-type {
  margin-top: 0;
}

.service-block-head h3 {
  font-size: 26px;
}

.service-block-head .lede {
  font-size: 16px;
  max-width: 480px;
  text-align: right;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.process-step {
  background: var(--cream-alt);
  padding: 40px 34px;
  display: flex;
  gap: 22px;
}

.process-step__num {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  flex-shrink: 0;
}

.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--navy);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 24, 40, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__zoom svg {
  width: 15px;
  height: 15px;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 18, 30, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox__close {
  top: 30px;
  right: 30px;
}

.lightbox__nav svg,
.lightbox__close svg {
  width: 18px;
  height: 18px;
}

.lightbox__nav--prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* ==========================================================================
   Experience & Architects
   ========================================================================== */

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

.exp-card {
  border-top: 3px solid var(--gold);
  padding: 32px 6px 0 0;
}

.exp-card .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.exp-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.arch-banner {
  margin-top: 40px;
  background: var(--navy);
  color: var(--white);
  padding: 26px 40px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}

.arch-banner span {
  color: var(--gold-light);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  position: relative;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center 30% / cover no-repeat;
  opacity: 0.22;
}

.contact__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.96), rgba(16, 24, 40, 0.98));
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.contact-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16.5px;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
}

.contact-cards {
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-card {
  background: var(--navy-light);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-card svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-card .k {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
  display: block;
}

.contact-card .v {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-card a.v:hover {
  color: var(--gold-light);
}

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 14.5px;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.09);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #d9736a;
}

.field__error {
  display: none;
  margin-top: 7px;
  font-size: 12px;
  color: #e08e86;
}

.field.has-error .field__error {
  display: block;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.form-foot .btn {
  border: none;
}

.form-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(179, 144, 79, 0.14);
  border: 1px solid rgba(211, 174, 116, 0.4);
  color: var(--gold-light);
  padding: 16px 18px;
  font-size: 14px;
  margin-top: 18px;
}

.form-success.is-visible {
  display: flex;
}

.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Home page — teasers, CTA banner, map card
   ========================================================================== */

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

.teaser-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-card);
}

.teaser-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.teaser-card:hover img {
  transform: scale(1.06);
}

.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 24, 40, 0.92) 0%, rgba(16, 24, 40, 0.35) 55%, rgba(16, 24, 40, 0.15) 100%);
}

.teaser-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px 30px 32px;
}

.teaser-card__num {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.teaser-card__body h3 {
  color: var(--white);
  font-size: 23px;
  margin-bottom: 10px;
}

.teaser-card__body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.teaser-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.teaser-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.teaser-card:hover .teaser-card__link svg {
  transform: translateX(4px);
}

/* Featured projects strip */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.featured-grid .gallery-item {
  height: 260px;
}

/* CTA banner */
.cta-banner {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

.cta-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 24, 40, 0.96), rgba(16, 24, 40, 0.8));
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 32px;
}

.cta-banner h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--white);
  max-width: 560px;
}

.cta-banner p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15.5px;
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stat row (services/about) */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}

.stat-item {
  background: var(--cream);
  padding: 30px 26px;
  text-align: center;
}

.stat-item .k {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-item .v {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
}

/* Map / directions card */
.map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px 30px;
  margin-top: 2px;
}

.map-card__text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.map-card__text svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.map-card__text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.map-card__text strong {
  color: var(--white);
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo__name,
.footer-about .logo__sub {
  color: var(--white);
}

.footer-about p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .tagline {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10.5px;
}

/* ---- Back to top ---- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* ---- Reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .about {
    grid-template-columns: 1fr 1fr;
  }
  .about__glance {
    grid-column: 1 / -1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav__links,
  .nav__phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header {
    padding: 18px 0;
  }
  .site-header.is-scrolled {
    padding: 14px 0;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-nav a {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--white);
  }
  .mobile-nav .nav__phone {
    display: flex;
    border: none;
    padding: 0;
    margin-top: 10px;
    color: var(--gold-light);
  }

  .note,
  .about,
  .vm-grid,
  .philosophy,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about__media img {
    min-height: 280px;
  }
  .service-detail__media {
    min-height: 300px;
    order: -1;
  }
  .service-detail:nth-child(odd) .service-detail__media {
    order: -1;
  }
  .values-grid,
  .exp-grid,
  .mini-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .service-block-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-block-head .lede {
    text-align: left;
  }
  .cta-banner .container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-hero {
    min-height: 38vh;
  }

  /* Hero: let the foot bar flow after the content instead of floating at a
     fixed offset — on shorter mobile viewports the content alone can exceed
     100vh, and an absolutely-positioned foot bar would land on top of it. */
  .hero {
    min-height: auto;
    display: block;
    padding: 128px 0 56px;
  }
  .hero__content {
    padding-top: 0;
  }
  .hero__foot {
    position: static;
    margin-top: 52px;
  }
  .hero__foot .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 76px 0;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__foot .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .note__quote,
  .note__why {
    padding: 40px 28px;
  }
  .about__glance,
  .service-detail__body {
    padding: 32px 28px;
  }
  .values-grid,
  .exp-grid,
  .mini-grid,
  .mini-grid.cols-2,
  .process-grid,
  .services-grid,
  .gallery-grid,
  .teaser-grid,
  .featured-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  .gallery-item {
    height: 260px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form {
    padding: 26px;
  }
  .map-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
