*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2235;
  --navy-light: #243044;
  --gold: #b8972a;
  --gold-light: #d4ae4a;
  --gold-pale: #f5edd8;
  --cream: #faf8f4;
  --white: #ffffff;
  --mid: #6b6b67;
  --light: #d4d0c8;
  --text: #1a2235;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--light);
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/HeroImage.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,34,53,0.97) 0%, rgba(26,34,53,0.88) 60%, rgba(26,34,53,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 3rem 4rem 5rem;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  right: 4rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}

.hero-badge .dot { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}

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

/* ── SECTIONS ── */
.section { padding: 6rem 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ── HOW IT WORKS ── */
.how { background: var(--white); }

.how h2 { margin-bottom: 3rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--cream);
  border: 1px solid var(--light);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-gold {
  background: var(--navy);
  border-color: var(--gold);
}

.card-gold h3 { color: #ffffff !important; }
.card-gold p { color: #ffffff !important; }
.card-gold .card-num { color: var(--gold); }

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.card-gold .card-num { color: rgba(184,151,42,0.4); }

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3a3a36;
}

/* ── BANNER ── */
.banner {
  background: var(--gold);
  padding: 1.1rem 2rem;
  text-align: center;
  overflow: hidden;
}

.banner p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

/* ── TEASER ── */
.teaser { background: var(--cream); text-align: center; }
.teaser .section-eyebrow,
.teaser h2,
.teaser .section-sub { margin-left: auto; margin-right: auto; }

/* ── SOCIAL ── */
.social { background: var(--navy); }

.social-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.social-text .section-eyebrow { color: var(--gold); }

.social-text h2 {
  color: var(--white);
}

.social-text h2 em { color: var(--gold-light); }

.social-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.social-graphic img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  border: 2px solid rgba(184,151,42,0.3);
  display: block;
  margin: 0 auto;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header h1 em { color: var(--gold-light); font-style: italic; }

.page-header-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── GALLERY PAGE ── */
.gallery-section { background: var(--cream); }

.project {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--light);
}

.project:last-of-type { border-bottom: none; }

.project-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.project-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.project-arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

.img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
  border: 2px dashed;
}

.img-placeholder.before {
  background: #f0ece4;
  border-color: var(--light);
}

.img-placeholder.after {
  background: #eef5ee;
  border-color: #a8c8a8;
}

.img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.img-placeholder p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.5;
}

.side-caption {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  margin-top: 0.75rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

.gallery-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ── CONTACT PAGE ── */
.contact-section { background: var(--cream); }

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.contact-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 1.25rem;
}

.contact-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.contact-note {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  color: white;
}

.contact-note h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.contact-note ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: steps;
}

.contact-note ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.contact-note ol li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FOOTER ── */
.footer {
  background: #0f1520;
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(184,151,42,0.2);
}

.footer-logo {
  height: 70px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0.75rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
  }

  .nav-links .nav-cta {
    margin: 0.5rem 2rem;
    display: block;
    text-align: center;
  }

  .hero-content { padding: 3rem 1.5rem; }

  .hero-badge { display: none; }

  .social-inner { grid-template-columns: 1fr; gap: 2rem; }

  .social-graphic { display: none; }

  .project-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-arrow { text-align: center; transform: rotate(90deg); }
}

/* ── BEFORE & AFTER IMAGES ── */
.project-side img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* ── PHOTO GRID ── */
.photo-gallery-section { background: var(--white); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.photo-item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--light);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,14,22,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ── GALLERY CTA ── */
.gallery-cta-wrap {
  background: var(--white);
  padding-bottom: 5rem;
}

.gallery-cta {
  text-align: center;
  padding-top: 1rem;
}

.gallery-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ── RESPONSIVE GALLERY ── */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LOAD MORE ── */
.load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 0.85rem 2.5rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

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