:root {
  --ink: #171512;
  --ink-soft: #4c463f;
  --paper: #faf9f6;
  --paper-deep: #f0e7dc;
  --rose: #c8a28f;
  --rose-dark: #7b5744;
  --gold: #b39462;
  --line: rgba(91, 68, 53, 0.16);
  --night: #201d1a;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.025em;
}
.muted { color: var(--ink-soft); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(91, 68, 53, .10);
  background: rgba(250, 249, 246, .9);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: .12em;
  line-height: 1;
}
.brand small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .3em;
}
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--rose-dark);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid var(--rose-dark);
  border-radius: 10px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.header-cta:hover, .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(87, 57, 41, .17);
}
.button-outline { background: transparent; color: var(--rose-dark); }
.button-outline:hover { background: var(--rose-dark); color: white; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.mobile-menu { display: none; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 0;
  color: #766c64;
  font-size: 12px;
}
.breadcrumb span { opacity: .55; }
.breadcrumb a:hover { color: var(--rose-dark); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 96px;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -130px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,143,.25), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 72px;
}
.hero-copy h1 { max-width: 760px; font-size: clamp(43px, 6vw, 76px); }
.hero-copy .lead {
  max-width: 670px;
  margin: 25px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image {
  position: relative;
  min-height: 550px;
  border-radius: 190px 190px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(53, 37, 29, .15);
}
.hero-image img { width: 100%; height: 100%; min-height: 550px; object-fit: cover; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,29,26,.2), transparent 45%);
}
.local-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(123, 87, 68, .18);
  border-radius: 99px;
  background: rgba(255,255,255,.55);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
}

.section { padding: 96px 0; }
.section-soft { background: var(--paper-deep); }
.section-dark { background: var(--night); color: #f8f3ed; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(37px, 5vw, 57px); }
.section-head p { margin: 18px 0 0; color: var(--ink-soft); font-size: 17px; }
.section-dark .section-head p { color: rgba(255,255,255,.7); }
.feature-grid, .service-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card, .service-card, .post-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  overflow: hidden;
}
.feature-card { padding: 30px; }
.feature-card .num {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--rose-dark);
  color: white;
  font-family: var(--serif);
  font-size: 19px;
}
.feature-card h3, .service-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}
.feature-card p, .service-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.service-card { padding: 30px; transition: .3s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--rose); background: white; }
.service-card .icon { color: var(--rose-dark); font-size: 30px; margin-bottom: 24px; }
.service-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 21px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 74px;
}
.split-media { min-height: 500px; border-radius: 24px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.split-copy h2 { font-size: clamp(38px, 5vw, 58px); }
.split-copy p { color: var(--ink-soft); }
.check-list { display: grid; gap: 14px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: "✓";
  display: grid;
  flex: 0 0 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(123,87,68,.10);
  color: var(--rose-dark);
  font-weight: 800;
}

.faq-list { max-width: 850px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 21px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  color: var(--rose-dark);
  font-family: var(--sans);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -5px 0 24px; color: var(--ink-soft); }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 58px;
  background: linear-gradient(125deg, #5d4032, #8a6652);
  color: white;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -150px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.cta-band h2 { max-width: 710px; font-size: clamp(35px, 5vw, 54px); }
.cta-band p { max-width: 670px; color: rgba(255,255,255,.78); }
.cta-band .button { margin-top: 20px; border-color: white; background: white; color: var(--rose-dark); }

.blog-hero { padding-bottom: 62px; text-align: center; }
.blog-hero h1 { max-width: 870px; margin-inline: auto; font-size: clamp(47px, 7vw, 82px); }
.blog-hero .lead { max-width: 700px; margin-inline: auto; }
.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.post-card:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: 0 22px 55px rgba(57,39,30,.12);
}
.post-card__image { height: 235px; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__image img { transform: scale(1.045); }
.post-card__body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--rose-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card h2, .post-card h3 { margin: 14px 0 10px; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.15; }
.post-card p { margin: 0 0 22px; color: var(--ink-soft); font-size: 14px; }
.post-card .text-link { margin-top: auto; color: var(--rose-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-grid .post-card:first-child { grid-column: span 2; }
.post-grid .post-card:first-child .post-card__image { height: 350px; }

.article-hero { padding: 62px 0 70px; text-align: center; }
.article-hero h1 { max-width: 940px; margin-inline: auto; font-size: clamp(43px, 6.2vw, 72px); }
.article-hero .article-deck { max-width: 760px; margin: 22px auto 0; color: var(--ink-soft); font-size: 18px; }
.article-meta { justify-content: center; margin-bottom: 23px; }
.article-cover {
  width: min(1100px, calc(100% - 40px));
  height: min(58vw, 620px);
  min-height: 330px;
  margin: 0 auto;
  border-radius: 28px;
  object-fit: cover;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  justify-content: center;
  gap: 64px;
  padding: 80px 0 100px;
}
.article-body { color: #35302b; font-size: 17px; }
.article-body > p:first-child { font-size: 20px; color: var(--ink); }
.article-body h2 {
  margin: 52px 0 16px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}
.article-body h3 { margin: 32px 0 10px; font-size: 19px; }
.article-body p { margin: 0 0 21px; }
.article-body ul { display: grid; gap: 10px; padding-left: 22px; }
.article-body a { color: var(--rose-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-note {
  margin: 40px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--rose);
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 14px;
}
.article-sidebar { align-self: start; position: sticky; top: 118px; }
.sidebar-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.sidebar-card h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.15; }
.sidebar-card p { color: var(--ink-soft); font-size: 13px; }
.sidebar-card .button { width: 100%; margin-top: 8px; padding-inline: 12px; }
.source-list { margin-top: 24px; color: var(--ink-soft); font-size: 12px; }
.source-list a { text-decoration: underline; }
.related { padding: 82px 0; background: var(--paper-deep); }

.site-footer { padding: 70px 0 30px; background: #eadbc6; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .9fr 1fr 1.2fr; gap: 42px; }
.site-footer h3 { margin: 0 0 18px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: var(--ink-soft); font-size: 13px; }
.footer-links a:hover { color: var(--rose-dark); }
.footer-copy { margin-top: 20px; color: var(--ink-soft); font-size: 12px; }
.footer-cta { padding: 23px; border: 1px solid rgba(91,68,53,.12); border-radius: 16px; background: rgba(255,255,255,.42); }
.footer-cta p { color: var(--ink-soft); font-size: 13px; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(91,68,53,.14); color: var(--ink-soft); font-size: 11px; }

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .mobile-menu {
    position: fixed;
    z-index: 49;
    inset: 86px 0 0;
    padding: 35px 20px;
    background: var(--paper);
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; }
  .mobile-menu .button { margin-top: 24px; border-bottom: 0; font-family: var(--sans); font-size: 11px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 45px; }
  .hero-image { min-height: 480px; }
  .feature-grid, .service-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid .post-card:first-child { grid-column: span 2; }
  .article-layout { grid-template-columns: minmax(0, 760px); }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 76px; }
  .brand { font-size: 20px; }
  .mobile-menu { inset-block-start: 76px; }
  .breadcrumb { padding-top: 18px; }
  .page-hero { padding: 50px 0 70px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-actions .button { width: 100%; }
  .hero-image, .hero-image img { min-height: 430px; }
  .hero-image { border-radius: 120px 120px 20px 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 34px; }
  .feature-grid, .service-grid, .post-grid { grid-template-columns: 1fr; }
  .post-grid .post-card:first-child { grid-column: auto; }
  .post-grid .post-card:first-child .post-card__image,
  .post-card__image { height: 235px; }
  .split-media, .split-media img { min-height: 390px; }
  .cta-band { padding: 38px 25px; }
  .blog-hero { text-align: left; }
  .article-hero { text-align: left; }
  .article-meta { justify-content: flex-start; }
  .article-cover { width: calc(100% - 30px); height: 390px; }
  .article-layout { padding: 58px 0 76px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 31px; }
  .footer-grid { grid-template-columns: 1fr; }
}
