:root {
  --bg: #f7f3ea;
  --bg-soft: #efe8d8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #172017;
  --muted: #667060;
  --line: rgba(38, 47, 35, 0.12);
  --green: #214b35;
  --green-strong: #153525;
  --gold: #c08b32;
  --gold-soft: rgba(192, 139, 50, 0.14);
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(30, 40, 28, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(33, 75, 53, 0.06) 0 25%, transparent 25% 100%),
    linear-gradient(180deg, var(--bg) 0%, #fbf8f1 45%, #f4eddc 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-sm { padding: 48px 0 76px; }
.section-muted { background: rgba(255, 255, 255, 0.42); border-block: 1px solid rgba(33, 75, 53, 0.08); }
.section-head { margin-bottom: 34px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-title,
.hero-title,
.page-intro h1 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}
.section-title { max-width: 840px; margin-bottom: 16px; font-size: clamp(32px, 4vw, 52px); }
.section-text,
.page-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid rgba(33, 75, 53, 0.10);
  backdrop-filter: blur(18px);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 4px;
}
.brand-text strong { display: block; font-size: 18px; line-height: 1.1; }
.brand-text span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}
.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #4d594b;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: var(--green);
}
.nav-actions,
.hero-actions,
.panel-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(33, 75, 53, 0.20);
}
.btn-primary:hover { background: var(--green-strong); }
.btn-outline,
.btn-ghost {
  color: var(--green);
  border-color: rgba(33, 75, 53, 0.22);
  background: rgba(255, 255, 255, 0.66);
}
.btn-small { min-height: 38px; padding-inline: 14px; font-size: 13px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 86px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% 46%;
  height: 420px;
  background: linear-gradient(135deg, rgba(192, 139, 50, 0.22), rgba(33, 75, 53, 0.16));
  transform: rotate(-8deg);
  z-index: -1;
}
.hero-grid,
.about-grid,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 700px; }
.hero-title { margin-bottom: 20px; font-size: clamp(42px, 6vw, 74px); }
.hero-text { max-width: 660px; margin-bottom: 28px; color: var(--muted); font-size: 19px; }
.hero-media {
  position: relative;
  min-height: 540px;
  border-radius: 8px;
}
.hero-photo,
.about-photo,
.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo {
  min-height: 540px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(23, 32, 23, 0.14);
  backdrop-filter: blur(14px);
}
.hero-card strong,
.hero-card span { display: block; }
.hero-card strong { margin-bottom: 5px; color: var(--green); font-size: 17px; }
.hero-card span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.home-hero {
  padding-bottom: 70px;
}

.home-photo-wrap {
  position: relative;
}

.photo-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(23, 32, 23, 0.14);
  backdrop-filter: blur(14px);
}

.photo-note strong,
.photo-note span {
  display: block;
}

.photo-note strong {
  color: var(--green);
  font-size: 18px;
}

.photo-note span {
  color: var(--muted);
  font-size: 14px;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(33, 75, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #51604e;
  font-size: 13px;
  font-weight: 700;
}

.page-intro {
  padding: 66px 0 22px;
}
.page-intro .section-title { margin-bottom: 18px; }

.cards-3,
.cards-2 {
  display: grid;
  gap: 20px;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 42px rgba(30, 40, 28, 0.08);
}
.card {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 139, 50, 0.38);
  box-shadow: 0 22px 54px rgba(30, 40, 28, 0.12);
}
.card h3,
.panel h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}
.card p,
.panel p { color: var(--muted); }
.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-card {
  min-height: 230px;
}

.service-card-dark {
  color: #ffffff;
  border-color: rgba(33, 75, 53, 0.2);
  background: linear-gradient(135deg, #172017, #214b35);
}

.service-card-dark h3,
.service-card-dark p,
.service-card-dark .card-number {
  color: #ffffff;
}

.home-process {
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 42px rgba(30, 40, 28, 0.08);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 19px;
}

.process-list span {
  color: var(--muted);
}

.about-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 480px); align-items: start; }
.about-photo-wrap,
.contact-photo-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo { aspect-ratio: 4 / 5; }
.contact-photo { min-height: 430px; }

.list-check {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}
.list-check li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px var(--gold-soft);
}
.inline-actions { margin-top: 26px; }
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.carousel-outer {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 20px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: carousel-scroll 42s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
  width: 290px;
  min-height: 210px;
  flex: 0 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 16px 38px rgba(30, 40, 28, 0.08);
}
.carousel-item h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.2; }
.carousel-item p { color: var(--muted); font-size: 14px; }
.carousel-item-tag,
.blog-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(192, 139, 50, 0.28);
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8b611f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.special-services-band,
.cta-band {
  border: 1px solid rgba(33, 75, 53, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf8, #edf4ea);
  box-shadow: var(--shadow);
}
.special-services-band { padding: 42px; }
.special-grid { margin-top: 30px; }
.special-card {
  background: linear-gradient(180deg, #ffffff, #faf6ea);
  border-color: rgba(192, 139, 50, 0.24);
}
.special-card h3 { color: var(--green); }

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
}
.cta-band h2 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}
.cta-band p { max-width: 650px; color: var(--muted); }

.contact-grid { align-items: stretch; }
.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  list-style: none;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.contact-list strong { color: var(--ink); }
.map-frame {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-featured {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33, 75, 53, 0.94), rgba(33, 75, 53, 0.78)),
    var(--green);
}
.blog-featured .section-title,
.blog-featured p,
.blog-featured .blog-meta { color: #ffffff; }
.blog-featured .section-text { color: rgba(255, 255, 255, 0.78); }
.blog-featured .hero-actions,
.blog-meta { margin-top: 18px; }
.blog-grid { margin-top: 28px; align-items: stretch; }
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card p { margin-top: 4px; }
.blog-card .inline-actions,
.news-card-footer { margin-top: auto; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.news-card { gap: 18px; }
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid rgba(33, 75, 53, 0.10);
  background: #172017;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px 0;
}
.footer-inner p,
.footer-inner a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.notice-page {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  text-align: center;
}
.notice-page .panel { max-width: 640px; }
.notice-page h1 { margin-bottom: 10px; font-size: clamp(42px, 7vw, 72px); }
.notice-page p { margin-bottom: 22px; }

@media (max-width: 1100px) {
  .navbar { flex-wrap: wrap; padding: 14px 0; }
  .brand { min-width: auto; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .split-grid,
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }
  .hero-media { min-height: auto; }
  .hero-photo { min-height: 420px; }
  .about-photo { aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 58px 0; }
  .hero { padding: 44px 0 58px; }
  .hero-title { font-size: clamp(38px, 12vw, 52px); }
  .hero-text,
  .section-text,
  .page-intro p { font-size: 16px; }
  .nav-actions { width: 100%; }
  .nav-actions .btn { flex: 1 1 150px; }
  .hero-actions,
  .panel-actions { width: 100%; }
  .hero-actions .btn,
  .panel-actions .btn,
  .center-actions .btn { width: 100%; }
  .hero-photo { min-height: 330px; }
  .hero-card { position: static; width: 100%; margin-top: 12px; }
  .photo-note { position: static; margin-top: 12px; }
  .card,
  .panel,
  .special-services-band,
  .cta-band { padding: 22px; }
  .cta-band { align-items: stretch; flex-direction: column; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}
