:root {
  --ink: #202124;
  --muted: #5f6468;
  --line: #d9ded9;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --brand: #c8202f;
  --brand-dark: #8f1821;
  --green: #556b5f;
  --gold: #d8a928;
  --shadow: 0 18px 45px rgba(28, 31, 29, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 22px rgba(31, 31, 31, 0.06);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 198px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: #f7e7e9;
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--brand);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #ffffff;
  background: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 488px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(18, 21, 20, 0.84), rgba(18, 21, 20, 0.52), rgba(18, 21, 20, 0.18)),
    url("images/IMG-20140722-WA0034.jpg") center / cover no-repeat;
}

.hero .section-inner {
  padding: 50px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f0c846;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  max-width: 740px;
  font-size: 3.2rem;
}

.hero h1 {
  max-width: 920px;
  font-size: 3rem;
}

h2 {
  font-size: 2.05rem;
}

h3 {
  font-size: 1.18rem;
}

.hero-text {
  max-width: 720px;
  margin: 22px 0 0;
  color: #f5f5f2;
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
}

.button.primary:hover {
  color: #ffffff;
  background: var(--brand-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.button.light {
  color: var(--brand-dark);
  background: #ffffff;
  border-color: var(--line);
}

main section {
  padding: 72px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: start;
}

.lede {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.faq-list article,
.contact-panel,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(28, 31, 29, 0.06);
}

.service-list li {
  padding: 12px 14px;
  font-weight: 700;
}

.aside-note {
  padding: 28px;
  border-left: 5px solid var(--brand);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.aside-note p {
  margin: 14px 0 0;
}

.band {
  background: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
}

.gallery img {
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.cta-band {
  color: #ffffff;
  background: var(--green);
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  max-width: 640px;
  margin: 12px 0 0;
  color: #eef3ee;
}

.page-hero {
  padding: 76px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(18, 21, 20, 0.82), rgba(18, 21, 20, 0.46)),
    url("images/IMG-20140722-WA0034.jpg") center / cover no-repeat;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #f1f1ee;
  font-size: 1.06rem;
}

.content-flow {
  max-width: 860px;
}

.content-flow p {
  margin: 0 0 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list article {
  padding: 22px;
}

.faq-list h3 {
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.faq-list p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-panel address {
  margin-top: 18px;
  font-style: normal;
}

.contact-panel .contact-line {
  margin: 12px 0 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 32px;
  align-items: start;
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.article-card {
  padding: 24px;
}

.article-card h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.article-card p,
.article-card ol,
.article-card ul {
  margin: 0 0 12px;
}

.article-card :last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  color: #ffffff;
  background: #202124;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #ffffff;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 82px;
  }

  .logo img {
    width: 160px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero {
    min-height: 430px;
  }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band .section-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  main section {
    padding: 54px 0;
  }

  .hero .section-inner {
    padding: 62px 0 58px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .service-list,
  .gallery {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
