:root {
  --background: #ffffff;
  --cream: #FAF8F4;
  --card: #ffffff;
  --border: #e1dbd2;
  --text: #2f2a25;
  --muted: #7a7068;
  --brand-blue: #182a52;
  --brand-blue-deep: #101d38;
  --gold: #8a6f4e;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 22px 42px;
}

/* Home page is a full scrolling story (hero + sections), not a single centered
   screen — the hero below recreates the original centered look on its own. */
body.home {
  display: block;
  padding: 0;
}

h1 {
  font-family: 'Libre Baskerville', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0 0 26px;
  letter-spacing: 0.01em;
  color: var(--brand-blue);
}

p {
  margin: 6px 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--text);
}

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

.page {
  width: 100%;
}

.canvas {
  width: min(1200px, 96vw);
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: var(--shadow);
  border-radius: 0;
  padding: 24px 56px 28px;
  position: relative;
}

.brand {
  color: #3a332c;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: flex-start;
}

.brand__logo {
  height: clamp(96px, 15vw, 148px);
  width: auto;
  display: block;
}

.content {
  text-align: center;
  padding: 16px 0 32px;
}

.content em {
  color: #5d554c;
}

.email-cta {
  display: inline-block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--brand-blue);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: opacity 140ms ease;
}

.email-cta:hover,
.email-cta:focus-visible {
  opacity: 0.7;
}

.space-top {
  margin-top: 18px;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text);
}

.contact-item .icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.contact-item svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #4b423a;
  stroke-width: 1.35;
}

.contact-item svg path {
  stroke: #4b423a;
  fill: none;
}

.rights {
  margin-left: auto;
  font-size: 0.96rem;
  color: #7a7068;
}

/* ══════════════════════════════════════════════
   HOMEPAGE STORY — hero + scrolling sections
   ══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 22px 42px;
}

.nav-links {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-blue);
  border-color: var(--gold);
}

.scroll-hint {
  margin-top: 46px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint::after {
  content: "↓";
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0;
}

.section {
  padding: 88px 22px;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--brand-blue-deep);
}

.section-inner {
  width: min(760px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.section-inner.wide {
  width: min(920px, 94vw);
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

.section--dark .eyebrow {
  color: #c8a97e;
}

.section h2 {
  font-family: 'Libre Baskerville', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: var(--brand-blue);
  line-height: 1.3;
  margin: 0 0 24px;
}

.section--dark h2 {
  color: #ffffff;
}

.section p {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 16px;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.lede-em {
  font-style: italic;
  color: var(--muted);
}

.section--dark .lede-em {
  color: rgba(255, 255, 255, 0.55);
}

.quiet-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.quiet-list li {
  font-size: 1.08rem;
  line-height: 1.75;
  padding: 6px 0;
  color: var(--text);
}

.quiet-list li::before {
  content: "— ";
  color: var(--gold);
}

.traits-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.08rem;
  color: var(--brand-blue);
}

.traits-row span:not(:last-child)::after {
  content: " ·";
  color: var(--gold);
  margin: 0 12px 0 4px;
}

.services-list {
  margin-top: 12px;
  text-align: left;
  display: grid;
  gap: 34px;
}

.service-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: baseline;
}

.service-item .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

.service-item h3 {
  margin: 0 0 6px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--brand-blue);
}

.service-item p {
  margin: 0;
  font-size: 1.02rem;
}

.segments {
  margin-top: 12px;
  text-align: left;
  display: grid;
  gap: 28px;
}

.segment h3 {
  margin: 0 0 6px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--brand-blue);
}

.segment p {
  margin: 0;
  font-size: 1.02rem;
}

.closing-em {
  margin-top: 36px;
  font-style: italic;
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.phases-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  text-align: left;
}

.phase {
  flex: 1 1 190px;
  max-width: 230px;
  border-top: 2px solid var(--border);
  padding-top: 16px;
}

.phase .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

.phase h3 {
  margin: 8px 0 6px;
  font-size: 1.08rem;
  font-weight: 400;
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--brand-blue);
}

.phase p {
  margin: 0;
  font-size: 0.96rem;
}

.quote-block {
  margin-top: 46px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brand-blue);
}

.section--dark .quote-block {
  color: #ffffff;
}

.contact-form {
  max-width: 420px;
  margin: 32px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08rem;
  padding: 6px 2px 10px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  align-self: flex-start;
  margin-top: 4px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: #ffffff;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.08rem;
  padding: 0 0 6px;
  cursor: pointer;
  transition: opacity 140ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  opacity: 0.7;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer--dark {
  background: var(--brand-blue-deep);
  padding: 30px 22px 34px;
}

.footer--dark .canvas-footer {
  width: min(920px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}

.footer--dark .contact-item,
.footer--dark .rights {
  color: rgba(255, 255, 255, 0.5);
}

.footer--dark .contact-item svg,
.footer--dark .contact-item svg path {
  stroke: rgba(255, 255, 255, 0.55);
}

.footer--dark a:hover {
  color: #ffffff;
}

@media (max-width: 720px) {
  body {
    padding: 18px 12px;
  }

  .canvas {
    padding: 28px 22px 20px;
  }

  .content {
    padding: 8px 0 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .rights {
    margin-left: 0;
    padding-top: 6px;
  }

  .hero {
    padding: 32px 16px 34px;
  }

  .section {
    padding: 60px 18px;
  }

  .service-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .phases-row {
    gap: 20px;
  }

  .phase {
    flex: 1 1 45%;
  }

  .footer--dark {
    padding: 26px 18px 30px;
  }

  .footer--dark .canvas-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
