:root {
  --blue: #1538a8;
  --ink: #0d1b4c;
  --muted: #53607e;
  --mint: #c8efd9;
  --cream: #fff8eb;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --line: #dfe5f3;
  --shadow: 0 24px 60px rgba(35, 61, 120, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.45rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

#experience,
#process,
#pricing,
#work,
#quote {
  scroll-margin-top: 90px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px clamp(22px, 7vw, 96px);
}

.brand img {
  width: 142px;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: clamp(22px, 7vw, 82px);
  align-items: center;
  min-height: 700px;
  padding: 108px clamp(24px, 8vw, 116px) 54px;
  background: var(--mint);
  overflow: hidden;
}

.small-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p:not(.small-label) {
  width: min(600px, 100%);
  margin: 24px 0 0;
  color: #26345e;
  font-size: 1.05rem;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  padding: 0 26px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(21, 56, 168, 0.08);
  cursor: pointer;
}

.button.muted {
  background: #f3f3f3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.hero-email {
  margin-top: 22px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.hero-art::before {
  content: "";
  position: absolute;
  inset: 16% 2% 7% 18%;
  border-radius: 44% 56% 50% 50%;
  background: rgba(255, 255, 255, 0.58);
}

.plush {
  position: absolute;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.plush-one {
  left: 2%;
  bottom: 60px;
  width: 34%;
  transform: rotate(-8deg);
}

.plush-two {
  left: 28%;
  top: 26px;
  width: 44%;
  z-index: 2;
  transform: rotate(4deg);
}

.plush-three {
  right: 2%;
  bottom: 62px;
  width: 34%;
  transform: rotate(-3deg);
}

.trust-line {
  padding: 30px clamp(24px, 8vw, 116px);
  background: var(--mint);
}

.trust-line p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-line ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 116px);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin: 14px auto 0;
  width: min(640px, 100%);
}

.experience-section,
.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 0.8fr);
  gap: clamp(38px, 8vw, 100px);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 500px;
  background: #fff8f0;
}

.image-stack img:first-child {
  position: absolute;
  left: 10%;
  top: 12%;
  width: 62%;
  max-height: 430px;
  object-fit: cover;
}

.image-stack img:last-child {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 38%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.text-block p {
  margin: 18px 0 0;
}

.pick-section,
.inspiration-section {
  background: var(--soft);
}

.simple-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 90px);
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.simple-options img {
  width: 160px;
  height: 128px;
  margin: 0 auto 20px;
  object-fit: cover;
}

.simple-options div:first-child img {
  object-fit: contain;
}

.simple-options p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-illustration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.process-section > :not(.process-illustration) {
  position: relative;
  z-index: 1;
}

.ring {
  position: absolute;
  left: 5%;
  top: 132px;
  width: 220px;
  height: 220px;
  border: 24px solid #ffdcea;
  border-radius: 50%;
  opacity: 0.72;
}

.triangle {
  position: absolute;
  right: 5%;
  top: 136px;
  width: 280px;
  height: 230px;
  border: 18px solid #bdf2e8;
  transform: rotate(12deg) skewX(-10deg);
  opacity: 0.78;
}

.pencil-line {
  position: absolute;
  width: 280px;
  height: 18px;
  border-radius: 999px;
  background: #ffeaa7;
  transform: rotate(-34deg);
}

.line-one {
  left: 11%;
  bottom: 190px;
}

.line-two {
  left: 18%;
  bottom: 142px;
}

.process-list {
  position: relative;
  display: grid;
  gap: 34px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.process-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue);
  border-radius: 10px;
  background: #ffffff;
}

.icon-paper {
  box-shadow: inset 12px 0 0 #ffe5ec;
}

.icon-sample {
  box-shadow: inset 0 -16px 0 #c8efd9;
}

.icon-loop {
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px #fff1b8;
}

.icon-box {
  box-shadow: inset 18px 0 0 #bdf2e8, inset 0 -14px 0 #ffeaa7;
}

.process-list p {
  margin: 8px 0;
}

.process-list small {
  color: var(--blue);
  font-weight: 900;
}

.process-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  width: min(920px, 100%);
  margin: 76px auto 0;
  text-align: center;
}

.process-notes strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.process-notes p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

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

.pricing-lines {
  display: grid;
  gap: 22px;
  width: min(840px, 100%);
  margin: 0 auto;
}

.pricing-lines div {
  display: grid;
  grid-template-columns: 42px 210px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(21, 56, 168, 0.14);
}

.pricing-lines span {
  color: var(--blue);
  font-weight: 900;
}

.pricing-lines strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.pricing-lines p {
  margin: 0;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.85fr;
  grid-auto-rows: 150px;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.inspiration-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspiration-grid img:nth-child(2) {
  grid-row: span 2;
}

.inspiration-grid img:nth-child(3) {
  grid-row: span 2;
}

.inspiration-grid img:nth-child(5) {
  grid-column: span 2;
}

.story-section {
  background: #fffbf4;
}

.story-section > img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.quote-section {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 116px);
  background: #fff8eb;
  text-align: center;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(24px, 4vw, 44px);
  width: min(980px, 100%);
  margin: 44px auto 0;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(21, 56, 168, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(35, 61, 120, 0.08);
  text-align: left;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin: 0;
  text-align: left;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid rgba(21, 56, 168, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 112px;
  padding-top: 10px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--blue);
}

.quote-form .full,
.quote-form button,
.form-note,
.prompt-chips,
.extra-fields {
  grid-column: 1 / -1;
}

.message-label textarea {
  min-height: 180px;
  padding: 14px 0;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -8px;
}

.prompt-chips button {
  min-height: 34px;
  border: 1px solid rgba(21, 56, 168, 0.22);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--blue);
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
}

.extra-fields {
  padding-top: 4px;
}

.extra-fields summary {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.quote-form button {
  justify-self: center;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  padding-left: clamp(22px, 4vw, 38px);
  border-left: 1px solid rgba(21, 56, 168, 0.14);
}

.contact-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-direct p:last-child {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(24px, 8vw, 116px);
  background: #edf1f7;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 38px;
}

.site-footer p {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    background: var(--mint);
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .experience-section,
  .story-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 50px;
  }

  .simple-options,
  .process-notes,
  .quote-form,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-direct {
    padding: 24px 0 0;
    border-top: 1px solid rgba(21, 56, 168, 0.14);
    border-left: 0;
  }

  .pricing-lines div {
    grid-template-columns: 40px 1fr;
  }

  .pricing-lines p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px;
  }

  .brand img {
    width: 128px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero {
    padding: 34px 18px 52px;
  }

  .hero-art {
    min-height: 300px;
  }

  .trust-line,
  .section,
  .quote-section {
    padding-inline: 18px;
  }

  .image-stack {
    min-height: 370px;
  }

  .ring,
  .triangle {
    opacity: 0.42;
  }

  .process-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .extra-grid {
    grid-template-columns: 1fr;
  }

  .inspiration-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .inspiration-grid img:nth-child(5) {
    grid-column: span 2;
  }

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