:root {
  --cream: #f4eee5;
  --paper: #fbf7ef;
  --ink: #171512;
  --muted: #756f66;
  --line: rgba(23, 21, 18, 0.12);
  --gold: #b98950;
  --gold-light: #d9bf96;
  --charcoal: #12100d;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(18, 16, 13, 0.14);
  --side: 18rem;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1;
}
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.page {
  margin-left: var(--side);
}
.section {
  position: relative;
  padding: 6rem 0;
}
.section-number {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto 1.2rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.side-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--side);
  z-index: 100;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.35rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.brand {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
}
.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 7px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand strong {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
}
.brand small {
  color: rgba(255,253,248,0.66);
  font-size: 0.82rem;
}
.menu-toggle { display: none; }
.site-nav {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}
.site-nav a {
  color: rgba(255,253,248,0.72);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-nav a:hover { color: var(--gold-light); }
.side-contact {
  display: grid;
  gap: 0.55rem;
  color: rgba(255,253,248,0.68);
  font-size: 0.9rem;
}
.side-contact a:hover { color: var(--gold-light); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-photo,
.hero-photo img,
.hero::after {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(18,16,13,0.78), rgba(18,16,13,0.42), rgba(18,16,13,0.12));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 0 0 4rem;
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 2rem;
  align-items: end;
}
.hero-panel {
  max-width: 50rem;
}
.kicker {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 850;
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  max-width: 10ch;
}
.hero p {
  color: rgba(255,253,248,0.82);
  line-height: 1.85;
  max-width: 60ch;
  margin-top: 1.35rem;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  padding: 1rem 1.35rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.primary {
  background: var(--gold);
  color: #171512;
}
.ghost {
  background: rgba(255,253,248,0.10);
  color: var(--white);
  border-color: rgba(255,253,248,0.22);
}
.full { width: 100%; }
.hero-aside {
  display: grid;
  gap: 1rem;
}
.hero-note {
  background: rgba(255,253,248,0.10);
  border: 1px solid rgba(255,253,248,0.18);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 1.1rem;
}
.hero-note span,
.contact-list span {
  display: block;
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 850;
  margin-bottom: 0.45rem;
}
.hero-note strong { line-height: 1.45; }

.atelier-grid,
.contact-layout,
.process-grid {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: center;
}
.atelier-copy h2,
.services-header h2,
.gallery-head h2,
.gallery-copy-box h2,
.contact-copy h2,
.intro-dark h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  max-width: 11ch;
}
.atelier-copy p,
.services-header p,
.service-row p,
.gallery-copy-box p,
.contact-copy p,
.step-card p,
.contact-list strong,
.form-note,
.site-footer p,
.footer-contact,
.footer-links {
  color: var(--muted);
  line-height: 1.8;
}
.atelier-copy p { margin-top: 1rem; }
.atelier-photo {
  min-height: 34rem;
  box-shadow: var(--shadow);
}
.atelier-photo img { height: 100%; object-fit: cover; }

.services-section {
  background: var(--paper);
}
.services-header,
.gallery-head {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto 2rem;
}
.service-row {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-title {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.service-title span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 850;
}
.service-title h3 {
  font-size: 1.7rem;
}

.split-photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36rem;
}
.split-photo {
  min-height: 36rem;
}
.dark-panel {
  padding: 4rem;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  align-content: center;
}
.dark-panel h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.7rem);
  max-width: 11ch;
}
.dark-panel p {
  color: rgba(255,253,248,0.72);
  line-height: 1.85;
  max-width: 54ch;
  margin-top: 1rem;
}
.image-panel img {
  height: 100%;
  object-fit: cover;
}

.gallery-layout {}
.gallery-grid,
.gallery-head {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item.large {
  grid-row: span 2;
  min-height: 42rem;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
}
.gallery-item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--white);
  background: rgba(18,16,13,0.74);
  padding: 0.75rem 0.9rem;
  font-weight: 700;
}

.process-section {
  background: var(--paper);
}
.intro-dark {
  background: var(--charcoal);
  color: var(--white);
  padding: 2rem;
}
.intro-dark p { color: rgba(255,253,248,0.72); margin-top: 1rem; }
.steps {
  display: grid;
  gap: 1rem;
}
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step-card > span {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  font-weight: 900;
}
.step-card h3 { font-size: 1.45rem; margin-bottom: 0.45rem; }

.contact-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}
.contact-list a,
.contact-list div {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  padding: 1rem;
}
.contact-form {
  background: var(--charcoal);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  color: var(--white);
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
}
.contact-form span {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 850;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,253,248,0.44);
}
.contact-form select option { color: var(--ink); }
.form-note { color: rgba(255,253,248,0.62); font-size: 0.9rem; }

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 0;
}
.footer-main {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 1rem;
}
.footer-logo {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 3rem;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255,253,248,0.72);
}

@media (max-width: 1080px) {
  :root { --side: 0rem; }
  .page { margin-left: 0; }
  .side-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    padding: 0.9rem 1rem;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-self: center;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 0.7rem 0.9rem;
  }
  .site-nav,
  .side-contact { display: none; }
  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero-content,
  .atelier-grid,
  .service-row,
  .split-photo-section,
  .gallery-grid,
  .process-grid,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 12rem;
  }
  .hero-content {
    padding-bottom: 2rem;
  }
  .split-photo,
  .gallery-item.large,
  .atelier-photo {
    min-height: 24rem;
  }
  .dark-panel {
    padding: 2rem 1rem;
  }
  .service-row {
    gap: 0.8rem;
  }
}
