:root {
  --primary-color: #1B4D3E;
  --secondary-color: #F3F4EF;
  --accent-color: #D4AF37;
  --text-dark: #2C3531;
  --text-light: #ffffff;
  --border-soft: #e1e4da;
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.08);
  --max-width: 1100px;
}

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

body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: #f9faf7;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', 'Times New Roman', serif;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.25;
}

p {
  margin: 0 0 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(96%, var(--max-width));
  margin: 0 auto;
}

.top-bar {
  background: #0f2f26;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar__content {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.top-bar__link {
  color: var(--text-light);
  text-decoration: underline;
}

.top-bar__divider {
  opacity: 0.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.logo--small {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.nav__list a {
  font-weight: 600;
  padding: 8px 0;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-soft);
  padding: 8px;
  border-radius: 6px;
}

.nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  margin: 4px 0;
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.18), transparent 35%), var(--primary-color);
  color: var(--text-light);
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25), transparent 45%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  z-index: 1;
}

.hero__copy h1 {
  color: var(--text-light);
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
}

.lead {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  background: rgba(243, 244, 239, 0.18);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.badge--light {
  background: rgba(255,255,255,0.08);
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero__card {
  background: #12352b;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border-radius: 16px;
  padding: 24px;
  max-width: 380px;
}

.hero__card-title {
  font-family: 'Merriweather', serif;
  color: var(--accent-color);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.hero__card ul {
  padding-left: 18px;
  margin: 0 0 12px;
  color: #e7f0ea;
}

.hero__note {
  color: #d8e6dc;
  font-size: 0.9rem;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #6a7f74;
  margin-bottom: 6px;
  font-weight: 700;
}

.eyebrow--light {
  color: #e4ecdf;
}

.section {
  padding: 72px 0;
  background: #ffffff;
}

.section--stone {
  background: var(--secondary-color);
}

.section--accent {
  background: var(--accent-color);
  color: var(--text-dark);
}

.section--primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__lead {
  max-width: 560px;
  margin: 0 auto;
  color: #4f5b54;
}

.section__header--light h2,
.section__header--light p {
  color: var(--text-light);
}

.section__lead--light {
  color: #d8e6dc;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.card__body h3 {
  margin-top: 6px;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
}

.about__list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.about__list li::before {
  content: '•';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.about__image {
  display: flex;
  justify-content: flex-end;
}

.about__frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e9efe6, #cdd6cb);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about__overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(27, 77, 62, 0.9);
  color: var(--text-light);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
}

.contact__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 22px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ced5cc;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

textarea {
  resize: vertical;
}

.form-error {
  color: #ffdf8c;
  font-size: 0.9rem;
  min-height: 18px;
  margin-top: 4px;
}

.form__note {
  color: #dbe7df;
  font-size: 0.95rem;
  margin-top: 6px;
}

.contact__details {
  display: grid;
  gap: 12px;
}

.contact__card {
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-light);
  padding: 16px;
  border-radius: 12px;
}

.contact__hours {
  color: #d1dfd5;
}

.footer {
  background: #0f2f26;
  color: var(--text-light);
  padding: 28px 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 14px;
}

.footer__links a {
  color: var(--text-light);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--text-dark);
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.38);
}

.btn:active {
  transform: translateY(0);
}

.btn--outline {
  border: 1.5px solid var(--primary-color);
  padding: 10px 16px;
  background: transparent;
  color: var(--text-dark);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--secondary-color);
}

.btn--dark {
  background: var(--text-dark);
  color: var(--text-light);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.btn--wide {
  width: 100%;
}

.link {
  color: var(--text-light);
  font-weight: 700;
  position: relative;
}

.link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

.section--accent .btn--dark {
  background: #1b3a31;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    position: absolute;
    top: 62px;
    right: 2%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    display: none;
  }

  .nav__list.is-open {
    display: flex;
  }

  .hero {
    padding: 68px 0;
  }

  .hero__card {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
