/* Willow & June · romantic editorial, light and airy */

:root {
  --ivory: #FBF8F4;
  --ivory-deep: #F4EEE6;
  --ink: #2B2622;
  --ink-soft: #5C544C;
  --rose: #B0766B;
  --rose-deep: #9A6257;
  --line: rgba(43, 38, 34, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Gilda Display", Georgia, serif;
  --body: "Jost", system-ui, sans-serif;
}

.preloader{ position:fixed; inset:0; z-index:9999; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; background:var(--ivory); transition:opacity .5s var(--ease), visibility .5s var(--ease); }
.preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ color:var(--rose); opacity:0; animation:preloaderIn .6s var(--ease) forwards; }
.preloader-bar{ width:120px; height:2px; background:var(--line); overflow:hidden; border-radius:2px; }
.preloader-bar-fill{ display:block; height:100%; width:0%; background:var(--rose); transition:width .25s var(--ease); }
@keyframes preloaderIn{ to{ opacity:1; } }
body.is-preloading{ overflow:hidden; }
@media (prefers-reduced-motion:reduce){ .preloader-mark{ animation:none; opacity:1; } }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

section { padding: clamp(90px, 12vw, 160px) 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--ink-soft);
}

.eyebrow-rose { color: var(--rose); }

.section-title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  margin: 18px 0 22px;
}

.section-sub {
  max-width: 560px;
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.btn-rose { background: var(--rose); color: var(--ivory); }
.btn-rose:hover { background: var(--rose-deep); transform: translateY(-2px); }

.btn-ink { background: var(--ink); color: var(--ivory); padding: 12px 26px; }
.btn-ink:hover { background: var(--rose-deep); }

.btn-ghost { background: transparent; color: var(--ivory); border-color: rgba(251, 248, 244, 0.65); }
.btn-ghost:hover { background: rgba(251, 248, 244, 0.14); border-color: var(--ivory); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 20px 0;
  transition: background-color 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
  color: var(--ivory);
}

.site-header.scrolled {
  background: var(--ivory);
  color: var(--ink);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line), 0 12px 32px rgba(43, 38, 34, 0.06);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark { display: inline-flex; color: var(--rose); }
.site-header:not(.scrolled) .brand-mark { color: var(--ivory); }

.brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-name em, .footer-brand em {
  font-style: italic;
  color: var(--rose);
}
.site-header:not(.scrolled) .brand-name em { color: inherit; }

.site-nav { display: flex; gap: 32px; }

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after { transform: scaleX(1); }

.site-header:not(.scrolled) .header-cta { background: rgba(43, 38, 34, 0.4); border-color: rgba(251, 248, 244, 0.5); }
.site-header:not(.scrolled) .header-cta:hover { background: var(--rose); border-color: var(--rose); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 120px;
  color: var(--ivory);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(38, 30, 26, 0.46);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero .eyebrow { color: rgba(251, 248, 244, 0.85); }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  margin: 26px 0 30px;
  text-wrap: balance;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 42px;
  font-size: 1.1rem;
  color: rgba(251, 248, 244, 0.92);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(251, 248, 244, 0.8);
  padding: 10px;
}
.hero-scroll:hover { color: var(--ivory); }
.hero-scroll svg { animation: drift 2.4s var(--ease) infinite; }

@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  55% { transform: translateY(6px); opacity: 1; }
}

/* ---------- Credibility ---------- */
.credibility {
  padding: clamp(60px, 8vw, 90px) 0;
  border-bottom: 1px solid var(--line);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.cred-item { text-align: center; }

.cred-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--rose);
  margin-bottom: 10px;
}

.cred-label {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Process ---------- */
.process { text-align: left; }

.process .eyebrow, .process .section-title { text-align: center; }
.process .section-title { margin-bottom: clamp(50px, 7vw, 80px); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 64px);
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.step-num {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--rose);
}

.process-step h3 {
  font-size: 1.55rem;
  margin: 16px 0 14px;
}

.process-step p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Story sections ---------- */
.services {
  background: var(--ivory-deep);
  padding-top: clamp(90px, 12vw, 150px);
  padding-bottom: clamp(90px, 12vw, 150px);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.story + .story { margin-top: clamp(90px, 11vw, 150px); }

.story-flip .story-media { order: 2; }
.story-flip .story-text { order: 1; }

.arch {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 24px 60px rgba(43, 38, 34, 0.14), 0 6px 18px rgba(43, 38, 34, 0.08);
  margin: 0 auto;
}

.story-kicker {
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--rose);
  font-size: 0.95rem;
}

.story-text h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  margin: 14px 0 18px;
}

.story-text > p { color: var(--ink-soft); max-width: 520px; }

.story-list {
  list-style: none;
  margin: 26px 0 30px;
  border-top: 1px solid var(--line);
}

.story-list li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  position: relative;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateY(-50%);
}

.text-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.text-link:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

/* ---------- Gallery ---------- */
.gallery .section-sub { margin-bottom: clamp(44px, 6vw, 70px); }

.masonry {
  columns: 3;
  column-gap: 24px;
}

.masonry figure {
  break-inside: avoid;
  margin: 0 0 24px;
}

.masonry img {
  width: 100%;
  border-radius: 4px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.masonry figure:hover img {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(43, 38, 34, 0.16);
}

.masonry figcaption {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--ink-soft);
  padding: 10px 2px 0;
  letter-spacing: 0.04em;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--ink);
  color: var(--ivory);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.testimonial .arch {
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.testimonial blockquote p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.35;
  margin: 22px 0 30px;
}

.testimonial-names {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.testimonial-venue {
  color: rgba(251, 248, 244, 0.65);
  font-style: italic;
  margin-top: 4px;
}

.testimonial-more {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(251, 248, 244, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial-more p {
  font-size: 0.98rem;
  color: rgba(251, 248, 244, 0.85);
}

.testimonial-more span {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: rgba(251, 248, 244, 0.55);
  font-size: 0.88rem;
}

/* ---------- Inquiry ---------- */
.inquire { background: var(--ivory); }

.inquire-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.inquire-intro > p { color: var(--ink-soft); max-width: 460px; }

.inquire-details {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.inquire-details p {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.inquire-details span {
  font-style: italic;
  color: var(--rose);
  min-width: 58px;
}

/* fine stationery form */
.inquiry-form {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: clamp(34px, 4.5vw, 56px);
  box-shadow: 0 24px 64px rgba(43, 38, 34, 0.08), 0 4px 14px rgba(43, 38, 34, 0.04);
}

.form-row { margin-bottom: 34px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 2px 10px;
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(43, 38, 34, 0.32); font-style: italic; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--rose);
}

.form-submit { width: 100%; margin-top: 6px; }

.form-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--ink-soft);
}

.form-thanks {
  text-align: center;
  padding: 40px 10px;
}

.form-thanks h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.form-thanks p { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 90px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 54px;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.footer-tag { color: var(--ink-soft); font-size: 0.95rem; }

.footer-nav { display: grid; gap: 10px; align-content: start; }

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a:hover { color: var(--rose-deep); }

.footer-contact p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 8px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.footer-bottom a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rose); }
.footer-bottom a:hover { color: var(--rose-deep); }

/* ---------- Demo pill ---------- */
.built-pill {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  opacity: 0.82;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.built-pill:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Reveal (JS progressive) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal.in { opacity: 1; transform: none; }

.js .reveal.d1 { transition-delay: 0.1s; }
.js .reveal.d2 { transition-delay: 0.2s; }
.js .reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll svg { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .masonry { columns: 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial .arch { max-width: 320px; margin: 0; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }

  .cred-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: 1fr; gap: 40px; }

  .story,
  .story-flip { grid-template-columns: 1fr; gap: 40px; }
  .story-flip .story-media { order: 0; }
  .story-flip .story-text { order: 1; }
  .arch { max-width: 400px; }

  .inquire-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }

  .header-cta { padding: 10px 18px; font-size: 0.8rem; }
  .brand-name { font-size: 1.15rem; }

  .hero { padding: 130px 20px 110px; }
  .hero-actions .btn { width: 100%; }

  .masonry { columns: 1; }

  .form-row.two { grid-template-columns: 1fr; gap: 34px; }

  .testimonial-more { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
