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

:root {
  --cream:       #F5F0E8;
  --warm-white:  #FDFAF5;
  --concrete:    #C4B9A8;
  --concrete-dk: #8C7D6E;
  --terra:       #2E5D8E;
  --terra-dk:    #1E4470;
  --charcoal:    #2C2825;
  --mid:         #5A524A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--charcoal);
  color: var(--concrete);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.topbar a:hover { opacity: 0.8; }
.topbar .left,
.topbar .right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.topbar .dot { color: var(--concrete-dk); }

/* ── NAV ── */
nav {
  background: var(--warm-white);
  border-bottom: 1px solid #e8e2d8;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
a.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 4px;
}
footer .logo-img {
  height: 36px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text > span {
  display: block;
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--terra);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terra-dk) !important; color: white !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(28,24,20,0.78) 0%, rgba(28,24,20,0.35) 60%, transparent 100%),
    url('../images/gallery/24.jpeg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px;
  max-width: 760px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: none;
  width: 100%;
}
.hero h1 .line {
  display: block;
}
.hero h1 em {
  font-style: normal;
  color: var(--concrete);
}
.hero-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-checks li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  font-weight: 500;
}
.hero-checks li::before {
  content: '✓';
  color: var(--terra);
  font-weight: 700;
  font-size: 1rem;
  width: 20px;
  height: 20px;
  background: rgba(46,93,142,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--terra);
  color: white;
}
.btn-primary:hover { background: var(--terra-dk); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  margin-left: 14px;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--charcoal);
  display: flex;
  justify-content: center;
  width: 100%;
}
.service-item {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  position: relative;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}
.service-item + .service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.services-sentinel { height: 0; }

/* ── ABOUT SECTION ── */
.about {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--warm-white);
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--concrete) 0%, var(--concrete-dk) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--terra);
  color: white;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 32px rgba(46,93,142,0.35);
}
.about-badge .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--terra);
}
.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about p {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.98rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #e8e2d8;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* ── GALLERY PREVIEW ── */
.gallery-section {
  padding: 100px 80px;
  background: var(--cream);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--concrete);
  cursor: pointer;
}
.gallery-grid:not(.gallery-grid-full) .gallery-item:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery-grid-full {
  grid-template-rows: unset;
  grid-auto-rows: 260px;
}
.gallery-item .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .ph { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,24,20,0.75));
  padding: 28px 18px 16px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

.g1 { background: linear-gradient(135deg, #a89080, #7a6a5a); }
.g2 { background: linear-gradient(135deg, #b0a090, #8a7a6a); }
.g3 { background: linear-gradient(135deg, #98887a, #6a5a4a); }
.g4 { background: linear-gradient(135deg, #c0b0a0, #907a6a); }
.g5 { background: linear-gradient(135deg, #a07060, #704a3a); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: default;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 80px;
  background: var(--warm-white);
}
.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 6px;
  border-left: 3px solid var(--terra);
  transition: transform 0.2s;
}
.testi-card:hover { transform: translateY(-3px); }
.stars { color: var(--terra); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 20px;
}
.testi-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.testi-location {
  font-size: 0.78rem;
  color: var(--concrete-dk);
  margin-top: 2px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--terra);
  padding: 64px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 900;
  color: white;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-top: 6px;
  font-weight: 300;
}
.btn-white {
  background: white;
  color: var(--terra);
  font-weight: 700;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
footer .logo { color: white; font-size: 1.2rem; }
footer .logo span { color: var(--terra); }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--terra); }

/* ── HAMBURGER (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* Top bar — hidden on mobile */
  .topbar { display: none; }

  /* Nav */
  nav {
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
  }
  a.logo {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
  }
  .logo-text {
    overflow: visible;
    white-space: normal;
    word-break: break-word;
  }
  .nav-hamburger {
    display: flex;
    flex-shrink: 0;
    align-self: center;
    order: 1;
    margin-left: 12px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 2;
    margin-top: 14px;
    border-top: 1px solid #e8e2d8;
    padding-top: 10px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0ebe2;
  }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
    border-radius: 4px;
    padding: 12px 0 !important;
    border-bottom: none !important;
  }
  .logo-img { height: 36px; }
  .logo { font-size: 1.2rem; }

  /* Hero */
  .hero-content {
    padding: 48px 24px;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .hero-content > div { display: flex; flex-direction: column; }
  .hero-content .btn { text-align: center; width: 100%; }

  /* Services strip */
  .services-strip { flex-wrap: wrap; }
  .service-item {
    flex: 0 0 33.333%;
    padding: 16px 8px;
    font-size: 0.68rem;
  }
  .service-item + .service-item::before { display: none; }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .about-img img { height: 320px; }
  .about-badge {
    width: 90px;
    height: 90px;
    bottom: -14px;
    right: -8px;
  }
  .about-badge .num { font-size: 1.6rem; }
  .about-stats { gap: 24px; }

  /* Gallery section */
  .gallery-section { padding: 60px 20px; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    grid-auto-rows: 180px;
  }
  .gallery-grid:not(.gallery-grid-full) .gallery-item:first-child {
    grid-column: unset;
    grid-row: unset;
  }
  .gallery-grid-full { grid-auto-rows: 160px; }

  /* CTA band */
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
    gap: 24px;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }
  footer div { justify-content: center; }
}

@media (max-width: 480px) {
  /* Services strip → 2 per row on very small screens */
  .service-item { flex: 0 0 50%; }

  /* Gallery → single column */
  .gallery-grid,
  .gallery-grid.gallery-grid-full {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  /* Hero buttons stacked */
  .hero-content > div { gap: 0; }
}
