:root {
  --blue-deep:     #5870B2;
  --blue-mid:      #7085D1;
  --blue-soft:     #8EA6DB;
  --blue-light:    #9EB2E4;
  --sky:           #BAE5F8;
  --sky-pale:      #D8F3FC;
  --peach:         #F8BD99;
  --yellow:        #F8D961;
  --pink-pale:     #FEE6F3;
  --charcoal:      #545A5E;
  --white:         #FFFFFF;
  --text:          #222222;
  --text-soft:     #333333;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-ui:   'Lato', Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(158,178,228,0.25);
  padding: 0.8rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(88,112,178,0.2)); }
.nav-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--blue-deep); line-height: 1.2; }
.nav-title span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--text-soft); text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta {
  background: var(--blue-deep);
  color: var(--white) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sky-pale) 0%, var(--white) 55%, var(--pink-pale) 100%);
}
.hero-watercolor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; }
.hero-blob-1 { width: 500px; height: 500px; background: var(--sky); top: -100px; left: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--peach); bottom: -80px; right: 5%; opacity: 0.3; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--blue-light); top: 20%; right: 20%; opacity: 0.25; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 6fr 5fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--blue-mid); }
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--blue-deep);
  margin-bottom: 1.4rem;
}
.hero-headline em { font-style: italic; color: var(--blue-mid); }
.hero-sub { font-size: 1.15rem; color: var(--text); max-width: 500px; margin-bottom: 2.2rem; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-portrait { display: flex; justify-content: center; }
.hero-portrait .arch-frame { width: min(70vw, 350px); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-deep); color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 10px rgba(88,112,178,0.25);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--blue-deep);
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem; border-radius: 2px;
  border: 1.5px solid var(--blue-deep);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--blue-deep); color: var(--white); transform: translateY(-1px); }

/* SECTION SHARED */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.section-label {
  font-family: var(--font-ui);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--blue-mid); }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--blue-deep); margin-bottom: 0.6rem; line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--text); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.75; }

/* B.L.U.E. */
.blue-section { background: linear-gradient(160deg, var(--sky-pale) 0%, var(--white) 70%); position: relative; }
.blue-inner { max-width: 900px; margin: 0 auto; padding: 4.5rem 2rem; text-align: center; }
.blue-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--blue-deep); margin-bottom: 0.5rem; }
.blue-sub { font-size: 1.02rem; color: var(--text); max-width: 560px; margin: 0 auto 3rem; line-height: 1.7; }
.blocks-row { display: flex; justify-content: center; align-items: flex-start; gap: 2.6rem; flex-wrap: wrap; }
.block-item { width: 170px; display: flex; flex-direction: column; align-items: center; }

.abc-block { position: relative; width: 110px; height: 110px; margin-bottom: 1.6rem; transition: transform 0.25s; }
.block-item:hover .abc-block { transform: translateY(-6px) rotate(0deg) !important; }
.abc-face {
  position: absolute; inset: 0;
  border-radius: 12px;
  border: 2.5px solid var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 5px 6px 0 rgba(84,90,94,0.28);
}
.abc-face::before { content: ''; position: absolute; inset: 10px; border: 2px solid rgba(84,90,94,0.55); border-radius: 7px; background: rgba(255,255,255,0.72); }
.abc-letter { position: relative; z-index: 1; font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; line-height: 1; }
.abc-block.tilt-l { transform: rotate(-5deg); }
.abc-block.tilt-r { transform: rotate(4deg); }
.abc-b .abc-face { background: var(--blue-light); }
.abc-b .abc-letter { color: var(--blue-deep); }
.abc-l .abc-face { background: var(--sky); }
.abc-l .abc-letter { color: var(--blue-deep); }
.abc-u .abc-face { background: var(--peach); }
.abc-u .abc-letter { color: #C86A3B; }
.abc-e .abc-face { background: var(--yellow); }
.abc-e .abc-letter { color: #B8860B; }

.block-word { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; line-height: 1.3; }
.block-desc { font-family: var(--font-ui); font-size: 0.83rem; font-weight: 400; color: var(--text-soft); line-height: 1.55; }
.blue-footnote { margin-top: 2.8rem; font-family: var(--font-body); font-style: italic; font-size: 1rem; color: var(--text); }

/* FIND */
.cat-section { background: var(--white); }
.cat-grid { display: flex; flex-direction: column; gap: 0.7rem; max-width: 720px; margin: 0 auto; }
.cat-card {
  background: var(--white);
  border: 1.5px solid rgba(112,133,209,0.45);
  border-radius: 50px;
  padding: 0.75rem 1.9rem 0.75rem 1rem;
  display: flex; align-items: center; gap: 1.1rem;
  text-decoration: none; color: var(--text);
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s, background 0.2s;
}
.cat-card:hover { background: var(--sky-pale); box-shadow: 0 4px 16px rgba(88,112,178,0.12); border-color: rgba(112,133,209,0.5); transform: translateY(-1px); }
.cat-card.featured { background: linear-gradient(120deg, var(--sky-pale), var(--white)); border-color: rgba(112,133,209,0.45); }
.cat-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sky-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem; }
.cat-card.featured .cat-icon { background: rgba(186,229,248,0.5); }
.cat-text { flex: 1; }
.cat-name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--blue-deep); line-height: 1.2; margin-bottom: 0.1rem; }
.cat-count { font-family: var(--font-ui); font-size: 0.72rem; color: var(--text-soft); letter-spacing: 0.04em; }
.cat-arrow { color: var(--blue-light); font-size: 1rem; flex-shrink: 0; }

/* STORY NEST */
.sub-section { background: linear-gradient(135deg, var(--sky-pale) 0%, var(--white) 50%, var(--pink-pale) 100%); position: relative; overflow: hidden; }
.sub-section-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sub-badge { display: inline-block; background: var(--yellow); color: var(--text); font-family: var(--font-ui); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 20px; margin-bottom: 1rem; }
.sub-title { font-family: var(--font-head); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--blue-deep); line-height: 1.25; margin-bottom: 1rem; }
.sub-desc { font-size: 1.05rem; color: var(--text); margin-bottom: 1.8rem; line-height: 1.75; }
.sub-perks { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.sub-perks li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.98rem; color: var(--text); line-height: 1.55; }
.sub-perks li::before { content: '✦'; color: var(--blue-mid); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.25rem; }
.sub-price { font-family: var(--font-head); font-size: 0.95rem; font-style: italic; color: var(--text); margin-bottom: 1.5rem; }
.sub-visual { display: flex; justify-content: center; }
.nest-card {
  background: var(--white);
  border: 1px solid rgba(158,178,228,0.4);
  border-radius: 200px 200px 6px 6px;
  padding: 3.5rem 3rem 3rem;
  width: 100%; max-width: 360px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(88,112,178,0.13);
  position: relative;
}
.nest-card::after { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(158,178,228,0.28); border-radius: 192px 192px 4px 4px; pointer-events: none; }
.nest-card-img { width: 150px; height: 150px; object-fit: contain; margin-bottom: 1.2rem; }
.nest-card-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 0.2rem; }
.nest-card-tag { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); }

/* ABOUT */
.about-section { background: var(--white); position: relative; overflow: hidden; }
.about-inner { max-width: 760px; margin: 0 auto; padding: 5.5rem 2rem; text-align: center; position: relative; z-index: 2; }
.about-inner .section-label { justify-content: center; }
.about-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.about-blob-1 { width: 420px; height: 420px; background: var(--sky-pale); top: -80px; left: -120px; opacity: 0.8; }
.about-blob-2 { width: 320px; height: 320px; background: var(--pink-pale); bottom: -60px; left: 18%; opacity: 0.7; }

.arch-frame { position: relative; width: min(100%, 380px); }
.arch-frame::before { content: ''; position: absolute; inset: -16px; border: 1.5px solid rgba(112,133,209,0.35); border-radius: 250px 250px 8px 8px; transform: rotate(-2deg); pointer-events: none; }
.arch-photo { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; border-radius: 240px 240px 6px 6px; border: 8px solid var(--white); box-shadow: 0 18px 50px rgba(88,112,178,0.22); }
.arch-badge { position: absolute; bottom: -28px; right: -22px; width: 110px; height: 110px; background: var(--white); border: 1px solid rgba(158,178,228,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(88,112,178,0.18); }
.arch-badge img { width: 78px; height: 78px; object-fit: contain; }
.about-name { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--blue-deep); margin-top: 0.5rem; margin-bottom: 1rem; }
.about-body { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin-bottom: 1.2rem; text-align: left; }

/* NEWSLETTER */
.email-section { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%); position: relative; overflow: hidden; }
.email-inner { max-width: 700px; margin: 0 auto; padding: 5rem 2rem; text-align: center; position: relative; z-index: 2; }
.email-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; pointer-events: none; }
.email-blob-1 { width: 400px; height: 400px; background: var(--sky); top: -100px; left: -100px; }
.email-blob-2 { width: 350px; height: 350px; background: var(--peach); bottom: -100px; right: -100px; }
.email-logo { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 1.5rem; display: block; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.email-title { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.email-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.7; }
.email-form { display: flex; gap: 0.7rem; max-width: 460px; margin: 0 auto; }
.email-form input { flex: 1; padding: 0.85rem 1.2rem; border: none; border-radius: 2px; font-family: var(--font-body); font-size: 0.98rem; color: var(--text); background: rgba(255,255,255,0.97); outline: none; }
.email-form input::placeholder { color: #888; }
.email-form button { padding: 0.85rem 1.7rem; background: var(--yellow); color: var(--text); font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.email-form button:hover { background: var(--peach); }
.email-note { font-family: var(--font-ui); font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 0.8rem; }

/* FOOTER */
.footer { background: var(--white); border-top: 1px solid rgba(158,178,228,0.3); color: var(--text); padding: 3rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; }
.footer-name { font-family: var(--font-head); font-size: 1rem; color: var(--blue-deep); }
.footer-links { list-style: none; display: flex; gap: 1.5rem; }
.footer-links a { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-deep); }
.footer-copy { font-family: var(--font-ui); font-size: 0.72rem; color: var(--text-soft); width: 100%; text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(158,178,228,0.2); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .blocks-row { gap: 1.8rem; }
  .block-item { width: 150px; }
  .sub-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sub-visual { display: none; }
  .arch-frame { width: min(100%, 320px); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .blocks-row { gap: 1.4rem; }
  .block-item { width: 42%; }
  .email-form { flex-direction: column; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .arch-badge { width: 90px; height: 90px; bottom: -20px; right: -8px; }
  .arch-badge img { width: 62px; height: 62px; }
}
