/* ============================================================
   CATOGGIO HOMES — Premium Builder Website
   Melbourne, Australia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --black:       #0a0a0a;
  --charcoal:    #1c1c1c;
  --charcoal-mid:#2e2e2e;
  --gold:        #c49a30;
  --gold-light:  #d4af70;
  --gold-pale:   #f0e6c8;
  --white:       #ffffff;
  --cream:       #f6f2eb;
  --off-white:   #faf8f4;
  --grey-light:  #f0efed;
  --grey-mid:    #9a9a9a;
  --grey-dark:   #555555;
  --navy:        #0f2744;
  --blue:        #1a3f6f;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --max-width:   1360px;
  --nav-h:       90px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s ease; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* === SHARED TYPOGRAPHY === */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  color: var(--grey-dark);
  line-height: 1.9;
  font-weight: 300;
}

/* Gold divider */
.divider {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .45s var(--ease-out);
}
.nav.solid {
  background: rgba(10,10,10,.96);
  padding: 18px 48px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-logo-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo-name em { color: var(--gold); font-style: normal; }
.nav-logo-tagline {
  font-family: var(--font-serif);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-call {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 26px;
  transition: all .3s ease;
}
.nav-call:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity .4s ease;
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .04em;
  transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-phone {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold);
  margin-top: 20px;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s var(--ease-out);
  filter: brightness(.55);
}
.hero-media img.loaded { transform: scale(1); }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 60%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 96px;
  max-width: 860px;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroUp .7s var(--ease-out) .4s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 300;
  line-height: .92;
  color: var(--white);
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(25px);
  animation: heroUp .8s var(--ease-out) .6s forwards;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  line-height: 1.85;
  max-width: 460px;
  margin-top: 26px;
  opacity: 0;
  animation: heroUp .7s var(--ease-out) 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 44px;
  opacity: 0;
  animation: heroUp .7s var(--ease-out) 1.2s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 38px;
  transition: all .3s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196,154,48,.3);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn .8s ease 2s forwards;
}
.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left .4s ease, right .4s ease;
}
.stat-cell:hover::before { left: 0; right: 0; }
.stat-cell:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num .count { color: var(--gold); }
.stat-num .suffix { font-size: .55em; color: var(--gold); }

.stat-label {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 10px;
}

/* === INTRO === */
.intro {
  padding: 130px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.intro-visual {
  position: relative;
}
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 170px; height: 170px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.intro-badge-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.intro-badge-text {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 6px;
  line-height: 1.4;
}

.intro-text .section-title { margin-bottom: 6px; }
.intro-text .section-body { max-width: 520px; }
.intro-text .section-body + .section-body { margin-top: 18px; }

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.intro-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro-feature-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  flex-shrink: 0;
}
.intro-feature-text {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* === SERVICES === */
.services {
  padding: 0;
  background: var(--off-white);
}
.services-header {
  padding: 90px 48px 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.services-header-left { flex: 1; }
.services-header-right {
  max-width: 380px;
  font-size: .95rem;
  color: var(--grey-dark);
  line-height: 1.85;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s var(--ease-out), filter .5s ease;
  filter: brightness(.35);
}
.service-card:hover .service-bg {
  transform: scale(1.06);
  filter: brightness(.25);
}
.service-content {
  position: relative;
  z-index: 2;
  padding: 50px 42px;
}
.service-number {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 18px;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.service-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease-out), opacity .4s ease;
}
.service-card:hover .service-desc { max-height: 180px; opacity: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 26px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .3s;
}
.service-link:hover { border-color: var(--gold); }
.service-link .arrow {
  transition: transform .3s ease;
}
.service-card:hover .service-link .arrow { transform: translateX(6px); }

/* === ABOUT / PETER === */
.about {
  padding: 140px 0;
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 80%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

.about-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--grey-mid);
  margin-bottom: 4px;
}
.about-title-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-body { font-size: 1.02rem; color: var(--grey-dark); line-height: 1.9; }
.about-body p + p { margin-top: 16px; }

.about-credentials {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credential-val {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.credential-label {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* === PROCESS === */
.process {
  padding: 130px 0;
  background: var(--black);
}
.process-header {
  text-align: center;
  margin-bottom: 90px;
}
.process-header .section-body {
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: 16px auto 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-line {
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(255,255,255,.07);
}
.process-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: lineGrow 2s ease 1s forwards;
}

.step {
  padding: 0 36px;
  text-align: center;
}
.step-circle {
  width: 84px; height: 84px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.step-circle:hover {
  border-color: var(--gold);
  background: rgba(196,154,48,.1);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
}
.step-name {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.step-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
}

/* === GALLERY PREVIEW === */
.gallery-preview {
  padding: 130px 0;
  background: var(--white);
}
.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--charcoal);
  transition: all .3s;
}
.see-all:hover { color: var(--gold); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.g-item {
  position: relative;
  overflow: hidden;
  background: var(--grey-light);
  cursor: pointer;
}
.g-item:nth-child(1) { grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
  display: block;
}
.g-item:nth-child(1) img { aspect-ratio: unset; min-height: 500px; }
.g-item:not(:nth-child(1)) img { aspect-ratio: 4/3; }
.g-item:hover img { transform: scale(1.05); }
.g-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-item:hover .g-item-overlay { background: rgba(0,0,0,.35); }
.g-item-icon {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .3s, transform .3s;
}
.g-item:hover .g-item-icon { opacity: 1; transform: scale(1); }

/* === QUOTE BANNER === */
.quote-banner {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/kent-2.jpg') center/cover;
  opacity: .06;
}
.quote-banner-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 36px;
}
.quote-attr {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 16px auto 22px;
}

/* === CONTACT === */
.contact {
  padding: 130px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.contact-info .section-body { max-width: 400px; margin-top: 12px; }

.contact-details { margin-top: 52px; }
.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 28px;
}
.c-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
  font-size: 1rem;
}
.c-icon svg { width: 20px; height: 20px; fill: currentColor; }
.c-label {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 3px;
}
.c-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}
.c-note {
  font-size: .82rem;
  color: var(--grey-dark);
  font-style: italic;
  margin-top: 2px;
}

/* Contact form */
.contact-form {
  background: var(--white);
  padding: 54px 50px;
  box-shadow: 0 4px 60px rgba(0,0,0,.06);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.12);
  background: transparent;
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-textarea { height: 110px; resize: none; line-height: 1.6; }

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.form-submit:hover { background: var(--gold); color: var(--black); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-notice {
  font-size: .8rem;
  font-style: italic;
  color: var(--grey-mid);
  text-align: center;
  margin-top: 14px;
}

.alert {
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: .9rem;
  font-family: var(--font-sans);
}
.alert-success { background: #e8f5ec; color: #1e5c2a; border-left: 3px solid #2ecc71; }
.alert-error   { background: #fde8e8; color: #8b1a1a; border-left: 3px solid #e74c3c; }

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 80px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 36px;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-brand-name em { color: var(--gold); font-style: normal; }
.footer-brand-sub {
  font-family: var(--font-serif);
  font-size: .8rem;
  font-style: italic;
  color: rgba(255,255,255,.35);
  letter-spacing: .15em;
  margin-bottom: 22px;
}
.footer-about {
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  max-width: 270px;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-row { margin-bottom: 16px; }
.footer-contact-lbl {
  font-family: var(--font-sans);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.footer-contact-val {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.footer-contact-val a { color: rgba(255,255,255,.5); }
.footer-contact-val a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-lic  { font-size: .78rem; color: rgba(255,255,255,.2); }

/* === PAGE HEADER (Gallery) === */
.page-header {
  height: 55vh;
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.3);
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}
.page-header-bg.loaded { transform: scale(1); }
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 48px 60px;
}
.page-header-content .section-title {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

/* === GALLERY FULL === */
.gallery-page {
  padding: 80px 0 130px;
  background: var(--white);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid rgba(0,0,0,.15);
  background: transparent;
  color: var(--grey-dark);
  transition: all .3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease-out);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item:hover .masonry-item-overlay { background: rgba(10,10,10,.4); }
.masonry-item-label {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.masonry-item:hover .masonry-item-label { opacity: 1; transform: none; }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: absolute;
  top: -50px; right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 2rem;
  line-height: 1;
  transition: color .3s;
}
.lb-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.06);
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  padding: 20px 24px;
  transition: all .3s;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--black);
}

/* === ANIMATIONS === */
@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: .7; }
}
@keyframes scrollPulse {
  0%   { top: -60%; }
  100% { top: 110%; }
}
@keyframes lineGrow {
  to { width: 70%; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delay helpers */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .container { padding: 0 36px; }
  .intro-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { margin-bottom: 60px; }
  .intro-badge { right: 0; bottom: -30px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 380px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-header-right { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .process-line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 50px; }
  .gallery-masonry { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.solid { padding: 14px 24px; }
  .nav-menu, .nav-call { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px 80px; }
  .hero-scroll { right: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { padding: 60px 24px 50px; }
  .about-img-accent { display: none; }
  .about-img-main { width: 100%; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 24px; }
  .gallery-preview-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:nth-child(1) { grid-column: span 1; }
  .gallery-masonry { columns: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .quote-banner-inner { padding: 0 24px; }
  .page-header-content { padding: 100px 24px 50px; }
}
