/* bloomsofhopefloral.com */

:root {
  --canvas: #EAE4F2;
  --surface: #FFFFFF;
  --ink: #1C1830;
  --ink-light: #5C5470;
  --accent: #7B5EA7;
  --accent-hover: #5E3F8A;
  --bloom: #C9A0DC;
  --petal: #F3EBF8;
  --reading: 680px;
  --page: 1080px;
  --gutter: 24px;
}

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

html { font-size: 17px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }

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

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

/* --- Header --- */

.site-header {
  padding-top: 28px;
  padding-bottom: 28px;
}

.site-header .shell {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark:hover { color: var(--accent); }

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--accent); }

/* --- Hero --- */

.hero {
  position: relative;
  padding-top: 20px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  margin-bottom: 150px;
}

.hero-type {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(10rem, 24vw, 21rem);
  line-height: 0.8;
  color: #d0cad9;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
  letter-spacing: -0.03em;
}

.hero-flower {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 105px;
}

.hero-flower img {
  width: 100%;
}

.hero + .shell {
  padding-top: 48px;
}

/* --- Article (inline on homepage + standalone pages) --- */

.article-block {
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 0;
  border-top: 1px solid var(--bloom);
}

.article-block .article-meta {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.article-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.article-block h2 a { color: var(--ink); }
.article-block h2 a:hover { color: var(--accent); }

.article-block .article-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}

.article-block .article-image img { width: 100%; }

.article-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-block p {
  margin-bottom: 16px;
}

.article-block p:last-child { margin-bottom: 0; }

.article-block .read-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 500;
}

/* --- Standalone article page --- */

.article-page {
  max-width: var(--reading);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 80px;
}

.article-page .article-header {
  padding-top: 40px;
  padding-bottom: 32px;
  text-align: center;
}

.article-page .article-meta {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.article-page h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.article-page .article-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
}

.article-page .article-image img { width: 100%; }

.article-page h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.65rem;
  line-height: 1.25;
  margin-top: 40px;
  margin-bottom: 14px;
}

.article-page p {
  margin-bottom: 16px;
}

.article-page .related-reading {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--bloom);
}

.article-page .related-reading h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.article-page .related-reading ul {
  list-style: none;
  padding: 0;
}

.article-page .related-reading li {
  margin-bottom: 8px;
}

/* --- Blog index --- */

.blog-index {
  padding-bottom: 80px;
}

.blog-index h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 2.8rem;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 36px;
}

.blog-card {
  display: block;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--bloom);
  padding-bottom: 36px;
}

.blog-card:hover { color: var(--ink); }

.blog-card img {
  width: 100%;
  border-radius: 8px;
}

.blog-card-body {
  padding-top: 20px;
}

.blog-card-body .article-meta {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 6px;
}

.blog-card-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}

.blog-card-body p {
  color: var(--ink-light);
  line-height: 1.55;
}

/* --- About page --- */

.about-page {
  max-width: var(--reading);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 80px;
}

.about-page h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 2.8rem;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 32px;
}

.about-page h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.55rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.about-page p {
  margin-bottom: 16px;
}

/* --- 404 --- */

.four-oh-four {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.four-oh-four h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 4rem;
  margin-bottom: 16px;
}

.four-oh-four p {
  color: var(--ink-light);
  margin-bottom: 24px;
}

.four-oh-four a {
  font-weight: 500;
}

/* --- Footer --- */

.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid var(--bloom);
}

.site-footer .shell {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  font-size: 1rem;
  color: var(--ink);
}

.footer-left .wordmark {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 4px;
}

.footer-right {
  display: flex;
  gap: 24px;
  font-size: 1rem;
}

.footer-right a { color: var(--ink); }
.footer-right a:hover { color: var(--accent); }

/* --- Responsive --- */

@media (max-width: 700px) {
  :root { --gutter: 18px; }

  .hero { min-height: 380px; }
  .hero-type { font-size: clamp(6rem, 24vw, 21rem); }
  .hero-flower { max-width: 480px; }

  .article-block h2 { font-size: 1.65rem; }

  .article-page h1 { font-size: 2rem; }

  .site-header .shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer .shell {
    flex-direction: column;
    gap: 16px;
  }

  .blog-card-body { padding: 20px; }
}
