

:root {
  --page-bg: #f5f3f0;
  --card-bg: #ffffff;
  --accent: #111827;
  --accent-soft: #9ca3af;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --radius-xl: 1.4rem;
  --shadow-soft: 0 20px 46px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #f8f4ee, #f5f3f0 45%, #ebe5dd 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", sans-serif;
  color: var(--text-main);
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  animation: headerFade 0.5s ease forwards;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--accent);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.brand-text {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-active {
  color: var(--accent);
}

.nav-active::after {
  width: 100%;
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}



.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.6rem 1.7rem 4.2rem;
}



.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 0.5rem;
}

.hero-text {
  max-width: 32rem;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: clamp(2.15rem, 3.2vw + 1.2rem, 3.2rem);
  line-height: 1.07;
  letter-spacing: 0.01em;
  margin-bottom: 1.05rem;
}

.hero-title br {
  display: none;
}

@media (min-width: 720px) {
  .hero-title br {
    display: inline;
  }
}

.hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.7rem;
}

.hero-subtitle em {
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

/* Buttons */

.btn-primary,
.btn-ghost {
  padding: 0.7rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #f9fafb;
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28);
}

.btn-primary:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  background: rgba(249, 250, 251, 0.9);
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.btn-primary.small {
  padding-inline: 1.2rem;
  padding-block: 0.55rem;
  font-size: 0.85rem;
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
a:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 24rem;
}

.hero-note .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.4rem;
}



.hero-collage {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 1.45rem 1.35rem 1.7rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.collage-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 0.9rem;
}

.collage-main-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(209, 213, 219, 1);
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
  margin-bottom: 1.1rem;
}

.collage-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.8rem;
}

.collage-main-image {
  border-radius: 0.9rem;
  border: 1px dashed rgba(209, 213, 219, 0.9);
  background: linear-gradient(120deg, #e5e7eb, #f9fafb, #e5e7eb);
  background-size: 200% 200%;
  animation: shimmer 10s linear infinite;

  /* make it an image frame */
  padding: 0;
  height: 260px;              /* tweak this height if you want it taller/shorter */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage-main-image img {
  max-width: 100%;
  max-height: 210%;
  object-fit: contain;   /* show the full image without cropping */
  display: block;
}


.collage-caption {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}

.collage-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.polaroid {
  border-radius: 0.85rem;
  background: #f9fafb;
  border: 1px solid rgba(209, 213, 219, 0.95);
  padding: 0.8rem 0.8rem 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.polaroid-1 {
  transform: rotate(-2.5deg);
}

.polaroid-2 {
  transform: rotate(1.8deg);
}

.polaroid-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
}

.polaroid-body {
  color: var(--text-main);
}

.collage-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 1);
  font-size: 0.72rem;
  color: var(--text-muted);
  background: #f9fafb;
}

.pill-moon {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.1rem;
    min-height: auto;
  }

  .hero-collage {
    max-width: 400px;
    justify-self: center;
  }
}


.section-header {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: left;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
}


.story {
  margin-top: 3.2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: var(--card-bg);
  border-radius: 1.05rem;
  border: 1px solid rgba(229, 231, 235, 1);
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: #d1d5db;
  background: #fdfdfd;
}

.story-emoji {
  font-size: 1.2rem;
}

.story-title {
  font-size: 1rem;
  font-weight: 600;
}

.story-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.story-tagline {
  font-size: 0.82rem;
  color: #4b5563;
  margin-top: 0.2rem;
}



.mood-strip {
  margin-top: 3.2rem;
  padding: 1.1rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.95);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.mood-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f9fafb;
}

.mood-icon {
  font-size: 1.1rem;
}

.mood-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.mood-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}



.lookbook {
  margin-top: 3.2rem;
}

.lookbook-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 760px) {
  .lookbook-grid {
    grid-template-columns: 1fr;
  }
}

.look-card {
  background: var(--card-bg);
  border-radius: 1.1rem;
  border: 1px solid rgba(229, 231, 235, 1);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.look-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
  border-color: #d1d5db;
}

.look-image {
  position: relative;
  height: 180px;
  background-size: 200% 200%;
  background-position: center;
}

.look-image-1 {
  background-image: linear-gradient(135deg, #d4d4dd, #f3f4f6, #d4d4dd);
}

.look-image-2 {
  background-image: linear-gradient(135deg, #e0d9cf, #f3f4f6, #e0d9cf);
}

.look-image-3 {
  background-image: linear-gradient(135deg, #cbd5e1, #f3f4f6, #cbd5e1);
}

.look-image-4 {
  background-image: linear-gradient(135deg, #e7e5e4, #f3f4f6, #e7e5e4);
}

.look-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 55%);
}

.look-label {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.look-meta {
  padding: 0.85rem 0.95rem 1rem;
}

.look-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.look-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================
   VALUES
   ============================ */

.values {
  margin-top: 3.4rem;
}

.values-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #111827;
  color: #f9fafb;
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(248, 250, 252, 0.15), transparent 55%);
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-title {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.value-text {
  font-size: 0.9rem;
  color: rgba(249, 250, 251, 0.88);
  line-height: 1.7;
}

/* ============================
   LETTER / DIARY
   ============================ */

.letter {
  margin-top: 3.6rem;
}

.letter-card {
  border-radius: 1.4rem;
  background: var(--card-bg);
  border: 1px solid rgba(229, 231, 235, 1);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
  padding: 1.6rem 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.letter-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.8), transparent 50%),
    radial-gradient(circle at bottom right, rgba(209, 213, 219, 0.35), transparent 55%);
  opacity: 0.7;
}

.letter-card > * {
  position: relative;
  z-index: 1;
}

.letter-tag {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.7rem;
}

.letter-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.letter-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
  max-width: 40rem;
}

.letter-signoff {
  font-size: 0.9rem;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.letter-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.letter-footnote {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================
   FOOTER
   ============================ */

.footer {
  margin-top: 3.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  padding-top: 1.4rem;
}

.footer-main {
  margin-bottom: 0.4rem;
}

.footer-sub {
  font-size: 0.82rem;
}

/* ============================
   ANIMATIONS
   ============================ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease-out forwards;
}

.fade-in-delayed {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease-out 0.12s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
