:root {
  --bg: #f6f5f0;
  --paper: #ffffff;
  --ink: #0e1410;
  --ink-2: #2a3530;
  --ink-soft: #5a6760;
  --line: #e6e3d8;
  --line-2: #ecebe2;

  --green: #234d2c;
  --green-2: #1f4a2a;
  --green-deep: #11281a;
  --green-soft: #e6efe4;
  --moss: #6a8a52;

  --accent: #d8c89a;
  --bbb: #0a5ea0;

  --max: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(20, 35, 25, .04), 0 2px 8px rgba(20, 35, 25, .04);
  --shadow: 0 12px 30px rgba(20, 35, 25, .08);
  --shadow-lg: 0 30px 80px rgba(20, 35, 25, .12);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-2); }

h1, h2, h3 {
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -.01em; font-family: "Inter", system-ui, sans-serif; }
p  { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-2);
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--green-2) 22%, transparent);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
  margin-bottom: 18px;
}

/* ============ Top bar ============ */
.topbar {
  background: var(--green-deep);
  color: #d6e0d6;
  font-size: .88rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar .tb-hours { opacity: .82; }

/* ============ Header / Nav ============ */
.site-header {
  background: rgba(246, 245, 240, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-2);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { height: 68px; width: auto; }

nav.primary { display: flex; align-items: center; gap: 32px; }
nav.primary > a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .98rem;
  position: relative;
  padding: 6px 0;
}
nav.primary > a:hover { color: var(--green-deep); }
nav.primary > a.active { color: var(--green-deep); }
nav.primary > a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-2);
  transform: translateX(-50%);
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s var(--ease), transform .15s var(--ease);
  font-size: .95rem;
  line-height: 1.4;
  white-space: nowrap;
}
.cta-call:hover { background: var(--green-deep); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--ink);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: 36px;
  padding-bottom: 36px;
  background: var(--bg);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 64px;
}
.hero-copy h1 {
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--green-2);
  font-weight: 500;
}
.hero-copy p.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  color: var(--ink-soft);
  font-size: .92rem;
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta strong { color: var(--ink); font-weight: 600; }

.hero-art {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a2120;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,30,18,.45) 100%);
}
.hero-art .badge {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.hero-art .badge img { position: static; height: 56px; width: auto; }
.hero-art .badge .b-text { font-size: .82rem; line-height: 1.25; }
.hero-art .badge .b-text strong { display:block; font-size:.92rem; color: var(--ink); }
.hero-art .badge .b-text span { color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  font-size: 1rem;
  letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--green-deep); color: #fff; box-shadow: 0 8px 20px rgba(22,51,34,.22); }
.btn-primary:hover { background: #0e2618; box-shadow: 0 10px 26px rgba(22,51,34,.3); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; }

/* Page hero (interior pages, image background) */
.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #1a2120;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
  border-radius: 0 0 32px 32px;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,12,.15) 0%, rgba(8,18,12,.55) 60%, rgba(8,18,12,.85) 100%);
  z-index: 1;
}
.page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 880px; }
.page-hero p.lede { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 640px; }
.page-hero .eyebrow { color: #d8efd5; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); }
.page-hero .hero-cta { margin-top: 22px; }

/* ============ Sections ============ */
section { padding: 96px 0; }
section.tight { padding: 56px 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 28px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 22px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .98rem;
}
.trust-item img { height: 64px; width: auto; }
.trust-item .big { display: block; font-size: 1.02rem; color: var(--ink); font-weight: 600; }

/* ============ Services grid ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card .img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #ddd;
  position: relative;
}
.service-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .img img { transform: scale(1.04); }
.service-card .img .num {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: "DM Serif Display", serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -.01em;
}
.service-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); flex: 1; margin-bottom: 18px; }
.service-card .link {
  color: var(--green-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s var(--ease);
}
.service-card:hover .link { gap: 12px; }

/* ============ Why-choose ============ */
.why {
  background: linear-gradient(180deg, var(--green-deep) 0%, #0d2618 100%);
  color: #e8efe7;
}
.why .section-head h2 { color: #fff; }
.why .section-head p { color: rgba(232,239,231,.78); }
.why .eyebrow { color: #cbe8c2; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.why-item {
  text-align: left;
  padding: 32px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.why-item:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.why-item .ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,232,194,.18);
  color: #d4ebcc;
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.why-item h3 { color: #fff; }
.why-item p { color: rgba(232,239,231,.74); margin: 0; }

/* ============ Split feature (image + text) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.split h2 { margin-bottom: 18px; }
.split p { color: var(--ink-soft); font-size: 1.05rem; }
.split ul { padding-left: 0; list-style: none; }
.split ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ink-2);
}
.split ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 16px; height: 2px;
  background: var(--green-2);
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--paper);
}
.testimonials .eyebrow { color: var(--green-2); }
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.tcard {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.tcard::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 22px;
  font-family: "DM Serif Display", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--green-2);
  opacity: .18;
}
.tcard .stars { color: #d8a93a; letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }
.tcard blockquote {
  margin: 0 0 16px;
  font-style: normal;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.tcard .who { font-weight: 600; color: var(--ink-2); font-size: .92rem; }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #ddd;
  grid-column: span 4;
}
.gallery-grid a:nth-child(7n+1),
.gallery-grid a:nth-child(7n+5) { grid-column: span 6; }
.gallery-grid a img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .25s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.05); filter: brightness(.94); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a,
  .gallery-grid a:nth-child(7n+1),
  .gallery-grid a:nth-child(7n+5) { grid-column: auto; }
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info ul.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
.contact-info li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info .ico {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info .label {
  font-size: .78rem;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info .value { font-weight: 500; color: var(--ink); }
.contact-info .value a { color: var(--ink); }
.contact-info .value a:hover { color: var(--green-2); }
.contact-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--ink-2);
  letter-spacing: -.01em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fafaf6;
  margin-bottom: 18px;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-2);
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form button { width: 100%; }

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: #aab5ad;
  padding: 80px 0 28px;
  border-radius: 32px 32px 0 0;
  margin-top: 40px;
}
.site-footer a { color: #dfe5dc; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
}
.site-footer h4 {
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: .96rem; }
.payments {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.payments img {
  height: 28px;
  background: #fff;
  border-radius: 6px;
  padding: 3px 5px;
}
.footer-bbb {
  margin-top: 18px;
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  transition: transform .2s var(--ease);
}
.footer-bbb:hover { transform: translateY(-2px); }
.footer-bbb img { height: 96px; width: auto; }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  margin-top: 10px;
  transition: transform .2s var(--ease);
}
.footer-social:hover { transform: translateY(-2px); }
.footer-social img { width: 22px; height: 22px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand img {
  height: 80px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .88rem;
  color: #818d84;
}

/* ============ Big CTA section ============ */
.big-cta {
  background: var(--paper);
  border-top: 1px solid var(--line-2);
}
.big-cta .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
}
.big-cta h2 { margin-bottom: 18px; }
.big-cta p { color: var(--ink-soft); font-size: 1.1rem; max-width: 520px; }
.big-cta .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { min-height: 420px; }
  .hero-copy { padding: 16px 0 8px; }
}
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .big-cta .container { grid-template-columns: 1fr; }
  .big-cta .actions { justify-content: flex-start; }
  nav.primary {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  nav.primary.open { display: flex; }
  nav.primary > a { padding: 14px 28px; border-bottom: 1px solid var(--line-2); }
  nav.primary > a.active::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header .container { position: relative; }
  .cta-call { padding: 9px 16px; font-size: .9rem; }
  .trust-strip .container { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .hero-art { min-height: 360px; }
  .hero-art .badge { left: 16px; bottom: 16px; padding: 10px 14px; }
  .hero-art .badge img { height: 46px; }
}
