:root {
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --warm: #f1e8d8;
  --ink: #202833;
  --text: #4d5865;
  --muted: #748092;
  --blue: #496f95;
  --blue-deep: #2f5377;
  --blue-soft: #edf4f8;
  --green-soft: #edf4ee;
  --line: #e4d8c8;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(70, 53, 33, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--text); line-height: 1.78; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Lora, Georgia, serif; font-weight: 600; letter-spacing: 0; }
h1 { max-width: 720px; margin-bottom: 20px; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.12; }
h2 { max-width: 700px; margin-bottom: 0; font-size: clamp(25px, 3vw, 38px); line-height: 1.22; }
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.35; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 68px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(228, 216, 200, 0.78);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid #d2dde7;
}
.nav { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; font-weight: 650; }
.nav a:hover, .header-link:hover { color: var(--blue-deep); }
.header-link { color: var(--blue-deep); font-size: 14px; font-weight: 800; }

.hero {
  padding: 76px clamp(18px, 5vw, 68px) 64px;
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.hello {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: Lora, Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}
.hero-text { max-width: 690px; margin-bottom: 18px; font-size: clamp(17px, 1.8vw, 20px); }
.soft-intro { max-width: 700px; margin-bottom: 0; color: #5d6672; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.primary { color: white; background: var(--blue-deep); box-shadow: 0 12px 24px rgba(47, 83, 119, 0.17); }
.primary:hover { background: #294866; }
.secondary { color: var(--blue-deep); background: rgba(255, 255, 255, 0.72); border-color: #d7cab8; }
.letter-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}
.note-label { margin-bottom: 12px; color: var(--blue-deep); font-weight: 800; }
.letter-card p:not(.note-label) { margin-bottom: 18px; font-size: 16px; }
.signature { color: var(--ink); font-family: Lora, Georgia, serif; font-size: 22px; }

.studio-section,
.help-section,
.process-section,
.examples-section,
.project-section,
.about-section,
.future-section,
.faq-section,
.final-invite {
  padding: 82px clamp(18px, 5vw, 68px);
}
.studio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.studio-image {
  padding: 10px;
  border-radius: 26px;
  background: white;
  box-shadow: 0 16px 40px rgba(64, 49, 32, 0.1);
}
.studio-image img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: 20px; }
.section-kicker {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
}
.studio-copy p, .section-intro p, .project-intro p, .about-copy p, .future-section p, .final-invite p, .process-heading p { max-width: 720px; }
.quiet-note, .side-note {
  max-width: 620px;
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: var(--blue-soft);
  color: var(--blue-deep);
  line-height: 1.65;
  font-weight: 650;
}

.help-section { background: #fffaf2; }
.section-intro { max-width: 880px; margin: 0 auto 40px; }
.small-heading h2 { font-size: clamp(25px, 2.8vw, 36px); }
.help-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1100px;
  margin: 0 auto;
}
.help-flow article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.help-flow span { display: inline-block; margin-bottom: 16px; color: var(--blue); font-weight: 900; }
.help-flow p { margin-bottom: 0; }

.wont-section .help-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 88px);
  background: var(--paper);
}
.process-heading { position: sticky; top: 108px; align-self: start; }
.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process-list li {
  position: relative;
  padding: 0 0 34px 54px;
  border-left: 1px solid #d8cbb8;
  counter-increment: step;
}
.process-list li:last-child { border-left-color: transparent; padding-bottom: 0; }
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: -19px;
  top: -2px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d8cbb8;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--paper);
  font-weight: 900;
}
.process-list strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 19px; }
.process-list p { margin-bottom: 0; }

.examples-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  background: var(--cream);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-list span {
  padding: 12px 16px;
  border: 1px solid #ded2c0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  font-weight: 750;
}

.project-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  background: #f5efe5;
}
.project-intro { position: sticky; top: 108px; }
.project-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 50px rgba(74, 56, 32, 0.11);
}
label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 800; }
label em { color: var(--muted); font-style: normal; font-weight: 650; }
.field-note { margin-top: -8px; color: var(--muted); font-size: 13px; line-height: 1.5; }
input, textarea {
  width: 100%;
  border: 1px solid #ddd0bd;
  border-radius: 15px;
  padding: 14px 15px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}
textarea { resize: vertical; }
input:focus, textarea:focus { outline: 3px solid rgba(73, 111, 149, 0.15); border-color: #8aa9c8; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.submit-button { width: 100%; border-radius: 18px; }
.form-note { min-height: 24px; margin: 0; color: var(--blue-deep); font-weight: 800; }

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}
.photo-placeholder {
  display: grid;
  min-height: 350px;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border: 1px dashed #cdbfae;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(237, 244, 248, 0.72), rgba(255, 250, 242, 0.88)),
    var(--blue-soft);
  color: var(--blue-deep);
}
.photo-placeholder span { font-family: Lora, Georgia, serif; font-size: 27px; font-weight: 600; }
.photo-placeholder small { color: var(--muted); font-weight: 700; }
.photo-placeholder.real-photo {
  padding: 0;
  overflow: hidden;
  border-style: solid;
}
.photo-placeholder.real-photo img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}
.about-copy p { margin-bottom: 16px; }
.about-copy p:last-child { margin-bottom: 0; }
.story-copy h2 { max-width: 760px; }

.future-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  background: var(--green-soft);
}
.future-section p { margin-bottom: 0; }

.faq-section { background: #fffaf2; }
.faq-list { display: grid; gap: 12px; max-width: 980px; margin: 0 auto; }
details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
summary { cursor: pointer; color: var(--ink); font-size: 18px; font-weight: 850; }
details p { margin: 14px 0 0; max-width: 880px; }

.final-invite { text-align: center; background: var(--paper); }
.final-invite h2, .final-invite p { margin-left: auto; margin-right: auto; }
.final-invite p { margin-bottom: 26px; }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.footer p { margin: 6px 0 0; color: var(--muted); }
.footer a { color: var(--blue-deep); font-weight: 800; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero-inner,
  .studio-section,
  .process-section,
  .examples-section,
  .project-section,
  .about-section,
  .future-section {
    grid-template-columns: 1fr;
  }
  .process-heading, .project-intro { position: static; }
  .help-flow { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .header-link { display: none; }
  h1 { font-size: 34px; }
  .hello { font-size: 32px; }
  .hero,
  .studio-section,
  .help-section,
  .process-section,
  .examples-section,
  .project-section,
  .about-section,
  .future-section,
  .faq-section,
  .final-invite {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .process-list li { padding-left: 42px; }
  .footer { align-items: flex-start; flex-direction: column; }
}
