:root { --bg-cream: #FDFBF7; --text-gray: #1A1918; --green-dark: #1A3B2A; --terracotta: #C65D47; --font-sys: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; --radius-squircle: 24px; --shadow-soft: 0 12px 36px rgba(0,0,0,0.06); }
body { margin: 0; font-family: var(--font-sys); background-color: var(--bg-cream); color: var(--text-gray); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); line-height: 1.6; }
*, *::before, *::after { box-sizing: border-box; }
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.5rem 5%; max-width: 1440px; margin: 0 auto; }
.header-logo { justify-self: start; }
.header-cta { justify-self: center; }
.header-nav { justify-self: end; }
.logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--green-dark); font-weight: 700; font-size: 1.25rem; }
.logo-link svg { width: 32px; height: 32px; }
.btn-primary { background: var(--terracotta); color: #fff; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: var(--radius-squircle); font-weight: 600; box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(198, 93, 71, 0.3); color: #fff; }
.nav-list { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.nav-link { color: var(--text-gray); text-decoration: none; font-weight: 500; position: relative; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--terracotta); transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-gray); justify-self: end; padding: 0.5rem; }
.menu-toggle svg { width: 28px; height: 28px; }
.mobile-nav { display: none; background: var(--bg-cream); padding: 1.5rem 5%; border-top: 1px solid rgba(0,0,0,0.05); }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin: 0; padding: 0; }
@media (max-width: 991px) {
  .header-container { grid-template-columns: 1fr auto; }
  .header-cta, .header-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav:not([hidden]) { display: block; }
}
main { max-width: 1440px; margin: 0 auto; padding: 4rem 5%; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
.hero-text h1 { color: var(--green-dark); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-img { width: 100%; height: auto; border-radius: var(--radius-squircle); box-shadow: var(--shadow-soft); object-fit: cover; aspect-ratio: 4/3; }
.zigzag-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin: 6rem 0; }
.zigzag-section:nth-child(even) { direction: rtl; }
.zigzag-section:nth-child(even) > * { direction: ltr; }
.equal-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin: 4rem 0; }
.card { background: #fff; border-radius: var(--radius-squircle); padding: 2.5rem; box-shadow: var(--shadow-soft); transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.03); }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; border-radius: calc(var(--radius-squircle) - 0.5rem); margin-bottom: 1.5rem; }
form { display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; }
input, textarea { width: 100%; padding: 1rem; border: 1px solid #ddd; border-radius: 12px; font-family: inherit; background: #fff; transition: border-color 0.2s; }
input:focus, textarea:focus { outline: none; border-color: var(--terracotta); }
.site-footer { background: var(--green-dark); color: var(--bg-cream); padding: 6rem 5% 2rem; margin-top: 6rem; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 4rem; max-width: 1440px; margin: 0 auto; border-bottom: 1px solid rgba(253,251,247,0.1); padding-bottom: 4rem; margin-bottom: 2rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 1.5rem; color: #fff; }
.tagline { opacity: 0.8; font-size: 1.1rem; }
.footer-heading { color: var(--terracotta); font-size: 1.25rem; margin-bottom: 1.5rem; margin-top: 0; }
address { font-style: normal; display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 0.75rem; color: var(--bg-cream); text-decoration: none; opacity: 0.9; transition: opacity 0.2s; word-break: break-word; }
.contact-link:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--terracotta); }
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.legal-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.legal-links a { color: var(--bg-cream); text-decoration: none; opacity: 0.8; }
.legal-links a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--terracotta); }
.footer-bottom { text-align: center; opacity: 0.6; font-size: 0.9rem; }
@media (max-width: 768px) {
  .hero-split, .zigzag-section { grid-template-columns: 1fr; }
  .zigzag-section:nth-child(even) { direction: ltr; }
}
/* footer extras */
.footer__extras{margin-top:16px;}
.footer__extrasInner{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-start;justify-content:space-between;}
.footer__social{display:flex;gap:10px;align-items:center;}
.footer-social{display:inline-flex;gap:8px;align-items:center;text-decoration:none;}
.footer-social__icon{display:block;}
.footer__poemWrap{max-width:520px;}
.footer-poem{opacity:0.9;font-size:0.95em;line-height:1.35;}
/* --- injected by logo step --- */
.brand{display:inline-flex;align-items:center;gap:10px}
.brand-logo{width:28px;height:28px;display:inline-block;flex:0 0 auto}
.brand-logo *{vector-effect:non-scaling-stroke}
/* --- /injected by logo step --- */


/* project patch: utility aliases, contrast and forms */
:root {
  --bg-cream-dark: #f4efe6;
  --charcoal: #1f2933;
  --soft-border: rgba(28, 33, 29, 0.08);
}
.bg-primary, .bg-dark-green { background-color: var(--green-dark) !important; }
.text-primary, .text-dark-green, .text-charcoal { color: var(--green-dark) !important; }
.bg-accent { background-color: var(--terracotta) !important; }
.text-accent { color: var(--terracotta) !important; }
.bg-cream { background-color: var(--bg-cream) !important; }
.bg-cream-dark, .bg-peach-50 { background-color: var(--bg-cream-dark) !important; }
.squircle, .rounded-squircle { border-radius: var(--radius-squircle) !important; }
.soft-shadow, .shadow-soft { box-shadow: var(--shadow-soft) !important; }
.soft-shadow-hover:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.12) !important; }
.underline-accent, .accent-underline {
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 0.18em;
  text-underline-offset: 0.18em;
}
.theme-premium, .font-system-ui { font-family: var(--font-sys); }
.bg-noise, .noise-bg {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.border-zebra-neutral { border: 1px solid var(--soft-border); }
.mobile-nav-cta { display: inline-flex; margin-top: .5rem; width: fit-content; }
.nav-link[aria-current="page"] { color: var(--green-dark); font-weight: 700; }
.nav-link[aria-current="page"]::after { width: 100%; }
main a { color: inherit; }
img { background-color: #efe8dc; }
input, textarea {
  color: var(--charcoal);
  background: #fff;
  border: 1px solid rgba(31, 41, 51, 0.14);
  min-height: 54px;
}
textarea { min-height: 140px; }
input::placeholder, textarea::placeholder { color: #7a7a7a; }
input:focus, textarea:focus {
  outline: 2px solid rgba(198, 93, 71, 0.22);
  outline-offset: 1px;
  border-color: var(--terracotta);
}
.form-privacy {
  margin-bottom: 1.5rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(31, 41, 51, 0.12);
  border-radius: 18px;
  background: #fbfaf7;
}
.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.5;
}
.privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: .15rem;
  accent-color: var(--terracotta);
  flex: 0 0 auto;
}
.privacy-label a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
}
.contact-form-card h2, .contact-form-card h3 { color: var(--green-dark) !important; }
.legal-shell, .thanks-shell {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 5% 1rem;
}
.legal-card, .thanks-card {
  background: #fff;
  border: 1px solid var(--soft-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 3rem);
}
.legal-kicker, .thanks-kicker {
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .75rem;
}
.legal-card h1, .thanks-card h1 {
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.legal-updated { color: #5c5c5c; margin-bottom: 2rem; }
.legal-card section + section { margin-top: 1.5rem; }
.legal-card h2 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin: 0 0 .6rem;
}
.legal-card p, .legal-card li, .thanks-card p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-card a, .thanks-link {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .header-container { padding: 1rem 5%; }
  .site-footer { padding-top: 4rem; }
  main { padding: 2rem 5%; }
  .legal-shell, .thanks-shell { padding-top: 2rem; }
}
