*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #faf8f5;
  --warm: #f2ede6;
  --red: #8b1a1a;
  --red-light: #a82828;
  --gold: #c4973a;
  --gold-light: #d4af6a;
  --dark: #0f0c0a;
  --text: #1e1a17;
  --muted: #6b5c52;
  --border: #e2d9ce;
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.85;
  font-size: 17px;
}

/* NAV */
nav {
  background: var(--dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 1.1rem 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 1.15rem 1rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

/* LAYOUT */
.container { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }
section.alt { background: var(--warm); }

.section-label {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: normal;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a.link { color: var(--red); text-decoration: none; }
a.link:hover { text-decoration: underline; }

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: var(--red-light); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: -apple-system, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--red); color: #fff; }

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #554540;
  text-align: center;
  padding: 2.8rem 1.5rem;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 2;
}

footer a { color: var(--gold); text-decoration: none; }

.footer-brand {
  color: var(--gold-light);
  font-size: 1rem;
  font-family: Georgia, serif;
  margin-bottom: 0.4rem;
}

/* CALL BAR — mobile */
.call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.95rem;
  font-family: -apple-system, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 200;
  text-decoration: none;
  letter-spacing: 0.03em;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem 0.4rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #bbb;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .call-bar { display: block; }
  body { padding-bottom: 54px; }
  section { padding: 2.5rem 0; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    border-top: 1px solid #1a1410;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.9rem 2rem;
    font-size: 0.82rem;
    border-bottom: 1px solid #1a1410;
  }
}

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 0.8rem; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: Georgia, serif;
  font-size: 0.93rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); }

.contact-form textarea { resize: vertical; min-height: 120px; }
