
:root {
  --sage: #5a6b52;
  --blush: #f7ebe7;
  --espresso: #2a221c;
  --surface: #ffffff;
  --muted: #6b5f58;
  --line: #e8ddd8;
  --serif: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--blush);
  color: var(--espresso);
  line-height: 1.7;
  font-size: 17px;
}
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(960px, 90%); margin: 0 auto; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 5%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .04em;
  font-size: 1.35rem;
  color: var(--espresso);
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--sage); }
nav { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; align-items: center; }
nav a { color: var(--espresso); opacity: .75; font-size: .88rem; text-decoration: none; font-family: 'Segoe UI', system-ui, sans-serif; letter-spacing: .02em; }
nav a:hover { opacity: 1; color: var(--sage); text-decoration: none; }

.hero-centered {
  text-align: center;
  padding: 5rem 5% 4.5rem;
  background: var(--espresso);
  color: var(--blush);
}
.hero-centered .tag {
  display: inline-block;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.hero-centered h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.hero-centered .lead {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 42ch;
  margin: 0 auto 2rem;
  font-style: italic;
}
.hero-centered .hero-detail {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .88rem;
  opacity: .7;
  margin-top: 2rem;
  letter-spacing: .03em;
}

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: var(--sage);
  color: var(--blush);
  border: 1px solid var(--sage);
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--blush); color: var(--espresso); text-decoration: none; }
.btn-ghost {
  background: transparent;
  border-color: var(--blush);
  color: var(--blush);
}
.btn-ghost:hover { background: var(--blush); color: var(--espresso); border-color: var(--blush); }
.btn-dark {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--blush);
}
.btn-dark:hover { background: var(--sage); border-color: var(--sage); color: var(--blush); }

.floral-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}
.floral-section .floral-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.floral-section .floral-bg span {
  font-family: var(--serif);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 400;
  color: var(--sage);
  opacity: .08;
  white-space: nowrap;
  letter-spacing: .08em;
  font-style: italic;
}
.floral-section .wrap { position: relative; z-index: 1; }
.floral-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.floral-section .intro {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
}

.section { padding: 4.5rem 0; }
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.section .intro { color: var(--muted); max-width: 58ch; margin-bottom: 2rem; }

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-asymmetric {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
}
.grid-asymmetric.reverse { grid-template-columns: .8fr 1.2fr; }

.card {
  background: var(--surface);
  padding: 1.75rem;
  border: 1px solid var(--line);
  text-align: left;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .6rem;
  color: var(--espresso);
}
.card p { color: var(--muted); font-size: .96rem; }

.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-sage { background: var(--sage); color: var(--blush); }
.band-sage a { color: inherit; }
.band-sage .intro { color: inherit; opacity: .88; }
.band-sage .card {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: inherit;
}
.band-sage .card p { color: inherit; opacity: .85; }

.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.4;
  color: var(--sage);
  font-style: italic;
  text-align: center;
  max-width: 32ch;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: 1rem .75rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
}
.price-table th { font-weight: 400; color: var(--sage); }

.muted { color: var(--muted); }
.text-center { text-align: center; }

.contact-block {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
form label { display: block; margin: .75rem 0 .35rem; font-size: .88rem; font-family: 'Segoe UI', system-ui, sans-serif; }
form input, form textarea, form select {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--espresso);
  font: inherit;
}
form button { margin-top: 1rem; }

.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--espresso);
  color: var(--blush);
  font-size: .9rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  width: min(960px, 90%);
  margin: 0 auto;
}
.site-footer a { color: inherit; opacity: .8; }
.site-footer a:hover { opacity: 1; }
.footer-tagline {
  margin-top: 1.5rem;
  width: min(960px, 90%);
  margin-left: auto;
  margin-right: auto;
  opacity: .6;
  font-style: italic;
  font-family: var(--serif);
  text-align: center;
}

.legal { font-size: .94rem; color: var(--muted); max-width: 72ch; font-family: 'Segoe UI', system-ui, sans-serif; line-height: 1.65; }
.legal h2 { color: var(--espresso); margin: 2rem 0 .75rem; font-size: 1.3rem; font-family: var(--serif); font-weight: 400; }
.legal h3 { color: var(--espresso); margin: 1.5rem 0 .5rem; font-size: 1.05rem; font-family: var(--serif); }
.legal p, .legal li { margin-bottom: .75rem; }
.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.steps { display: grid; gap: 0; max-width: 640px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.step .num {
  font-family: var(--serif);
  color: var(--sage);
  font-size: 1.4rem;
  min-width: 2rem;
}

.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; text-align: left; }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: 1.05rem; }
.faq details p { margin-top: .65rem; color: var(--muted); font-family: 'Segoe UI', system-ui, sans-serif; font-size: .95rem; }

.list-plain { list-style: none; text-align: left; }
.list-plain li { padding: .5rem 0; border-bottom: 1px solid var(--line); }

.page-hero {
  text-align: center;
  padding: 3.5rem 0 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: .5rem;
}
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; font-family: 'Segoe UI', system-ui, sans-serif; }

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-grid .card:nth-child(2) { margin-top: 1.5rem; }
.portfolio-grid .card:nth-child(3) { margin-top: 3rem; }

.sitemap-list { columns: 2; gap: 2rem; text-align: left; font-family: 'Segoe UI', system-ui, sans-serif; font-size: .92rem; }
.sitemap-list li { break-inside: avoid; margin-bottom: .5rem; }

.service-hero-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--sage);
}

@media (max-width: 768px) {
  .split, .grid-asymmetric, .grid-asymmetric.reverse { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: center; text-align: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .card:nth-child(2),
  .portfolio-grid .card:nth-child(3) { margin-top: 0; }
  .contact-block { grid-template-columns: 1fr; }
  .sitemap-list { columns: 1; }
}
