:root {
  --paper: #fffaf1;
  --paper-deep: #f4eadc;
  --ink: #2a1b12;
  --muted: #755f4d;
  --gold: #9a6a32;
  --gold-dark: #654019;
  --sage: #8f9b7d;
  --rose: #d7aaa0;
  --line: rgba(154, 106, 50, 0.2);
  --shadow: 0 28px 80px rgba(86, 57, 31, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --caps: "Cinzel", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 170, 160, 0.22), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(143, 155, 125, 0.16), transparent 18%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 42%, var(--paper-deep) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 24px 24px, rgba(154, 106, 50, 0.12) 0 1px, transparent 1.5px),
    linear-gradient(135deg, transparent 0 47%, rgba(143, 155, 125, 0.18) 48%, transparent 49%),
    linear-gradient(45deg, transparent 0 52%, rgba(215, 170, 160, 0.16) 53%, transparent 54%);
  background-size: 76px 76px, 220px 220px, 260px 260px;
}

a { color: inherit; }

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1220px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  font-family: var(--caps);
  font-size: 26px;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.brand-name {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.nav-links .button-link {
  border: 1px solid var(--gold);
  padding: 11px 16px;
  color: var(--gold-dark);
}

.mobile-toggle { display: none; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 54px;
  align-items: center;
  padding: 60px 0 46px;
}

.eyebrow {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 22px 0 22px;
  font-family: var(--serif);
  font-size: clamp(54px, 7.5vw, 104px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
}

h1 em,
h2 em {
  color: var(--gold-dark);
  font-style: italic;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 650px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  border: 1px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--gold-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.45);
  color: var(--gold-dark);
}

.hero-art {
  position: relative;
  min-height: 610px;
}

.hero-photo,
.portrait-photo {
  width: 82%;
  height: 560px;
  object-fit: cover;
  margin-left: auto;
  box-shadow: var(--shadow);
}

.hero-photo.small,
.portrait-photo.small {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 44%;
  height: 310px;
  border: 10px solid rgba(255, 250, 241, 0.92);
}

.proof-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child { border-right: 0; }

.proof-value {
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  color: var(--gold-dark);
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 22px;
}

.copy {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.page-hero {
  padding: 76px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
}

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

.service-card,
.story-card,
.process-card,
.testimonial,
.contact-card {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(86, 57, 31, 0.07);
}

.service-card {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.service-card span {
  font-family: var(--caps);
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 12px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 500;
  margin: 22px 0 16px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-card .mini-link {
  margin-top: auto;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wide-photo {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eadfce;
  cursor: zoom-in;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.045); }

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 20px 18px;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(30, 18, 10, 0.72));
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  padding: 30px 24px;
  min-height: 260px;
}

.process-card .num {
  font-family: var(--serif);
  color: var(--gold-dark);
  font-size: 42px;
}

.process-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.process-card p,
.testimonial p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial { padding: 28px; }

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form {
  padding: 34px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(154, 106, 50, 0.24);
  background: rgba(255, 250, 241, 0.68);
  color: var(--ink);
  font: inherit;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 0;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  margin-top: 64px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.64);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.source-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 22px;
}

.source-note a { color: var(--gold-dark); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(36, 24, 16, 0.84);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-height: 88vh;
  max-width: 94vw;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: transparent;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 250, 241, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 24px;
  }

  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 16px 0; }

  .hero,
  .split,
  .page-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-art { min-height: 520px; }
  .hero-photo, .portrait-photo { height: 480px; }
  .proof-grid, .process-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-shell { width: min(100% - 28px, 1180px); }
  .brand-name { display: none; }
  h1 { font-size: 48px; }
  .hero { padding-top: 38px; }
  .hero-art { min-height: 430px; }
  .hero-photo { width: 88%; height: 390px; }
  .hero-photo.small { height: 220px; }
  .proof-grid,
  .service-grid,
  .story-grid,
  .process-grid,
  .testimonials,
  .form-row,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    height: 330px;
  }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
