:root {
  --bg: #f7f1e8;
  --bg-deep: #f1e7d8;
  --surface: #fffdf9;
  --surface-strong: #f3eadc;
  --text: #1b1612;
  --text-soft: #5f5448;
  --accent: #b8832f;
  --accent-deep: #7f5923;
  --line: rgba(27, 22, 18, 0.12);
  --shadow: 0 20px 60px rgba(28, 23, 19, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  background:
    radial-gradient(circle at top, rgba(184, 131, 47, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg) 42%, #fdfbf8 100%);
  color: var(--text);
}

a {
  color: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 246, 0.82);
  border-bottom: 1px solid var(--line);
}

.blog-home-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 3rem;
  background:
    radial-gradient(circle at center, rgba(184, 131, 47, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(12, 10, 9, 0.98), rgba(18, 15, 12, 0.95));
  border-bottom: 1px solid rgba(184, 131, 47, 0.14);
  backdrop-filter: blur(18px);
}

.blog-home-nav .nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f6efe4;
}

.blog-home-nav .nav-logo span {
  color: #c8a55c;
}

.blog-home-nav .nav-links {
  display: flex;
  gap: 2rem;
}

.blog-home-nav .nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.82);
  text-decoration: none;
}

.blog-home-nav .nav-links a:hover {
  color: #c8a55c;
}

.blog-home-nav .nav-contact {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e9d3a0;
  text-decoration: none;
  border: 1px solid rgba(200, 165, 92, 0.55);
  padding: 0.85rem 1.25rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.blog-home-nav .nav-contact:hover {
  color: #0f0d0b;
  background: #c8a55c;
  border-color: #c8a55c;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--text-soft);
}

.main-nav a:hover,
.text-link:hover,
.feature-card a:hover,
.blog-card a:hover,
.link-row a:hover,
.site-footer a:hover {
  color: var(--accent-deep);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.split-layout,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow,
.section-kicker,
.blog-meta {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 0.85rem;
}

p,
li {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.lede {
  font-size: 1.12rem;
  max-width: 42rem;
}

.button-row,
.mini-proof,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-row {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.mini-proof {
  margin-top: 1.5rem;
}

.mini-proof span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.media-card,
.portrait-card,
.feature-card,
.info-panel,
.blog-card,
.cta-box,
.faq-group details,
.article-shell,
.service-hero-box {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-card,
.portrait-card {
  overflow: hidden;
  border-radius: 1.5rem;
}

.media-card video,
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(241, 231, 216, 0.45), rgba(255, 255, 255, 0));
}

.center-copy {
  text-align: center;
  margin: 0 auto 2.25rem;
}

.card-grid,
.three-up,
.faq-preview,
.blog-list {
  display: grid;
  gap: 1.25rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.info-panel,
.blog-card,
.faq-preview article {
  padding: 1.5rem;
  border-radius: 1.25rem;
}

.blog-card {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 241, 232, 0.9));
}

.feature-card a,
.text-link,
.link-row a,
.blog-card a {
  text-decoration: none;
  color: var(--accent-deep);
  font-weight: 600;
}

.card-index {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-quote {
  padding-top: 2.5rem;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--text);
}

.quote-attribution {
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.section-cta {
  padding-top: 2rem;
}

.cta-box,
.article-shell,
.service-hero-box {
  border-radius: 1.5rem;
  padding: 2rem;
}

.site-footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--line);
}

.blog-index-footer {
  margin-top: 4rem;
}

.blog-index-footer .footer-title {
  margin-bottom: 0.75rem;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
}

.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer-title {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.brand-footer {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.blog-index-shell {
  padding-top: 2.5rem;
}

.blog-index-posts {
  padding-bottom: 2rem;
}

.prose {
  width: min(840px, 100%);
}

.prose p,
.prose li {
  font-size: 1.05rem;
}

.prose h2 {
  margin-top: 2.25rem;
}

.prose h3 {
  margin-top: 1.6rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose figure {
  margin: 2rem 0 0;
}

.prose figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 34rem;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .prose figure img {
    max-height: 24rem;
  }
}

.prose .article-subtitle {
  margin-top: -0.5rem;
  margin-bottom: 0.25rem;
  color: var(--accent-deep);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.stat {
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--text);
}

.faq-group {
  display: grid;
  gap: 0.85rem;
}

.faq-shell {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
}

.faq-intro {
  margin-bottom: 2rem;
}

.faq-group-premium details {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 241, 232, 0.94));
  border-radius: 1.2rem;
  padding: 1.25rem 1.35rem;
}

.faq-group-premium summary {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.faq-group-premium p {
  max-width: 48rem;
  font-size: 1rem;
}

.faq-group details {
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
}

.faq-group summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq-group p {
  margin: 0.9rem 0 0;
}

.article-shell {
  width: min(880px, 100%);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
}

.article-meta span {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-layout,
  .footer-grid,
  .card-grid,
  .three-up,
  .faq-preview,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .nav-shell {
    flex-direction: column;
    align-items: start;
  }

  .blog-home-nav,
  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-home-nav {
    flex-direction: column;
    align-items: start;
    padding: 1.2rem 1.5rem;
  }

  .blog-home-nav .nav-links {
    display: none;
  }
}
