:root {
  --primary: #9A3B21;
  --accent: #F2B84B;
  --ink: #14231f;
  --paper: #f7f6f0;
  --line: rgba(20,35,31,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.topbar, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.topbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { font-weight: 850; letter-spacing: -.03em; text-decoration: none; font-size: 1.25rem; }
.contact-link { color: var(--primary); font-weight: 750; }
.hero { padding: clamp(70px, 11vw, 150px) 0 64px; display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 60px; align-items: end; }
.hero-copy { max-width: 820px; }
.eyebrow { color: var(--primary); font-size: .78rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.slogan { margin: 22px 0 0; color: var(--primary); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-style: italic; }
h1 { margin: 16px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem, 8vw, 7rem); letter-spacing: -.065em; line-height: .92; }
.lede { max-width: 680px; font-size: clamp(1.08rem, 2vw, 1.38rem); line-height: 1.65; color: #475a54; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; text-decoration: none; }
.primary { background: var(--primary); color: white; }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.hero-note { padding: 24px; display: grid; gap: 10px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.5); }
.hero-note span, .section-heading p { color: var(--primary); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero-note strong { font-size: 1.05rem; line-height: 1.35; }
.hero-note small { color: #66756f; line-height: 1.45; }
.offerings { padding: 56px 0; display: grid; grid-template-columns: 260px 1fr; gap: 50px; border-top: 1px solid var(--line); }
.section-heading p { margin: 0 0 10px; }
.section-heading h2 { margin: 0; font: 500 2.2rem/1 Georgia, "Times New Roman", serif; }
.offering-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.offering-list article { min-height: 82px; padding: 18px; display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.38); }
.offering-list span { color: var(--primary); font-size: .7rem; font-weight: 900; }
.offering-list strong { font-size: .95rem; line-height: 1.35; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.photo { margin: 0; grid-column: span 4; min-height: 320px; overflow: hidden; border-radius: 24px; background: #dfe5df; }
.photo:first-child { grid-column: span 8; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.empty-gallery { grid-column: 1 / -1; min-height: 260px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 24px; color: #66756f; }
.details { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); margin-top: 72px; }
.details article { padding: 28px 22px; display: grid; gap: 8px; border-right: 1px solid var(--line); }
.details article:last-child { border: 0; }
.details span { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: #66756f; }
footer { min-height: 110px; display: flex; align-items: center; justify-content: space-between; color: #66756f; font-size: .88rem; }
.theme-local .hero { position: relative; }
.theme-local .hero::before { content: ""; position: absolute; width: 180px; height: 180px; right: 100px; top: 55px; border-radius: 50%; background: var(--accent); opacity: .22; filter: blur(2px); z-index: -1; }
.theme-local .offering-list article:nth-child(3n + 1) { background: color-mix(in srgb, var(--accent) 18%, white); }

.theme-warm { --paper: #fff6e8; }
.theme-warm .topbar { border: 0; }
.theme-warm .brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.theme-warm .hero { margin-top: 24px; padding: 72px 60px; grid-template-columns: 1fr 300px; border-radius: 44px 12px 44px 12px; background: #f5dcc0; }
.theme-warm h1 { max-width: 760px; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.theme-warm .hero-note { border-radius: 8px 36px 8px 36px; background: #fff9ef; }
.theme-warm .photo { border-radius: 10px 42px 10px 42px; }
.theme-warm .photo:nth-child(even) { transform: translateY(22px); }
.theme-warm .offerings { border: 0; }
.theme-warm .offering-list article { border: 0; border-radius: 30px 8px 30px 8px; background: #f8e6cf; }

.theme-direct { --ink: #f7f9ff; --paper: #101523; --line: rgba(255,255,255,.16); }
.theme-direct .topbar { width: 100%; padding-inline: max(24px, calc((100% - 1120px) / 2)); border-bottom: 1px solid var(--line); text-transform: uppercase; }
.theme-direct .contact-link, .theme-direct .eyebrow, .theme-direct .slogan, .theme-direct .section-heading p { color: var(--accent); }
.theme-direct h1 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 950; text-transform: uppercase; }
.theme-direct .lede, .theme-direct .hero-note small, .theme-direct footer { color: #aab3c7; }
.theme-direct .primary { background: var(--accent); color: #0d1421; }
.theme-direct .secondary, .theme-direct .hero-note, .theme-direct .offering-list article { border-color: var(--line); border-radius: 2px; background: rgba(255,255,255,.035); }
.theme-direct .button, .theme-direct .photo { border-radius: 2px; }
.theme-direct .offering-list { grid-template-columns: 1fr; }
.theme-direct .offering-list article { min-height: 92px; grid-template-columns: 70px 1fr; }
.theme-direct .offering-list span { color: var(--accent); font: 800 1.3rem ui-monospace, monospace; }
.theme-direct .details span { color: #8d97ad; }

.theme-organic { --paper: #f5f1e7; }
.theme-organic .topbar { border: 0; }
.theme-organic .brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.theme-organic .hero { position: relative; margin-top: 22px; padding: 90px 64px; overflow: hidden; border-radius: 90px 24px 90px 24px; background: #e4e8d8; }
.theme-organic .hero::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; bottom: -100px; border-radius: 42% 58% 70% 30% / 45% 40% 60% 55%; background: var(--accent); opacity: .7; }
.theme-organic .hero-note { position: relative; z-index: 1; border: 0; border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; background: #fbf7ee; min-height: 240px; align-content: center; text-align: center; }
.theme-organic .offering-list article { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.theme-organic .photo { border-radius: 45% 12px 45% 12px; }
.theme-organic .photo:nth-child(3n) { border-radius: 12px 45% 12px 45%; }
@media (max-width: 720px) {
  .topbar, main, footer { width: min(100% - 28px, 1120px); }
  .hero, .theme-warm .hero, .theme-organic .hero { padding: 64px 0; grid-template-columns: 1fr; }
  .theme-warm .hero, .theme-organic .hero { padding-inline: 24px; border-radius: 28px 8px 28px 8px; }
  .offerings { grid-template-columns: 1fr; gap: 24px; }
  .offering-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .photo, .photo:first-child { grid-column: auto; min-height: 250px; }
  .details { grid-template-columns: 1fr; }
  .details article { border-right: 0; border-bottom: 1px solid var(--line); }
  footer { padding: 28px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
}