:root {
  --chalk: #fafaf7;
  --mist: #c5cec0;
  --gold: #b8a48a;
  --forest: #5c6b5a;
  --forest-deep: #3f4a3d;
  --ink: #1c1a17;
  --muted: #6a645c;
  --line: rgba(28, 26, 23, 0.12);
  --paper: #ffffff;
  --bg: var(--chalk);
  --bg-soft: #efebe3;
  --header-h: 4.5rem;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", "Didot", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
p { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.35rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-lead {
  margin-top: 1rem;
  color: var(--muted);
}

.frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.15s var(--ease);
}

.project-feature:hover .frame img,
.project-card:hover .frame img,
.works-gallery .frame:hover img,
.process-step:hover .frame img {
  transform: scale(1.035);
}

.frame-tall { aspect-ratio: 3 / 4; }
.frame-wide { aspect-ratio: 16 / 11; }
.frame-square { aspect-ratio: 1; }
.frame-process { aspect-ratio: 4 / 5; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--forest);
  color: var(--chalk);
}

.btn-primary:hover { background: var(--forest-deep); }

.btn-ghost {
  background: transparent;
  border-color: rgba(28, 26, 23, 0.28);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--ink); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--pad);
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 250, 247, 0.95);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-lockup img {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-lockup .logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav { display: flex; gap: 1.75rem; }

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav a:hover { color: var(--ink); }

.header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--ink);
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--chalk);
}

.hero-media { position: absolute; inset: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 26, 23, 0.28) 0%, rgba(28, 26, 23, 0.14) 38%, rgba(28, 26, 23, 0.78) 100%),
    radial-gradient(ellipse at 18% 78%, rgba(92, 107, 90, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2rem) var(--pad) clamp(3rem, 8vh, 5.5rem);
  max-width: 46rem;
  animation: riseIn 1.1s var(--ease) both;
}

.hero-seal {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 1px rgba(250, 250, 247, 0.25);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero-lead {
  margin: 1.15rem 0 1.85rem;
  max-width: 28rem;
  color: rgba(250, 250, 247, 0.86);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero .btn-ghost {
  border-color: rgba(250, 250, 247, 0.45);
  color: var(--chalk);
}

.hero .btn-ghost:hover {
  border-color: var(--chalk);
  background: rgba(250, 250, 247, 0.08);
}

.hero .btn-primary {
  background: var(--chalk);
  color: var(--ink);
}

.strip {
  padding: 1.15rem var(--pad);
  background: var(--forest-deep);
  color: rgba(250, 250, 247, 0.9);
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.projects, .process, .prices, .faq, .about {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.project-feature .frame-tall { max-height: 78vh; }

.project-tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.project-copy h3,
.project-meta h3 { margin-bottom: 0.85rem; }

.project-copy > p,
.project-meta > p:not(.project-tag) { color: var(--muted); }

.project-copy ul {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.project-copy li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.98rem;
}

.project-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.4rem;
  height: 1px;
  background: var(--gold);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
}

.project-card { display: grid; gap: 1.1rem; align-content: start; }

.works-gallery {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.works-gallery .frame { aspect-ratio: 4 / 5; }
.works-gallery .frame:nth-child(2),
.works-gallery .frame:nth-child(6) { aspect-ratio: 5 / 4; }
.works-gallery .frame:nth-child(4),
.works-gallery .frame:nth-child(10) { aspect-ratio: 3 / 5; }
.works-gallery .frame:nth-child(7) { aspect-ratio: 4 / 5; }

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  background: linear-gradient(180deg, transparent, rgba(197, 206, 192, 0.28) 18%, rgba(197, 206, 192, 0.28) 82%, transparent);
}

.about-visuals {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.85rem;
}

.about-main { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.about-main img { object-position: center 28%; }
.about-side, .about-mood { aspect-ratio: 4 / 5; }
.about-side img { object-position: center 30%; }

.about-copy h2 { margin-bottom: 1.15rem; }
.about-copy p + p { margin-top: 0.9rem; }
.about-copy p { color: var(--muted); }

.about-copy blockquote {
  margin: 1.75rem 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.process-step .frame { margin-bottom: 1.2rem; }

.step-num {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.process-step h3 { margin-bottom: 0.65rem; }
.process-step > p:last-child { color: var(--muted); font-size: 0.98rem; }

.prices { background: var(--paper); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price {
  padding: 1.75rem 1.5rem 1.6rem;
  border: 1px solid var(--line);
  background: rgba(250, 250, 247, 0.9);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-featured {
  background: var(--forest-deep);
  color: var(--chalk);
  border-color: transparent;
  transform: translateY(-0.35rem);
}

.price-featured .price-note,
.price-featured li { color: rgba(250, 250, 247, 0.78); }

.price-badge {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.55rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.price-value span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 0.15rem;
}

.price-note {
  margin: 0.55rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.price ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.price li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 0.9rem;
  position: relative;
}

.price li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--forest);
}

.price-featured li::before { color: var(--gold); }
.price .btn { align-self: flex-start; }

.price-featured .btn-primary {
  background: var(--chalk);
  color: var(--ink);
}

.price-extras {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.price-extras div { display: grid; gap: 0.25rem; }
.price-extras strong { font-weight: 600; font-size: 0.98rem; }
.price-extras span { color: var(--muted); font-size: 0.92rem; }
.price-footnote { margin-top: 1.25rem; font-size: 0.85rem; color: var(--muted); }

.faq-list { max-width: 46rem; display: grid; gap: 0.65rem; }

details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0 1rem;
}

summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: var(--font-body); font-size: 1.25rem; color: var(--forest); }
details[open] summary::after { content: "–"; }
details p { margin-top: 0.75rem; color: var(--muted); max-width: 38rem; }

.cta {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--chalk);
}

.cta-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 1.05fr;
  gap: 0.35rem;
  background: var(--ink);
}

.cta-mosaic > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 26, 23, 0.84) 0%, rgba(28, 26, 23, 0.55) 48%, rgba(28, 26, 23, 0.35) 100%),
    linear-gradient(180deg, rgba(28, 26, 23, 0.15), rgba(28, 26, 23, 0.55));
}

.cta-copy {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad);
  max-width: 38rem;
}

.cta-copy p {
  margin: 1rem 0 1.75rem;
  color: rgba(250, 250, 247, 0.84);
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta .btn-ghost { border-color: rgba(250, 250, 247, 0.4); color: var(--chalk); }
.cta .btn-primary { background: var(--chalk); color: var(--ink); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: end;
  padding: 2.5rem var(--pad);
  background: var(--ink);
  color: rgba(250, 250, 247, 0.72);
  font-size: 0.92rem;
}

.site-footer .brand-lockup .logo-text { color: var(--chalk); }
.site-footer .brand-lockup img { box-shadow: 0 0 0 1px rgba(250, 250, 247, 0.2); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.copy { opacity: 0.55; }

.footer-private {
  opacity: 0.28;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-private:hover { opacity: 0.7; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroDrift {
  from { transform: scale(1.06); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.98);
    padding: 1.25rem 1.5rem 1.75rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }

  .site-header.is-open .header-phone {
    display: block;
    position: absolute;
    top: calc(var(--header-h) + 11.5rem);
    left: 1.5rem;
  }

  .project-feature,
  .about,
  .process-row,
  .price-grid,
  .price-extras,
  .project-grid,
  .site-footer,
  .works-gallery,
  .cta-mosaic { grid-template-columns: 1fr; }

  .works-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cta-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr;
  }

  .cta-mosaic > img:nth-child(2) { grid-row: 1 / 3; }
  .price-featured { transform: none; }
  .project-feature .frame-tall { max-height: none; }
  .about-visuals { order: -1; }

  .works-gallery .frame,
  .works-gallery .frame:nth-child(2),
  .works-gallery .frame:nth-child(4),
  .works-gallery .frame:nth-child(6),
  .works-gallery .frame:nth-child(10) { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .brand-lockup .logo-text { font-size: 1.15rem; }
  .cta-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 1fr); }
  .cta-mosaic > img:nth-child(2) { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img, .reveal, .hero-content, .frame img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
