/* ==========================================================================
   The Little Big Things — Design Tokens
   ========================================================================== */
:root {
  /* Color */
  --ivory:       #F6EFE3;
  --ivory-deep:  #ECDFC9;
  --paper:       #FCFAF4;
  --ink:         #241F1A;
  --ink-soft:    #6E6459;
  --rose:        #BD7A88;
  --rose-deep:   #9C5A6B;
  --gold:        #C0913F;
  --line:        rgba(36, 31, 26, 0.16);
  --line-strong: rgba(36, 31, 26, 0.3);

  /* Type */
  --font-script:  'Alex Brush', cursive;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Karla', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --maxw: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.9em;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--ink);
}

/* Visually hidden (a11y) */
.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Doodle icons
   ========================================================================== */
.doodle {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.doodle-scatter {
  position: absolute;
  color: var(--ink);
  opacity: 0.55;
  pointer-events: none;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.logo {
  font-family: var(--font-script);
  font-size: 1.9rem;
  line-height: 1;
  white-space: nowrap;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; }

.main-nav ul {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--rose-deep);
  transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--rose-deep); }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: 0.9rem 0; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.hero .lede {
  max-width: 46ch;
  margin: 0 auto 2em;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-doodles .doodle { width: 34px; height: 34px; }

/* ==========================================================================
   Section divider — "keepsake trail"
   ========================================================================== */
.trail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0 0 0;
  color: var(--rose-deep);
}
.trail::before, .trail::after {
  content: "";
  flex: 1;
  max-width: 220px;
  height: 0;
  border-top: 1.5px dashed var(--line-strong);
}
.trail .doodle { width: 22px; height: 22px; }

section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 3rem; }

/* ==========================================================================
   Cards
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  position: relative;
}
.card .doodle { width: 30px; height: 30px; color: var(--rose-deep); margin-bottom: 0.9rem; }
.card h3 { font-size: 1.25rem; }
.card ul { margin: 0.75em 0 0; padding-left: 1.1em; color: var(--ink-soft); }
.card li { margin-bottom: 0.35em; }

.pill-row { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.pill {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.4em 1.1em;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Alt section background */
.bg-deep { background: var(--ivory-deep); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h2, .bg-ink .eyebrow { color: var(--paper); }
.bg-ink p { color: rgba(252, 250, 244, 0.75); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--rose-deep);
}
.testimonial-card .quote { font-style: italic; color: var(--ink); margin: 0; }
.testimonial-card .attribution {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.testimonial-note {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.carousel:hover .carousel-track,
.carousel:focus-within .carousel-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}
.carousel .testimonial-card {
  width: 320px;
  flex-shrink: 0;
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin: 0.2rem 0 1rem;
}
.card .includes-label {
  margin-top: 1.4rem;
}
.best-for {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.best-for strong { color: var(--ink); }

.addon-list { display: grid; gap: 0; }
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.addon-item:last-child { border-bottom: none; }
.addon-name { font-weight: 700; }
.addon-price {
  color: var(--rose-deep);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.92rem;
}

.included-list, .excluded-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.included-list li, .excluded-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--ink-soft);
}
.included-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
}
.excluded-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 1.5px;
  background: var(--ink-soft);
}

/* ==========================================================================
   Gallery placeholders
   ========================================================================== */
.gallery-tile {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
}
.gallery-tile .doodle { width: 46px; height: 46px; color: var(--rose-deep); }
.gallery-tile span { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.gallery-note {
  text-align: center;
  max-width: 54ch;
  margin: 2.5rem auto 0;
  font-style: italic;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 820px) { .about-hero { grid-template-columns: 1fr; } }
.portrait-frame {
  aspect-ratio: 4/5;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; text-align:center; padding: 2rem;
}
.portrait-frame .doodle { width: 50px; height: 50px; color: var(--rose-deep); }
.portrait-frame span { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }

.values-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.values-list li { display: flex; gap: 1rem; align-items: flex-start; }
.values-list .doodle { flex-shrink: 0; width: 26px; height: 26px; margin-top: 3px; color: var(--rose-deep); }
.values-list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }

/* ==========================================================================
   Contact / Inquiry form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info .doodle { width: 22px; height: 22px; color: var(--rose-deep); }
.info-row { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.4rem; }
.info-row strong { display: block; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.social-row { display: flex; gap: 0.9rem; margin-top: 1.6rem; }
.social-row a {
  width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--ink); color: var(--paper); }
.social-row svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

form.inquiry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  display: grid;
  gap: 1.3rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5em;
}
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85em 1em;
}
textarea { resize: vertical; min-height: 120px; }
.required-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: -0.4rem; }
.form-status { font-size: 0.9rem; padding-top: 0.4rem; min-height: 1.4em; }
.form-status.success { color: #4c6b4f; }
.form-status.error { color: var(--rose-deep); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.site-footer .logo { justify-content: center; display: inline-flex; flex-direction: column; margin-bottom: 1.4rem; }
.footer-nav { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer-nav a { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--ink); }
.footer-fine { font-size: 0.78rem; color: var(--ink-soft); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { text-align: center; padding: 3.6rem 0 2.5rem; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3rem); }
.page-hero p { max-width: 52ch; margin: 0 auto; }
