:root {
  --ink: #161715;
  --muted: #676b63;
  --paper: #fbfaf7;
  --white: #ffffff;
  --forest: #183f35;
  --forest-2: #24564a;
  --brass: #b8894d;
  --terracotta: #a86049;
  --mist: #e8eeeb;
  --stone: #ece7df;
  --line: rgba(22, 23, 21, 0.12);
  --shadow: 0 20px 60px rgba(22, 23, 21, 0.12);
  --radius: 8px;
  --max: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a,
button,
.btn,
.filter-btn,
summary,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--forest);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  border: 1px solid rgba(184, 137, 77, 0.55);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.04);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #343832;
  font-size: 14px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--mist);
  color: var(--forest);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  border-color: var(--brass);
  box-shadow: 0 10px 24px rgba(22, 23, 21, 0.1);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: absolute;
  transition: 0.2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn:focus-visible,
.filter-btn:focus-visible,
.main-nav a:focus-visible,
.footer-links a:focus-visible,
.socials a:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.menu-toggle:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid rgba(184, 137, 77, 0.38);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(24, 63, 53, 0.2);
}

.btn-primary:hover {
  background: #102f28;
}

.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border-color: rgba(24, 63, 53, 0.24);
}

.btn-secondary:hover {
  border-color: var(--brass);
  box-shadow: 0 12px 30px rgba(22, 23, 21, 0.08);
}

.hero,
.page-hero,
.cta-band {
  background-attachment: fixed;
}

.section {
  padding: 82px 22px;
}

.section.alt {
  background: var(--white);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  color: #43483f;
  font-size: 18px;
  max-width: 680px;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.hero {
  min-height: calc(100vh - 70px);
  padding: 82px 22px 44px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 29, 25, 0.88), rgba(12, 29, 25, 0.56) 48%, rgba(12, 29, 25, 0.16)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 54px;
}

.hero-copy {
  animation: heroLift 0.9s ease both;
}

.hero-copy {
  max-width: 760px;
  display: grid;
  gap: 22px;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: heroLift 0.9s 0.12s ease both;
}

.trust-item {
  padding: 20px;
  border-right: 1px solid var(--line);
  transition: background 0.22s ease, transform 0.22s ease;
}

.trust-item:hover {
  background: #f3f6f4;
  transform: translateY(-2px);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 28px;
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.grid-3,
.grid-4,
.listing-grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.service-card,
.testimonial,
.listing-card,
.faq-item,
.step-card,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(22, 23, 21, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.service-card:hover,
.testimonial:hover,
.listing-card:hover,
.step-card:hover,
.contact-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 137, 77, 0.42);
  box-shadow: 0 24px 58px rgba(22, 23, 21, 0.12);
}

.benefit-card,
.service-card,
.step-card,
.testimonial,
.faq-item {
  padding: 24px;
}

.benefit-card {
  border-top: 3px solid var(--brass);
}

.benefit-card h3,
.service-card h3,
.step-card h3,
.testimonial strong {
  color: var(--forest);
}

.benefit-card p,
.service-card p,
.step-card p,
.testimonial p,
.faq-item p,
.listing-card p {
  color: var(--muted);
  margin-top: 10px;
}

.icon-pill {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--forest);
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.benefit-card:hover .icon-pill,
.service-card:hover .icon-pill {
  background: var(--forest);
  color: var(--white);
  transform: scale(1.06);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.split-image {
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.split-image:hover img,
.listing-card:hover img,
.image-card:hover img {
  transform: scale(1.045);
}

.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.service-card ul {
  margin: 4px 0 0;
  padding-left: 18px;
  color: #50564d;
}

.service-card li + li {
  margin-top: 6px;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.image-card .card-body {
  padding: 22px;
}

.testimonial {
  display: grid;
  gap: 16px;
}

.stars {
  color: var(--brass);
  letter-spacing: 0.08em;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 63, 53, 0.96), rgba(36, 86, 74, 0.82)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 42px;
  row-gap: 14px;
  max-width: var(--max);
  text-align: left;
  justify-items: start;
  align-items: center;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band .lead {
  grid-column: 1;
}

.cta-band .cta-actions,
.cta-band .container > .btn {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
}

.cta-band .btn-primary {
  background: #e7c894;
  color: #12231f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.cta-band .btn-primary:hover {
  background: var(--white);
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.page-hero {
  padding: 86px 22px 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 29, 25, 0.86), rgba(12, 29, 25, 0.48)),
    var(--hero-image) center/cover;
}

.page-hero .container {
  display: grid;
  gap: 18px;
  max-width: var(--max);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.stat-panel {
  background: var(--forest);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stat-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-row strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: #e7c894;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease;
}

.step-card:hover::before {
  background: var(--forest);
  transform: scale(1.08);
}

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

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--forest);
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brass);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item:hover summary {
  color: var(--terracotta);
}

.faq-item p {
  padding: 0 22px 22px;
  margin-top: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: 0 10px 22px rgba(24, 63, 53, 0.16);
  transform: translateY(-1px);
}

.listing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.listing-card {
  overflow: hidden;
}

.listing-card[hidden] {
  display: none;
}

.listing-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.listing-card .card-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid var(--line);
  color: var(--forest);
  background: var(--mist);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 760;
  color: #343832;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  padding: 13px 14px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(184, 137, 77, 0.2);
  border-color: var(--brass);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 23, 21, 0.06);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-line {
  display: grid;
  gap: 4px;
}

.contact-line strong {
  color: var(--forest);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 290px;
  box-shadow: 0 14px 42px rgba(22, 23, 21, 0.06);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.socials a::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.socials a[href*="instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 4.25A3.75 3.75 0 1 1 12 15.75 3.75 3.75 0 0 1 12 8.25Zm0 2A1.75 1.75 0 1 0 12 13.75 1.75 1.75 0 0 0 12 10.25ZM17.5 6.6a.9.9 0 1 1-.9.9.9.9 0 0 1 .9-.9Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 4.25A3.75 3.75 0 1 1 12 15.75 3.75 3.75 0 0 1 12 8.25Zm0 2A1.75 1.75 0 1 0 12 13.75 1.75 1.75 0 0 0 12 10.25ZM17.5 6.6a.9.9 0 1 1-.9.9.9.9 0 0 1 .9-.9Z'/%3E%3C/svg%3E");
}

.socials a[href*="facebook"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.5V6.75c0-.72.52-1.25 1.22-1.25H17V2.2A22 22 0 0 0 14.36 2C11.75 2 10 3.59 10 6.47V8.5H7v3.7h3V22h4v-9.8h2.9l.6-3.7H14Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.5V6.75c0-.72.52-1.25 1.22-1.25H17V2.2A22 22 0 0 0 14.36 2C11.75 2 10 3.59 10 6.47V8.5H7v3.7h3V22h4v-9.8h2.9l.6-3.7H14Z'/%3E%3C/svg%3E");
}

.socials a[href*="linkedin"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 6.9A2.35 2.35 0 1 1 5.25 2.2a2.35 2.35 0 0 1 0 4.7ZM3.25 22V8.65h4V22h-4Zm6.4 0V8.65h3.83v1.82h.05c.53-1 1.84-2.05 3.78-2.05 4.04 0 4.79 2.66 4.79 6.12V22h-4v-6.62c0-1.58-.03-3.61-2.2-3.61-2.2 0-2.54 1.72-2.54 3.5V22h-3.71Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 6.9A2.35 2.35 0 1 1 5.25 2.2a2.35 2.35 0 0 1 0 4.7ZM3.25 22V8.65h4V22h-4Zm6.4 0V8.65h3.83v1.82h.05c.53-1 1.84-2.05 3.78-2.05 4.04 0 4.79 2.66 4.79 6.12V22h-4v-6.62c0-1.58-.03-3.61-2.2-3.61-2.2 0-2.54 1.72-2.54 3.5V22h-3.71Z'/%3E%3C/svg%3E");
}

.socials a:hover {
  transform: translateY(-2px);
}

.site-footer {
  background: #101411;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 22px 26px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.7fr) minmax(220px, 1fr) minmax(150px, 0.65fr);
  gap: 34px;
  text-align: left;
  justify-items: start;
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 12px;
}

.footer-grid h3 {
  margin-bottom: 2px;
}

.site-footer .brand-mark {
  background: #e7c894;
  color: #101411;
}

.site-footer .brand-text strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer .brand-text span,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 9px;
  justify-items: start;
}

.footer-links a:hover,
.site-footer .socials a:hover {
  color: var(--white);
}

.site-footer .socials {
  justify-content: flex-start;
  gap: 12px;
}

.site-footer .socials a {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0;
}

.site-footer .socials a::before {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.site-footer .socials a:hover {
  background: rgba(231, 200, 148, 0.12);
  border-color: rgba(231, 200, 148, 0.46);
}

.footer-links a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
}

.copyright {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
}

.footer-credit {
  max-width: var(--max);
  margin: 10px auto 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-credit a {
  font-weight: 800;
  transition: opacity 0.18s ease;
}

.footer-credit a:hover {
  opacity: 0.82;
}

.footer-credit .site-blue {
  color: #2f80ed;
}

.footer-credit .sorcerers-orange {
  color: #f2994a;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in-view.card:hover,
.reveal.in-view.service-card:hover,
.reveal.in-view.testimonial:hover,
.reveal.in-view.listing-card:hover,
.reveal.in-view.step-card:hover,
.reveal.in-view.contact-panel:hover {
  transform: translateY(-6px);
}

.reveal.in-view.stat-panel:hover {
  transform: translateY(-4px);
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .page-hero,
  .cta-band {
    background-attachment: scroll;
  }

  .main-nav {
    position: absolute;
    inset: 70px 16px auto 16px;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    transform-origin: top;
    animation: menuDrop 0.2s ease both;
  }

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

  .main-nav a {
    padding: 13px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .trust-strip,
  .grid-4,
  .grid-3,
  .listing-grid,
  .split,
  .story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .story-grid,
  .contact-grid {
    gap: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .cta-band .container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta-band .eyebrow,
  .cta-band h2,
  .cta-band .lead,
  .cta-band .cta-actions,
  .cta-band .container > .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }

  .footer-grid > div {
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    padding: 12px 16px;
  }

  .brand-text span {
    display: none;
  }

  .section {
    padding: 58px 16px;
  }

  .hero,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy .lead,
  .lead {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-panel .btn {
    width: 100%;
  }

  .trust-strip,
  .grid-4,
  .grid-3,
  .listing-grid,
  .split,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split-image {
    min-height: 340px;
  }

  .listing-card img,
  .image-card img {
    height: 220px;
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .footer-grid > div,
  .footer-links {
    justify-items: center;
  }

  .site-footer .socials {
    justify-content: center;
  }

  .map-wrap iframe {
    height: 300px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-wrap {
    gap: 12px;
  }

  .trust-item,
  .benefit-card,
  .service-card,
  .step-card,
  .testimonial,
  .faq-item,
  .contact-panel,
  .listing-card .card-body {
    padding: 18px;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
