:root {
  --paper: #fff8ec;
  --paper-deep: #f5e7cf;
  --ink: #153039;
  --navy: #103f4a;
  --teal: #147c7f;
  --coral: #f05b40;
  --yellow: #f3b51b;
  --rose: #d93f63;
  --line: rgba(21, 48, 57, .2);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: #fff; color: var(--ink); padding: 12px 18px; border-radius: 4px; }
.skip-link:focus { top: 16px; }

.announcement {
  background: var(--navy);
  color: #fff9e9;
  text-align: center;
  padding: 8px 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(24px, 5vw, 78px);
  background: rgba(255, 248, 236, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 46% 54% / 50% 42% 58% 50%;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.55rem;
  transform: rotate(-5deg);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}
.brand b { display: block; font-size: .94rem; letter-spacing: .15em; }
.brand small { display: block; margin-top: 7px; font-size: .57rem; letter-spacing: .22em; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); font-size: .88rem; font-weight: 600; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--coral); transition: right .25s; }
.nav-links > a:hover::after { right: 0; }
.nav-cta { background: var(--coral); color: white; padding: 12px 18px; border-radius: 3px; box-shadow: 3px 3px 0 var(--ink); transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.menu-button { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s; }

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  padding: clamp(32px, 5vw, 78px);
  gap: clamp(34px, 5vw, 80px);
  position: relative;
  background-image: radial-gradient(rgba(21,48,57,.095) .7px, transparent .7px);
  background-size: 13px 13px;
}
.hero::before { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(21,48,57,.14); border-radius: 50%; left: -92px; bottom: 8%; }
.hero-copy { align-self: center; max-width: 650px; position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { color: var(--coral); }
.hero h1, .section h2, .manifesto h2, .made-copy h2, .final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.035em;
  margin: 0;
}
.hero h1 { font-size: clamp(4.2rem, 7.25vw, 8.5rem); }
.hero h1 em, .section h2 em, .made-copy h2 em { color: var(--coral); font-weight: 400; }
.hero-text { max-width: 590px; margin: 28px 0 0; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 14px 22px; border-radius: 3px; font-size: .88rem; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button-primary { background: var(--coral); color: white; box-shadow: 4px 4px 0 var(--ink); }
.button-primary:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.button-instagram { background: var(--navy); color: white; box-shadow: 4px 4px 0 var(--yellow); }
.button-instagram:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--yellow); }
.text-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor; font-weight: 700; font-size: .9rem; padding-bottom: 3px; }
.micro-proof { display: flex; align-items: center; gap: 11px; margin-top: 42px; font-size: .74rem; font-weight: 700; letter-spacing: .04em; color: rgba(21,48,57,.72); flex-wrap: wrap; }
.micro-proof i { width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; }
.hero-visual { position: relative; min-height: 620px; display: flex; align-items: center; }
.hero-image-wrap { height: min(72vh, 760px); width: 100%; overflow: hidden; border-radius: 54% 46% 45% 55% / 39% 46% 54% 61%; box-shadow: 0 24px 60px rgba(37,39,30,.18); transform: rotate(1.2deg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.postmark {
  position: absolute;
  right: -14px;
  top: 5%;
  width: 124px;
  height: 124px;
  border: 2px solid var(--navy);
  outline: 1px dashed var(--navy);
  outline-offset: 5px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: .95;
  transform: rotate(11deg);
  box-shadow: 8px 9px 0 rgba(16,63,74,.19);
}
.postmark strong { font-family: var(--serif); font-size: 1.45rem; }
.postmark span { font-family: var(--serif); font-size: 1.9rem; }
.postmark small { margin-top: 8px; font-size: .48rem; letter-spacing: .17em; font-weight: 800; }
.hand-note { position: absolute; left: -18px; bottom: 7%; background: var(--paper); padding: 10px 16px; font-family: var(--serif); font-style: italic; font-size: 1.15rem; transform: rotate(-6deg); box-shadow: 5px 5px 0 var(--coral); }

.ticker { overflow: hidden; background: var(--yellow); border-block: 1px solid var(--ink); padding: 12px 0; }
.ticker-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: ticker 30s linear infinite; font-size: .78rem; font-weight: 800; letter-spacing: .16em; white-space: nowrap; }
.ticker-track b { color: var(--coral); font-size: 1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(86px, 10vw, 150px) clamp(24px, 6vw, 96px); }
.section-heading { display: grid; grid-template-columns: .7fr 1.1fr 1fr; align-items: end; gap: 38px; max-width: 1400px; margin: 0 auto 64px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .made-copy h2, .services-intro h2, .faq-heading h2 { font-size: clamp(3rem, 5.2vw, 6rem); }
.section-heading > p:last-child { max-width: 490px; margin: 0; color: rgba(21,48,57,.76); }
.inside-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1400px; margin: 0 auto; border: 1px solid var(--ink); }
.inside-card { min-height: 410px; padding: 27px; position: relative; border-right: 1px solid var(--ink); display: flex; flex-direction: column; overflow: hidden; }
.inside-card:last-child { border-right: 0; }
.inside-card.coral { background: var(--coral); color: #fff; }
.inside-card.yellow { background: var(--yellow); }
.inside-card.teal { background: #89c8b8; }
.inside-card.navy { background: var(--navy); color: white; }
.card-number { position: absolute; top: 20px; right: 22px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; opacity: .72; }
.inside-card h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.1; margin: auto 0 12px; }
.inside-card p { margin: 0; font-size: .9rem; line-height: 1.55; opacity: .87; }
.paper-icon { width: 148px; height: 170px; position: relative; margin: 24px auto 40px; filter: drop-shadow(7px 8px 0 rgba(21,48,57,.18)); }
.postcard-icon { background: var(--paper); border: 2px solid var(--ink); transform: rotate(-6deg); }
.postcard-icon::before { content: ""; position: absolute; inset: 18px; border: 2px solid var(--teal); background: repeating-radial-gradient(circle at 50% 100%, transparent 0 12px, var(--coral) 13px 15px); }
.postcard-icon i { position: absolute; width: 30px; height: 30px; border-radius: 50%; left: 57px; bottom: 30px; background: var(--yellow); }
.letter-icon { width: 160px; height: 125px; margin-top: 48px; background: var(--paper); border: 2px solid var(--ink); transform: rotate(4deg); }
.letter-icon::before, .letter-icon::after { content: ""; position: absolute; top: -1px; width: 2px; height: 105px; background: var(--ink); transform-origin: top; }
.letter-icon::before { left: 0; transform: rotate(-51deg); }
.letter-icon::after { right: 0; transform: rotate(51deg); }
.letter-icon i { position: absolute; width: 34px; height: 34px; border-radius: 50%; background: var(--coral); left: 62px; top: 50px; z-index: 2; }
.sticker-icon { background: var(--paper); border: 2px solid var(--ink); transform: rotate(-2deg); }
.sticker-icon::before, .sticker-icon::after, .sticker-icon i, .sticker-icon b, .sticker-icon em { content: ""; position: absolute; border: 2px solid var(--ink); border-radius: 50%; }
.sticker-icon::before { width: 46px; height: 46px; background: var(--coral); left: 19px; top: 20px; }
.sticker-icon::after { width: 52px; height: 52px; background: var(--yellow); right: 18px; top: 64px; }
.sticker-icon i { width: 35px; height: 35px; background: var(--teal); left: 25px; bottom: 28px; }
.sticker-icon b { width: 30px; height: 30px; background: var(--rose); right: 22px; bottom: 19px; }
.surprise-icon { width: 150px; height: 150px; margin-top: 34px; background: var(--yellow); border: 2px solid var(--paper); border-radius: 50%; color: var(--ink); display: grid; place-items: center; font-family: var(--serif); font-size: 5rem; transform: rotate(8deg); }
.inside-note { max-width: 1400px; margin: 18px auto 0; text-align: right; font-family: var(--serif); font-style: italic; font-size: 1rem; }

.plans { background: #d5e8df; border-top: 1px solid var(--ink); }
.plans-heading { max-width: 920px; margin: 0 auto 62px; text-align: center; }
.plans-heading .eyebrow { justify-content: center; }
.plans-heading h2 { font-size: clamp(3.4rem, 6vw, 7rem); }
.plans-heading p:last-child { max-width: 660px; margin: 24px auto 0; color: rgba(21,48,57,.75); }
.plan-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan-card { min-height: 520px; padding: 34px; background: var(--paper); border: 1px solid var(--ink); border-right: 0; display: flex; flex-direction: column; position: relative; }
.plan-card:last-child { border-right: 1px solid var(--ink); }
.plan-card.featured { background: var(--yellow); transform: translateY(-14px); box-shadow: 8px 10px 0 var(--coral); z-index: 2; }
.plan-card.special { background: var(--navy); color: var(--paper); }
.plan-ribbon { position: absolute; left: 22px; right: 22px; top: -18px; background: var(--coral); color: white; border: 1px solid var(--ink); text-align: center; padding: 7px 10px; font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.plan-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid currentColor; font-size: .71rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-top b { font-family: var(--serif); font-size: 1.3rem; }
.plan-card h3 { margin: 38px 0 6px; font-family: var(--serif); font-size: clamp(2.15rem, 3.2vw, 3.4rem); font-weight: 400; line-height: 1; }
.price { margin: 8px 0 24px; font-family: var(--serif); font-size: clamp(4.5rem, 6vw, 7rem); line-height: 1; letter-spacing: -.04em; }
.price small { font-size: .42em; vertical-align: top; line-height: 1.7; }
.plan-card > p:not(.price) { margin: 0 0 28px; color: rgba(21,48,57,.72); }
.plan-card.special > p:not(.price) { color: rgba(255,248,236,.72); }
.button-plan { margin-top: auto; border: 1px solid currentColor; box-shadow: 4px 4px 0 var(--coral); }
.plan-card.featured .button-plan { background: var(--paper); }
.plan-card.special .button-plan { background: var(--yellow); color: var(--ink); }
.button-plan:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--coral); }
.plans-footer { max-width: 1260px; margin: 38px auto 0; display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.plans-footer > span { color: var(--coral); font-size: 1.3rem; }
.plans-footer p { margin: 0; }
.plans-footer a { font-weight: 800; border-bottom: 1px solid currentColor; }

.manifesto { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 650px; background: var(--navy); color: var(--paper); overflow: hidden; }
.manifesto-art { min-height: 560px; position: relative; background: var(--coral); overflow: hidden; }
.manifesto-art::before { content: "M"; position: absolute; left: 5%; top: -24%; font-family: var(--serif); font-size: min(47vw, 650px); line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(255,248,236,.42); transform: rotate(-7deg); }
.manifesto-art::after { content: ""; position: absolute; inset: 9%; border: 1px dashed rgba(255,248,236,.68); }
.stamp { position: absolute; z-index: 2; border: 2px solid var(--paper); padding: 10px 16px; font-size: .73rem; font-weight: 800; letter-spacing: .14em; }
.stamp-one { left: 11%; top: 17%; transform: rotate(-8deg); }
.stamp-two { right: 12%; bottom: 16%; transform: rotate(7deg); }
.lines { position: absolute; z-index: 2; width: 60%; height: 22%; right: -5%; top: 26%; background: repeating-linear-gradient(to bottom, transparent 0 14px, rgba(255,248,236,.6) 15px 16px); transform: rotate(-7deg); }
.manifesto-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(58px, 8vw, 130px); }
.eyebrow.light span { color: var(--yellow); }
.manifesto h2 { max-width: 780px; font-size: clamp(3.5rem, 6.3vw, 7.3rem); }
.manifesto-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 32px; color: rgba(255,248,236,.78); font-size: 1.05rem; }
.button-light { background: var(--paper); color: var(--ink); box-shadow: 4px 4px 0 var(--yellow); }
.button-light:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--yellow); }

.section-heading.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading.centered .eyebrow { align-self: center; }
.process-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); }
.process-step { padding: 48px clamp(24px, 4vw, 60px); text-align: center; position: relative; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step > span { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 26px; background: var(--yellow); border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 1.4rem; box-shadow: 4px 4px 0 var(--coral); }
.process-step h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin: 0 0 12px; }
.process-step p { margin: 0; color: rgba(21,48,57,.72); }

.made-by-hand { display: grid; grid-template-columns: 1.12fr .88fr; background: #d5e8df; }
.made-image { position: relative; min-height: 720px; overflow: hidden; }
.made-image img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; right: 0; bottom: 0; background: var(--yellow); padding: 13px 20px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); font-weight: 800; font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.made-copy { padding: clamp(60px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.made-copy > p:not(.eyebrow) { margin: 28px 0 20px; color: rgba(21,48,57,.76); max-width: 580px; }
.made-copy .pull-quote { margin: 10px 0 30px; padding: 0 0 0 22px; border-left: 3px solid var(--coral); font-family: var(--serif); font-size: 1.3rem; line-height: 1.45; font-style: italic; color: var(--ink); }

.services { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); background: var(--paper-deep); }
.services-intro p:last-child { max-width: 440px; }
.service-list { border-top: 1px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 42px 1.1fr .8fr 34px; gap: 20px; align-items: center; min-height: 135px; border-bottom: 1px solid var(--ink); transition: background .25s, padding .25s; }
.service-row:hover { background: var(--yellow); padding-inline: 18px; }
.service-row > span { font-size: .72rem; font-weight: 700; }
.service-row h3 { font-family: var(--serif); font-size: clamp(1.6rem, 2.25vw, 2.5rem); font-weight: 400; line-height: 1.08; margin: 0; }
.service-row p { margin: 0; color: rgba(21,48,57,.67); }
.service-row b { font-size: 1.35rem; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 150px); }
.faq-heading > p:not(.eyebrow) { max-width: 430px; color: rgba(21,48,57,.72); }
.button-outline { border: 1px solid var(--ink); margin-top: 14px; box-shadow: 4px 4px 0 var(--yellow); }
.button-outline:hover { background: var(--yellow); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--coral); }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); }
.accordion summary { min-height: 91px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.45rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-family: var(--sans); font-size: 1.6rem; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -8px 52px 30px 0; color: rgba(21,48,57,.72); }

.final-cta { min-height: 690px; padding: 90px 24px; background: var(--coral); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 330px; height: 210px; border: 2px solid rgba(255,255,255,.3); }
.final-cta::before { left: -80px; bottom: -50px; transform: rotate(22deg); }
.final-cta::after { right: -85px; top: -48px; transform: rotate(-18deg); }
.final-cta h2 { font-size: clamp(4rem, 8vw, 9rem); }
.final-cta > p:not(.eyebrow) { max-width: 520px; margin: 25px 0 30px; font-size: 1.05rem; }
.button-sun { background: var(--yellow); color: var(--ink); box-shadow: 5px 5px 0 var(--navy); }
.button-sun:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--navy); }
.mini-envelope { width: 72px; height: 49px; background: var(--paper); border: 2px solid var(--ink); position: relative; margin-bottom: 36px; transform: rotate(-6deg); box-shadow: 5px 5px 0 var(--yellow); }
.mini-envelope::after { content: ""; position: absolute; left: 12px; top: -1px; width: 44px; height: 44px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); }

.site-footer { padding: 70px clamp(24px, 6vw, 96px) 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; background: var(--navy); color: var(--paper); }
.footer-brand { max-width: 360px; }
.footer-brand .brand-mark { background: var(--yellow); color: var(--ink); }
.footer-brand h2 { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; margin: 18px 0 8px; }
.footer-brand p { color: rgba(255,248,236,.68); }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links p { margin: 0 0 12px; color: var(--yellow); font-size: .73rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { color: rgba(255,248,236,.8); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255,248,236,.18); padding-top: 24px; display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,248,236,.55); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1050px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 22px 28px 28px; background: var(--paper); border-bottom: 1px solid var(--ink); }
  .nav-links.open { display: flex; }
  .menu-button { display: block; }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 560px; }
  .hero-image-wrap { height: 65vw; min-height: 540px; max-height: 720px; }
  .section-heading { grid-template-columns: 1fr 1.6fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .inside-card:nth-child(2) { border-right: 0; }
  .inside-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-art { min-height: 440px; }
  .made-by-hand { grid-template-columns: 1fr; }
  .made-image { min-height: 630px; }
  .services, .faq { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; max-width: 720px; gap: 18px; }
  .plan-card, .plan-card:last-child { border: 1px solid var(--ink); }
  .plan-card.featured { transform: none; }
  .service-list, .accordion { max-width: 900px; width: 100%; }
}

@media (max-width: 700px) {
  .announcement { font-size: .62rem; letter-spacing: .1em; }
  .site-header { min-height: 72px; padding: 10px 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand b { font-size: .8rem; }
  .brand small { font-size: .49rem; }
  .hero { min-height: auto; padding: 62px 20px 48px; gap: 42px; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .hero-text { margin-top: 22px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .micro-proof { line-height: 1.4; }
  .hero-visual { min-height: 420px; }
  .hero-image-wrap { min-height: 430px; height: 110vw; border-radius: 46% 54% 51% 49% / 40% 45% 55% 60%; }
  .hero-image-wrap img { object-position: 67% center; }
  .postmark { width: 94px; height: 94px; right: 0; top: 1%; }
  .postmark strong { font-size: 1rem; }
  .postmark span { font-size: 1.4rem; }
  .postmark small { font-size: .38rem; }
  .hand-note { left: 5px; }
  .section { padding: 84px 20px; }
  .section-heading { display: block; margin-bottom: 42px; }
  .section-heading h2, .made-copy h2, .services-intro h2, .faq-heading h2 { font-size: clamp(3.4rem, 15vw, 5rem); margin-bottom: 28px; }
  .inside-grid { grid-template-columns: 1fr; }
  .inside-card { min-height: 380px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .inside-card:last-child { border-bottom: 0; }
  .inside-note { text-align: left; }
  .plans-heading { text-align: left; }
  .plans-heading .eyebrow { justify-content: flex-start; }
  .plan-card { min-height: 470px; padding: 28px; }
  .plans-footer { align-items: flex-start; flex-direction: column; text-align: left; }
  .manifesto-art { min-height: 360px; }
  .manifesto-art::before { font-size: 100vw; }
  .manifesto-copy { padding: 76px 20px; }
  .manifesto h2 { font-size: clamp(3.5rem, 16vw, 5.6rem); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .made-image { min-height: 500px; }
  .made-copy { padding: 76px 20px; }
  .services { gap: 54px; }
  .service-row { grid-template-columns: 30px 1fr 26px; padding: 26px 0; }
  .service-row p { grid-column: 2; }
  .service-row b { grid-column: 3; grid-row: 1 / 3; }
  .faq { gap: 56px; }
  .accordion summary { font-size: 1.25rem; line-height: 1.2; }
  .final-cta { min-height: 640px; padding-inline: 20px; }
  .final-cta h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

/* Custom studio service pages */
.service-page { background: #fff8ec; }
.service-page .announcement { background: var(--page-deep, var(--navy)); }
.service-page .brand-mark,
.service-page .nav-cta,
.service-page .button-primary { background: var(--coral); }
.service-page .nav-links > a:not(.nav-cta)::after { background: var(--coral); }
.service-page .eyebrow span,
.service-page .service-hero h1 em,
.service-page .service-section-heading h2 em { color: var(--page-accent, var(--coral)); }
.wedding-page { --page-accent: #b63f32; --page-deep: #6e2d28; --page-soft: #ecd9c7; }
.einvite-page { --page-accent: #147c7f; --page-deep: #103f4a; --page-soft: #c8dfd6; }
.social-page { --page-accent: #d94964; --page-deep: #5d2850; --page-soft: #ecd1da; }

.service-hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding: clamp(52px, 7vw, 108px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  background-image: radial-gradient(rgba(21,48,57,.095) .7px, transparent .7px);
  background-size: 13px 13px;
}
.service-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -160px;
  bottom: -130px;
  border: 1px solid rgba(21,48,57,.16);
  border-radius: 50%;
}
.service-hero-copy { position: relative; z-index: 2; max-width: 680px; }
.back-link { display: inline-block; margin-bottom: 34px; font-size: .76rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; border-bottom: 1px solid currentColor; }
.service-hero h1,
.service-section-heading h2,
.service-intro-band h2,
.service-final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.service-hero h1 { font-size: clamp(4rem, 6.7vw, 8rem); }
.service-hero h1 em,
.service-intro-band h2 em,
.service-final-cta h2 em { font-weight: 400; }
.service-lead { max-width: 600px; margin: 30px 0 0; font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.68; }
.service-hero-visual {
  position: relative;
  aspect-ratio: 1.06;
  overflow: hidden;
  border-radius: 48% 52% 49% 51% / 42% 44% 56% 58%;
  background: var(--page-soft);
  box-shadow: 0 28px 70px rgba(21,48,57,.2);
  transform: rotate(1.1deg);
}
.service-hero-visual::after { content: "✦"; position: absolute; right: 7%; bottom: 4%; width: 74px; height: 74px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 1.7rem; border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.service-hero-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }

.service-intro-band { padding: clamp(62px, 8vw, 118px) 24px; text-align: center; color: #fff8ec; background: var(--page-deep); }
.service-intro-band p { margin: 0 0 12px; font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.service-intro-band h2 { max-width: 980px; margin-inline: auto; font-size: clamp(3.3rem, 6.5vw, 7rem); }
.service-intro-band h2 em { color: var(--yellow); }

.service-offerings,
.service-process,
.service-fit,
.cross-services { padding-top: clamp(88px, 10vw, 150px); padding-bottom: clamp(88px, 10vw, 150px); }
.service-section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); column-gap: clamp(42px, 8vw, 130px); align-items: end; margin-bottom: clamp(48px, 7vw, 90px); }
.service-section-heading .eyebrow { grid-column: 1 / -1; }
.service-section-heading h2 { font-size: clamp(3.6rem, 6vw, 7rem); }
.service-section-heading > p:last-child { margin: 0 0 7px; font-size: 1.04rem; line-height: 1.75; }

.offering-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ink); }
.offering-card { min-height: 380px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--ink); }
.offering-card:last-child { border-right: 0; }
.offering-card > span { font-family: var(--serif); font-size: 1rem; }
.offering-card h3 { max-width: 230px; margin: auto 0 14px; font-family: var(--serif); font-size: clamp(1.65rem, 2.3vw, 2.35rem); line-height: 1.02; font-weight: 400; }
.offering-card p { margin: 0; line-height: 1.65; }
.offering-card.coral { background: #f5866e; }
.offering-card.yellow { background: #f4c84c; }
.offering-card.teal { background: #64b5aa; }
.offering-card.navy { background: var(--navy); color: #fff8ec; }

.service-process { color: #fff8ec; background: var(--page-deep); }
.service-process .service-section-heading { display: block; }
.service-process .service-section-heading h2 { max-width: 920px; }
.service-process .service-section-heading h2 em { color: var(--yellow); }
.service-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,248,236,.35); border-bottom: 1px solid rgba(255,248,236,.35); }
.service-process-grid article { min-height: 290px; padding: 34px clamp(20px, 2.8vw, 42px); border-right: 1px solid rgba(255,248,236,.35); }
.service-process-grid article:last-child { border-right: 0; }
.service-process-grid b { display: block; margin-bottom: 70px; color: var(--yellow); font-family: var(--serif); font-size: 1.1rem; }
.service-process-grid h3 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(1.55rem, 2vw, 2.15rem); font-weight: 400; line-height: 1.05; }
.service-process-grid p { margin: 0; color: rgba(255,248,236,.78); line-height: 1.65; }

.service-fit { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(50px, 8vw, 140px); align-items: start; background: var(--page-soft); }
.service-fit .service-section-heading { display: block; margin: 0; }
.service-fit .service-section-heading h2 { font-size: clamp(3.6rem, 5.6vw, 6.5rem); }
.fit-list { border-top: 1px solid var(--ink); }
.fit-list p { display: grid; grid-template-columns: 28px 1fr; gap: 14px; margin: 0; padding: 24px 0; border-bottom: 1px solid var(--ink); font-size: 1.02rem; line-height: 1.55; }
.fit-list span { color: var(--page-accent); }

.cross-services > .eyebrow { margin-bottom: 30px; }
.cross-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.cross-card { position: relative; min-height: 280px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 56px); border-bottom: 1px solid var(--ink); transition: color .25s, background .25s; }
.cross-card:first-child { border-right: 1px solid var(--ink); }
.cross-card:hover { color: #fff8ec; background: var(--page-deep); }
.cross-card small { font-family: var(--serif); }
.cross-card h3 { max-width: 560px; margin: auto 0 24px; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.4rem); font-weight: 400; line-height: .98; }
.cross-card > span { font-weight: 700; }

.service-final-cta { min-height: 700px; display: grid; place-items: center; align-content: center; gap: 34px; padding: 100px clamp(24px, 8vw, 140px); text-align: center; color: #fff8ec; background: var(--page-deep); }
.service-final-cta .eyebrow { margin: 0; }
.service-final-cta .eyebrow span { color: var(--yellow); }
.service-final-cta h2 { max-width: 1100px; font-size: clamp(3.8rem, 7vw, 8rem); }

@media (max-width: 1050px) {
  .service-hero { min-height: auto; grid-template-columns: 1fr; }
  .service-hero-copy { max-width: 820px; }
  .service-hero-visual { width: min(100%, 820px); justify-self: center; aspect-ratio: 1.35; }
  .service-section-heading { grid-template-columns: 1fr; }
  .service-section-heading > p:last-child { max-width: 700px; margin-top: 28px; }
  .offering-grid,
  .service-process-grid { grid-template-columns: repeat(2, 1fr); }
  .offering-card:nth-child(2),
  .service-process-grid article:nth-child(2) { border-right: 0; }
  .offering-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .service-process-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,248,236,.35); }
  .service-fit { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .service-hero { padding: 54px 20px 68px; gap: 46px; }
  .service-hero h1 { font-size: clamp(3.6rem, 17vw, 5.6rem); }
  .service-lead { font-size: 1rem; }
  .service-hero-visual { aspect-ratio: .88; border-radius: 45% 55% 48% 52% / 37% 44% 56% 63%; }
  .service-hero-visual::after { width: 62px; height: 62px; right: 6%; }
  .service-intro-band h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .service-offerings,
  .service-process,
  .service-fit,
  .cross-services { padding-top: 82px; padding-bottom: 82px; }
  .service-section-heading h2,
  .service-fit .service-section-heading h2 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .offering-grid,
  .service-process-grid,
  .cross-grid { grid-template-columns: 1fr; }
  .offering-card { min-height: 325px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .offering-card:last-child { border-bottom: 0; }
  .service-process-grid article { min-height: 245px; border-right: 0; border-bottom: 1px solid rgba(255,248,236,.35); }
  .service-process-grid article:last-child { border-bottom: 0; }
  .service-process-grid b { margin-bottom: 46px; }
  .service-fit { gap: 48px; }
  .cross-card:first-child { border-right: 0; }
  .cross-card { min-height: 240px; }
  .service-final-cta { min-height: 620px; padding: 86px 20px; }
  .service-final-cta h2 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
}

/* A tighter editorial canvas for large desktop screens */
@media (min-width: 1500px) {
  .site-header {
    padding-inline: max(78px, calc((100vw - 1640px) / 2 + 48px));
  }

  .hero,
  .section,
  .service-hero {
    padding-inline: max(96px, calc((100vw - 1600px) / 2 + 56px));
  }

  .hero {
    min-height: 780px;
    padding-block: 48px;
    gap: 62px;
    grid-template-columns: .95fr 1.05fr;
  }

  .hero h1 { font-size: 6.8rem; }
  .hero-text { margin-top: 22px; }
  .hero-actions { margin-top: 26px; }
  .micro-proof { margin-top: 26px; }
  .hero-image-wrap { height: 600px; }
  .section { padding-block: 88px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2,
  .made-copy h2,
  .services-intro h2,
  .faq-heading h2 { font-size: 5rem; }

  .inside-card { min-height: 360px; }
  .plans-heading { margin-bottom: 42px; }
  .plans-heading h2 { font-size: 5.7rem; }
  .plan-card { min-height: 450px; }

  .manifesto { min-height: 540px; }
  .manifesto-art { min-height: 540px; }
  .manifesto h2 { font-size: 5.65rem; }
  .made-image { min-height: 590px; }

  .final-cta { min-height: 520px; padding-block: 72px; }
  .final-cta h2 { max-width: 1100px; font-size: 6.4rem; }

  .site-footer {
    padding: 58px max(96px, calc((100vw - 1600px) / 2 + 56px)) 22px;
  }

  .service-hero {
    min-height: 720px;
    padding-block: 54px;
    gap: 60px;
  }
  .service-hero h1 { font-size: 6rem; }
  .service-hero-visual { max-width: 640px; justify-self: end; }
  .service-intro-band { padding-block: 72px; }
  .service-section-heading { margin-bottom: 48px; }
  .service-section-heading h2 { font-size: 5.3rem; }
  .offering-card { min-height: 340px; }
  .service-process-grid article { min-height: 255px; }
  .cross-card { min-height: 240px; }
  .service-final-cta { min-height: 520px; padding-block: 74px; }
  .service-final-cta h2 { font-size: 5.8rem; }
}
