:root {
  --bg: #0f0f0f;
  --panel: #171717;
  --panel-light: #202020;
  --text: #f3efe7;
  --muted: #b8b0a5;
  --accent: #d7a85d;
  --line: rgba(243, 239, 231, 0.14);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 60px);
  background: rgba(15, 15, 15, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 92px 0;
}

.narrow { max-width: 960px; }

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1, h2, h3, blockquote {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement blockquote {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--accent);
}

.statement p,
.about-text p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-title {
  margin-bottom: 42px;
  text-align: center;
}

.section-title.left { text-align: left; margin-bottom: 0; }

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}

.photo-card {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #262626, #151515);
  cursor: zoom-in;
  appearance: none;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.035);
}

.photo-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.tall { grid-row: span 2; }
.photo-card.wide { grid-column: span 2; }
.gallery-note { text-align: center; margin-top: 22px; }

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 360px;
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
}

.service-card p { color: var(--muted); }

.about {
  background: var(--panel);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}


.about-copy {
  max-width: 680px;
}

.about-photo {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-light);
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(100%);
}

.contact {
  text-align: center;
}

.email-link {
  display: inline-block;
  margin: 24px 0 8px;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.location { margin-top: 16px; }

.no-scroll { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(16px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open { display: flex; }

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

.lightbox button {
  position: fixed;
  z-index: 101;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(15,15,15,0.78);
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: var(--accent);
  color: #111;
  outline: none;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 2rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p { margin: 0; }

@media (max-width: 900px) {
  .about-inner,
  .service-list {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav { gap: 12px; }
  .logo img { height: 34px; max-width: 180px; }
  .section-pad { padding: 64px 0; }
  .hero { min-height: auto; }
  .gallery-grid { column-count: 1; }
  .service-card { min-height: auto; padding: 28px; }
  .service-card span { margin-bottom: 34px; }
  .lightbox { padding: 72px 12px; }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
  .site-footer { flex-direction: column; }
}
