:root {
  --color-bg: #2f3337;
  --color-bg-alt: #f4f5f6;
  --color-card: #ffffff;
  --color-accent: #b7bd8a;   /* pulled from your card stripe */
  --color-text: #22252a;
  --color-text-light: #f8f9fa;

  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #f0f1f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: #111318;
}

p {
  margin-top: 0;
}

/* Layout helpers */

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
}

.section-header .tagline {
  font-style: italic;
  color: #555a60;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Header & nav */

.site-header {
  background-color: var(--color-bg);
  color: var(--color-text-light);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 52px;
  height: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.1;
}

.logo-text span {
  font-weight: 500;
  font-size: 0.8rem;
}

.main-nav {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-list a {
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-list a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  background-color: var(--color-accent);
  color: #222;
  font-weight: 700;
}

.nav-cta:hover {
  background-color: #ccd39b;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 70%;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 999px;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, #42474d 45%, #C2CC67 45%, #C2CC67 100%);
  color: var(--color-text-light);
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  margin-bottom: 0.5rem;
}

.hero-sub {
  max-width: 32rem;
  color: #dde0e5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5f7f9;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-logo-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-logo-card img {
  width: min(260px, 100%);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.1s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
  background-color: var(--color-accent);
  color: #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  background-color: #ccd39b;
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-text-light);
}

.btn.ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.btn.full-width {
  width: 100%;
}

/* Cards / common elements */

.card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* About section */

.about-highlight {
  background-color: var(--color-card);
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.section-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #d9dde0;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.gallery-item.placeholder {
  color: #5c6167;
  font-style: italic;
}

/* FAQ */

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background-color: var(--color-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.2rem;
  border: none;
  background: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  border-top: 1px solid #e2e4e7;
  transition: max-height 0.22s ease, padding-bottom 0.22s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 0.9rem;
}

/* Forms */

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  border-radius: 10px;
  border: 1px solid #c2c6cb;
  padding: 0.55rem 0.65rem;
  font: inherit;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8rem;
  color: #666b72;
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0.5rem;
}

.hours li {
  margin-bottom: 0.25rem;
}

.small {
  font-size: 0.8rem;
  color: #666b72;
}

/* Footer */

.site-footer {
  background-color: var(--color-bg);
  color: var(--color-text-light);
  padding: 1.5rem 0 1.75rem;
  margin-top: 2rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive tweaks */

@media (max-width: 960px) {
  .hero {
    background: linear-gradient(150deg, var(--color-bg) 0%, #42474d 60%, #ffffff 60%, #ffffff 100%);
  }
}

@media (max-width: 800px) {
  .hero {
    background: var(--color-bg);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .header-inner {
    padding-block: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem 0.9rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transform-origin: top right;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav.open .nav-list {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }
}
