:root {
  --red: #be1e2d;
  --charcoal: #231f20;
  --cream: #faf6f0;
  --cream-dark: #f0e9df;
  --text: #33302e;
  --max-width: 780px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brandbar {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 60%, var(--charcoal) 60%, var(--charcoal) 100%);
}

header.hero {
  position: relative;
  padding: 4rem 0 3rem;
  text-align: center;
  overflow: hidden;
}

header.hero .hero-motif {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  max-width: none;
  color: var(--red);
  opacity: 0.06;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

header.hero .logo {
  position: relative;
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

header.hero p.tagline {
  position: relative;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: 0;
}

nav.sitenav {
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.75rem 0;
}

nav.sitenav .wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav.sitenav a {
  color: var(--charcoal);
  text-decoration: none;
}

nav.sitenav a:hover {
  color: var(--red);
}

main section {
  padding: 3rem 0;
}

main section + section {
  border-top: 1px solid var(--cream-dark);
}

main section.tinted {
  background: var(--cream-dark);
}

main section.dark {
  background: var(--charcoal);
  border-top: none;
}

main section.dark h2 {
  color: #fff;
}

main section.dark p {
  color: #e8e4de;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--red);
  letter-spacing: 0.01em;
}

h2 {
  font-size: 1.6rem;
  margin-top: 0;
}

ul.services {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.services li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2d9cb;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.95rem;
}

ul.services li:last-child {
  border-bottom: none;
}

ul.services .icon {
  flex: none;
  width: 28px;
  height: 28px;
  fill: var(--red);
}

.contact-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.15rem;
  color: #ff6b6f;
  text-decoration: none;
  font-weight: bold;
}

.contact-email:hover {
  text-decoration: underline;
}

footer {
  padding: 2rem 0 3rem;
  text-align: center;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.8rem;
  color: #756f6a;
}
