:root {
  --color-ivory: #fff9f2;
  --color-sand: #f2e7da;
  --color-deep-blue: #1f2a44;
  --color-terracotta: #b45a3c;
  --color-terracotta-light: #e9c3b3;
  --color-text: #2e2a25;
  --color-muted: #6f645b;
  --radius-large: 32px;
  --radius-medium: 20px;
  --radius-small: 12px;
  --shadow-soft: 0 25px 60px rgba(31, 42, 68, 0.12);
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-ivory);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(92vw, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: var(--color-ivory);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-deep-blue);
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}

.site-nav li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--color-terracotta);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-deep-blue);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  background: var(--color-terracotta);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(180, 90, 60, 0.25);
}

.button-outline {
  background: transparent;
  color: var(--color-terracotta);
  border: 2px solid var(--color-terracotta);
}

.button-dark {
  background: var(--color-deep-blue);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

section {
  padding: 3.5rem 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-medium);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.highlight {
  background: var(--color-sand);
}

.highlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.projects-preview {
  background: #fff;
}

.news-feed {
  background: #fff;
}

.news-feed .section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.news-feed .fb-embed {
  display: flex;
  justify-content: center;
}

.news-feed .fb-page {
  width: 100%;
  max-width: 520px;
}

.news-feed iframe {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.centered-cta {
  text-align: center;
  margin-top: 2rem;
}

.site-footer {
  background: var(--color-deep-blue);
  color: #f7f3ec;
  padding-top: 3rem;
  margin-top: 2rem;
}

.site-footer h4 {
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.site-footer a {
  color: var(--color-terracotta-light);
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.page-banner {
  padding: 3.5rem 0 2rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.list-section ul {
  padding-left: 1.25rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.5rem 0;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(31, 42, 68, 0.2);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 150px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .highlight-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    width: min(280px, 80vw);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .header-inner {
    position: relative;
  }
}
