
:root {
  --paper: #FFF8F2;
  --blush: #FBEAF0;
  --ink: #4A2E3A;
  --hotpink: #FF1D8E;
  --hotpink-deep: #FF8AC4;
  --gold: #AD8C54;
  --gold-deep: #8C6F3A;
  --kelly: #7C9473;
  --citrus: #E0956E;
  --sunny: #F0D9A8;
  --sky: #FFE1EC;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--sky);
  background-image: repeating-linear-gradient(90deg, var(--paper) 0px, var(--paper) 1px, transparent 1px, transparent 15px);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  line-height: 1.55;
}
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 600; }
.bubble {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.script { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; }
.mono { font-family: 'Space Mono', monospace; }
a { color: inherit; text-decoration: none; }
.sparkle { color: var(--sunny); }

header.site { background: transparent; padding: 40px 32px 26px; }
.header-scallop {
  height: 44px;
  background-image: radial-gradient(circle at 22px 48px, transparent 26px, var(--hotpink-deep) 26px);
  background-size: 44px 44px;
  background-repeat: repeat-x;
}
header.site .inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; max-width: 1100px; margin: 0 auto; }
header.site .title-plate {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--sky);
  border-radius: 10px;
  padding: 20px 40px 18px;
  box-shadow: 0 4px 16px rgba(31,58,82,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
header.site .bow-accent { width: 24px; height: auto; }
header.site .wordmark { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 40px; letter-spacing: 0.04em; color: var(--ink); line-height: 1; }
header.site .wordmark .wordmark-emphasis { font-style: italic; font-weight: 500; color: var(--hotpink); font-size: 0.85em; }
header.site .tagline-row { display: flex; align-items: center; gap: 12px; margin-top: 2px; }
header.site .tagline-row .rule { width: 40px; height: 1px; background: var(--hotpink); opacity: 0.6; }
header.site .tagline { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hotpink); }

.container {
  max-width: 1100px;
  margin: 24px auto 40px;
  padding: 40px 32px 60px;
  background: var(--paper);
  border: 1px solid rgba(216,140,163,0.3);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(31,58,82,0.06);
}
.hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(28px, 5.2vw, 48px); margin: 0 0 10px; color: var(--ink); line-height: 1.25; }
.hero h1 .inline-bow { width: 30px; height: auto; vertical-align: middle; margin-right: 4px; margin-bottom: 6px; }
.hero-flex { display: flex; gap: 44px; align-items: flex-start; flex-wrap: wrap; }
.hero-text { flex: 1 1 420px; min-width: 0; }
.hero-photo { flex: 0 1 300px; }
.hero-photo img { width: 100%; height: auto; display: block; border-radius: 14px; border: 6px solid white; box-shadow: 0 10px 28px rgba(74,46,58,0.18); }
.about-copy { font-size: 16px; line-height: 1.7; opacity: 0.9; margin-bottom: 14px; }
.about-signoff { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: 20px; color: var(--hotpink); }
.hero p.sub { max-width: 560px; font-size: 16px; opacity: 0.85; margin-bottom: 26px; font-family: 'Poppins'; -webkit-text-stroke: 0; }


.search-box { width: 100%; max-width: 440px; padding: 13px 18px; border: 3px solid var(--hotpink); border-radius: 999px; font-family: 'Poppins', sans-serif; font-size: 15px; margin-bottom: 20px; background: white; color: var(--ink); }
.search-box:focus { outline: none; border-color: var(--kelly); }
.theme-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.theme-pill {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; border: 1.5px solid var(--sky);
  background: white; color: var(--ink); cursor: pointer; transition: all 0.15s ease;
}
.theme-pill:hover { border-color: var(--hotpink); }
.theme-pill.active { background: var(--hotpink); border-color: var(--hotpink); color: white; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; padding-top: 6px; }

.postcard {
  position: relative;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(58,44,46,0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.postcard:hover { transform: translateY(-5px); box-shadow: 0 14px 26px rgba(58,44,46,0.2); z-index: 5; }

.photo { position: relative; border: 10px solid white; border-bottom: 4px solid white; border-radius: 8px 8px 0 0; padding: 18px 14px; min-height: 190px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.photo h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 25px; color: white; text-shadow: 0 2px 6px rgba(0,0,0,0.4); text-align: center; margin: 0; line-height: 1.25; padding: 0 4px; letter-spacing: 0.01em; }
.stub { padding: 16px 16px 26px; border: 10px solid white; border-top: none; border-radius: 0 0 8px 8px; min-height: 56px; }
.stub .colorway { font-family: 'Space Mono', monospace; font-size: 11px; opacity: 0.6; margin-bottom: 8px; }


.badge { display: inline-block; font-family: 'Space Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 999px; margin-right: 4px; margin-bottom: 4px; color: white; }
.badge.true-hg { background: var(--hotpink); }
.badge.personal-hg { background: var(--citrus); }
.badge.not-hg { background: #B9B0A0; text-decoration: line-through; }

.big-postcard { display: flex; gap: 0; flex-wrap: wrap; background: white; border-radius: 12px; box-shadow: 0 16px 40px rgba(58,44,46,0.18); overflow: hidden; margin-bottom: 20px; max-width: 780px; }
.big-photo { flex: 1 1 320px; min-height: 340px; padding: 30px; display: flex; align-items: center; justify-content: center; position: relative; }
.big-photo h1 { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: white; text-shadow: 0 3px 10px rgba(0,0,0,0.4); font-size: clamp(30px,4.4vw,44px); text-align: center; margin: 0; line-height: 1.3; padding: 0 8px; }
.back { flex: 1 1 280px; padding: 34px 28px; background: repeating-linear-gradient(white, white 34px, #f2ede6 35px); }
.back .postcard-label { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: 20px; color: var(--hotpink); margin-bottom: 14px; }
.shop-link { display: inline-block; margin-top: 16px; background: var(--kelly); color: white; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; padding: 10px 18px; border-radius: 999px; }
.shop-link:hover { background: #278256; }
.shop-link-empty { margin-top: 16px; font-family: 'Space Mono', monospace; font-size: 11px; opacity: 0.5; }
.variant { margin-bottom: 16px; }
.variant .cw { font-size: 18px; font-weight: 600; color: var(--ink); font-family: 'Poppins', sans-serif; }
.variant .meta { font-family: 'Space Mono', monospace; font-size: 11px; opacity: 0.55; margin-top: 3px; }
.note { font-size: 14px; margin-top: 6px; opacity: 0.85; }
.backlink { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--kelly); display: inline-block; margin-bottom: 22px; }
.backlink:hover { text-decoration: underline; }

footer.site { background: var(--ink); color: white; padding: 24px 32px; font-family: 'Space Mono', monospace; font-size: 11px; opacity: 0.75; text-align: center; border-top: 3px solid var(--sky); }
