:root {
  --charcoal: #1F2024;
  --charcoal-2: #26272C;
  --charcoal-3: #2E2F35;
  --gold: #C8A24E;
  --gold-soft: #d9bd7e;
  --ivory: #F3EFE7;
  --grey: #8A8079;
  --line: rgba(243, 239, 231, 0.12);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--ivory);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

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

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

.center { text-align: center; }

.eyebrow, .section-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-eyebrow.center { display: block; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem clamp(1.1rem, 4vw, 3rem);
  background: rgba(31, 32, 36, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark {
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2px;
}

nav { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-soft); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.05rem;
  border-radius: 2px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ivory);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.1rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-text .eyebrow { display: block; margin-bottom: 1.1rem; }
.hero-text h1 { margin-bottom: 1.4rem; }
.lead { color: var(--grey); font-size: 1.08rem; max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.18s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { border: 1px solid var(--line); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 4px;
  opacity: 0.4;
  pointer-events: none;
  margin: 10px;
}
.hero-frame img { width: 100%; height: clamp(360px, 56vw, 600px); object-fit: cover; object-position: center top; }
.hero-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(20,20,22,0.85), transparent);
}

/* ---------- Trust row ---------- */
.trust {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.trust-item {
  background: var(--charcoal-2);
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.trust-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.35rem;
}

/* ---------- About ---------- */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem);
}
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-copy .section-eyebrow { display: block; margin-bottom: 0.9rem; }
.about-copy h2 { margin-bottom: 1.3rem; max-width: 18ch; }
.about-copy p { color: var(--grey); margin-bottom: 1rem; }
.about-points { list-style: none; }
.about-points li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}
.about-points li:last-child { border-bottom: 1px solid var(--line); }
.about-points span {
  font-family: "Newsreader", serif;
  color: var(--gold);
  font-size: 0.95rem;
  min-width: 1.6rem;
}

/* ---------- Services ---------- */
.services {
  background: var(--charcoal-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.1rem, 4vw, 3rem);
}
.services h2.center { margin: 0.6rem auto 2.6rem; }
.service-cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.service-card {
  background: var(--charcoal-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.7rem 1.4rem;
  transition: transform 0.25s, border-color 0.25s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(200,162,78,0.5); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--grey); font-size: 0.94rem; margin-bottom: 1.1rem; }
.price {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.price-note { color: var(--grey); font-size: 0.9rem; margin-top: 2.2rem; }

/* ---------- Gallery ---------- */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.1rem, 4vw, 3rem);
}
.gallery h2.center { margin: 0.6rem auto 2.6rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.gallery-item {
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--charcoal-2);
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.5s, filter 0.4s;
  filter: saturate(0.96) brightness(0.97);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1.02); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.25s;
}
.gallery-item:hover::after { border-color: rgba(200,162,78,0.55); }
.ig-line { margin-top: 2.2rem; color: var(--grey); font-size: 0.92rem; }
.ig-line a { color: var(--gold); }

/* ---------- Contact ---------- */
.contact {
  background: var(--charcoal-2);
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.1rem, 4vw, 3rem);
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-copy .section-eyebrow { display: block; margin-bottom: 0.9rem; }
.contact-copy h2 { margin-bottom: 1rem; }
.contact-copy p { color: var(--grey); max-width: 44ch; margin-bottom: 1.8rem; }
.contact-cta { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.contact-card {
  font-style: normal;
  background: var(--charcoal-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.9rem;
}
.card-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.1rem;
}
.card-label:first-child { margin-top: 0; }
.card-line { font-size: 1rem; margin-top: 0.2rem; }
.card-line a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 3rem 1.5rem 5.5rem;
  border-top: 1px solid var(--line);
}
.foot-brand { font-family: "Newsreader", serif; font-size: 1.4rem; }
.foot-line { color: var(--grey); font-size: 0.86rem; margin-top: 0.5rem; }
.foot-copy { color: var(--grey); font-size: 0.78rem; margin-top: 1.2rem; opacity: 0.7; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
  padding: 0.95rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 16, 18, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.4rem;
  background: none;
  border: 0;
  color: var(--ivory);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--gold); }

/* ---------- Reveal ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-frame { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.1rem 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 340px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 0.7rem; }
  .trust { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 240px; }
  footer { padding-bottom: 6rem; }
  .mobile-cta { display: block; }
}

@media (max-width: 460px) {
  .service-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 280px; }
  .hero-cta .btn, .contact-cta .btn { flex: 1 1 auto; text-align: center; }
}
