:root {
  --maroon: #8a3324;
  --maroon-dark: #6c271b;
  --green: #2f6f4e;
  --green-dark: #23573d;
  --cream: #faf7f2;
  --cream-dark: #f0e9df;
  --text: #2b2b28;
  --text-light: #5c5952;
  --border: #e2dbcf;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Verdana, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--maroon); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: inherit; color: var(--maroon-dark); line-height: 1.25; }
h1 { font-size: 2.3rem; margin: 0 0 16px; }
h2 { font-size: 1.7rem; margin: 40px 0 16px; }
h3 { font-size: 1.2rem; margin: 24px 0 10px; }

p { margin: 0 0 16px; }

.notice-bar {
  background: var(--maroon-dark);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 16px;
}
.notice-bar a { color: #ffe1d6; text-decoration: underline; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--maroon-dark);
  font-size: 1.05rem;
}
.logo:hover { text-decoration: none; }
.site-nav {
  display: flex;
  gap: 26px;
}
.site-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 70px 0;
}
.hero h1 { color: #fff; }
.hero p.lead { font-size: 1.15rem; max-width: 640px; color: #f6e8e2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.btn-solid-outline { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-solid-outline:hover { background: var(--maroon); color: #fff; text-decoration: none; }

/* Sections */
section { padding: 48px 0; }
section.alt { background: var(--cream-dark); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; color: var(--green-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}
.two-col img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

figure { margin: 0; }
figcaption { font-size: 0.85rem; color: var(--text-light); margin-top: 8px; text-align: center; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.photo-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

blockquote {
  border-left: 4px solid var(--green);
  margin: 20px 0;
  padding: 6px 20px;
  font-style: italic;
  color: var(--text-light);
}
blockquote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

ul.plain { list-style: none; padding: 0; margin: 0; }
ul.plain li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
ul.plain li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

table.budget {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
table.budget th, table.budget td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.budget th { background: var(--maroon); color: #fff; }
table.budget tr:last-child td { font-weight: 700; }

.bank-box {
  background: #fff;
  border: 2px dashed var(--maroon);
  border-radius: var(--radius);
  padding: 22px;
  margin: 20px 0;
}
.bank-box dl { display: grid; grid-template-columns: 160px 1fr; row-gap: 8px; margin: 0; }
.bank-box dt { font-weight: 700; color: var(--text-light); }
.bank-box dd { margin: 0; }
.bank-warning {
  background: #fff3cd;
  border: 1px solid #e2c96a;
  color: #6b5a00;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

form.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  max-width: 600px;
}
form.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 16px;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}
form.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-submit { margin-top: 20px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.alert-success { background: #e4f4ea; border: 1px solid var(--green); color: var(--green-dark); }
.alert-error { background: #fbe6e2; border: 1px solid var(--maroon); color: var(--maroon-dark); }

/* Footer */
.site-footer {
  background: #21201d;
  color: #d8d3c8;
  padding: 50px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 30px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a { color: #d8d3c8; display: block; margin-bottom: 6px; }
.site-footer a:hover { color: #fff; }
.site-footer p { color: #b3ada0; font-size: 0.92rem; }
.copyright {
  border-top: 1px solid #3a3833;
  margin-top: 30px;
  padding-top: 16px;
  font-size: 0.8rem;
  text-align: center;
  color: #8a8577;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.open { display: flex; }
}

/* Deters casual copy/paste and text selection, site-wide, on request. Not
   real protection: view-source, browser reader mode, and screenshots all
   still work, and disabling this in devtools takes seconds. It only stops
   the average visitor from drag-selecting and pasting elsewhere. Form
   fields are explicitly excluded below, so the contact form stays usable. */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
