/* ============ HERO ============ */
.hero {
  padding-top: clamp(7rem, 12vh, 9rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(108, 174, 125, 0.20), transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(176, 138, 94, 0.10), transparent 65%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M40 100 Q100 30 160 100 Q100 170 40 100 Z' fill='none' stroke='%232c6e42' stroke-width='0.4' opacity='0.18'/></svg>");
  background-size: 220px 220px;
  background-position: -60px -60px;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.hero__copy { max-width: 36rem; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 1.25rem;
}
.hero__title em {
  font-style: normal;
  color: var(--green-700);
  display: block;
}

.hero__kw {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--green-800);
  margin-top: 1.1rem;
  font-weight: 600;
  max-width: 36rem;
  line-height: 1.45;
}

.hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-soft);
  margin-top: 0.85rem;
  max-width: 32rem;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .hero__ctas .btn { width: 100%; }
}

.hero__service-area {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--green-800);
  font-weight: 500;
}
.hero__service-area svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hero logo art */
.hero__logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.hero__logo-frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bone);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__logo-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed var(--green-300);
  opacity: 0.55;
  z-index: -1;
  animation: spin 60s linear infinite;
}
.hero__logo-frame img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero__logo-frame::before { animation: none; }
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--green-800);
  color: var(--on-dark);
  padding-block: clamp(2.5rem, 5vh, 3.5rem);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(108, 174, 125, 0.18), transparent 70%);
  pointer-events: none;
}
.trust__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem 1.5rem;
}
@media (min-width: 540px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.5rem 0;
}
.trust__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(108, 174, 125, 0.18);
  border: 1.5px solid var(--green-400);
  display: grid;
  place-items: center;
  color: var(--green-200);
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bone);
  line-height: 1.1;
}
.trust__sub {
  font-size: 0.85rem;
  color: var(--green-200);
  margin-top: 0.2rem;
  line-height: 1.35;
}

/* ============ SERVICES ============ */
.services { background: var(--cream-soft); }
.services__head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 38rem;
}
.services__head h2 em { color: var(--green-600); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bone);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-100);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  background: var(--bone);
  color: var(--green-800);
  padding: 0.4rem 0.7rem;
  border-radius: var(--r-pill);
  z-index: 1;
}

.service-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.service-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.service-card__cta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.01em;
}
.service-card__cta::after {
  content: "→";
  transition: transform var(--t-fast) var(--ease-out);
}
.service-card:hover .service-card__cta::after { transform: translateX(4px); }

/* ============ PROCESS ============ */
.process {
  background: var(--green-50);
  border-block: 1px solid var(--line);
  position: relative;
}
.process__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.process__head h2 { margin-top: 0.6rem; }
.process__head p {
  margin-top: 1rem;
  max-width: 38rem;
  margin-inline: auto;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 760px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.process-step {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.process-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--green-700);
  background: var(--green-100);
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  align-self: flex-start;
  display: inline-block;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ============ PAGE (sub-page layout) ============ */
.page-hero {
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(108, 174, 125, 0.18), transparent 60%),
    var(--cream);
  padding-top: clamp(6rem, 12vh, 8rem);
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-700);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a {
  color: var(--green-700);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--t-fast);
}
.breadcrumb a:hover { border-bottom-color: var(--green-500); }
.breadcrumb span[aria-current] { color: var(--text-soft); }
.breadcrumb .sep { color: var(--text-soft-2); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 22ch;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--green-700);
}
.page-hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-soft);
  max-width: 50ch;
  line-height: 1.55;
}
.page-hero .meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Prose — long-form article body */
.prose {
  background: var(--cream-soft);
  padding-block: clamp(3rem, 6vh, 4.5rem);
}
.prose__inner {
  max-width: 720px;
  margin-inline: auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: normal; color: var(--green-700); }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose p {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.05rem;
}
.prose p strong { color: var(--ink); font-weight: 600; }
.prose a {
  color: var(--green-700);
  font-weight: 600;
  border-bottom: 1.5px solid var(--green-200);
  padding-bottom: 1px;
}
.prose a:hover { color: var(--green-600); border-bottom-color: var(--green-500); }
.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: revert;
}
.prose ul li, .prose ol li {
  font-size: 1.04rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.45rem;
}
.prose ol { list-style: decimal; }
.prose ul { list-style: disc; }

.callout {
  background: var(--bone);
  border-left: 4px solid var(--green-500);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}
.callout strong { color: var(--green-800); }

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 600px) {
  .price-row { grid-template-columns: repeat(3, 1fr); }
}
.price-row__item {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.price-row__item .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.price-row__item .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.price-row__item .note {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ============ FAQ ============ */
.faq {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.faq__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 38rem;
  margin-inline: auto;
}
.faq__head .eyebrow {
  justify-content: center;
  display: inline-flex;
}
.faq__head h2 { margin-top: 0.6rem; }
.faq__head h2 em { color: var(--green-600); }
.faq__head p { margin-top: 1rem; }

.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f5232' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--t-med) var(--ease-out);
}
.faq-item[open] > summary::after { transform: rotate(45deg); }

.faq-item > summary h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.faq-item > p {
  padding: 0 1.5rem 1.4rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}
.faq-item > p strong { color: var(--ink); font-weight: 600; }
.faq-item > p a {
  color: var(--green-700);
  font-weight: 600;
  border-bottom: 1.5px solid var(--green-200);
  padding-bottom: 1px;
}
.faq-item > p a:hover {
  color: var(--green-600);
  border-bottom-color: var(--green-500);
}

@media (min-width: 600px) {
  .faq-item > summary { padding: 1.4rem 1.75rem; }
  .faq-item > summary h3 { font-size: 1.12rem; }
  .faq-item > p { padding: 0 1.75rem 1.6rem; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background:
    linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 60%, var(--green-900) 100%);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(176, 138, 94, 0.20), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(108, 174, 125, 0.18), transparent 55%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 820px) {
  .cta-banner__inner { grid-template-columns: 1.4fr auto; gap: 3rem; }
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.cta-banner h2 em {
  font-style: normal;
  color: var(--green-200);
}
.cta-banner p {
  margin-top: 0.85rem;
  color: var(--green-100);
  font-size: 1.05rem;
  max-width: 36rem;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
@media (max-width: 480px) {
  .cta-banner__actions .btn { width: 100%; }
}

/* ============ CONTACT ============ */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 0.95fr 1.05fr; }
}

.contact__head h2 em { color: var(--green-600); }
.contact__lead {
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 38ch;
}

.contact__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-row__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
}
.contact-row__icon svg { width: 20px; height: 20px; }
.contact-row__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft-2);
}
.contact-row__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 0.2rem;
}
.contact-row__value a { color: inherit; }
.contact-row__value a:hover { color: var(--green-700); }
.contact-row__sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.contact__quick {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Form */
.form {
  background: var(--bone);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}
.form__row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft-2);
  font-weight: 600;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 0.95rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--bone);
}
.form__field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}
.form__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-700) 50%),
    linear-gradient(135deg, var(--green-700) 50%, transparent 50%),
    var(--cream-soft);
  background-position:
    calc(100% - 18px) center,
    calc(100% - 13px) center,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
  cursor: pointer;
}
.form__field select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-700) 50%),
    linear-gradient(135deg, var(--green-700) 50%, transparent 50%),
    var(--bone);
}
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form__note {
  font-size: 0.85rem;
  color: var(--text-soft);
  max-width: 30ch;
}
.form__status {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.3rem 0;
  min-height: 1.5rem;
}
.form__status.is-success { color: var(--green-700); }
.form__status.is-error { color: #b13a2a; }
.form button[type="submit"] { width: 100%; }
@media (min-width: 600px) { .form button[type="submit"] { width: auto; } }

/* ============ FOOTER ============ */
.foot {
  background: var(--green-900);
  color: var(--on-dark-soft);
  padding-block: 3rem;
}
.foot p { color: var(--on-dark-soft); }
.foot__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .foot__grid { flex-direction: row; justify-content: space-between; align-items: center; }
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.foot__brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bone);
  object-fit: cover;
}
.foot__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bone);
  font-size: 1.1rem;
  line-height: 1.15;
}
.foot__brand-text small {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--green-200);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.foot__copy {
  font-size: 0.88rem;
  text-align: left;
}
@media (min-width: 720px) {
  .foot__copy { text-align: right; }
}
.foot__made {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  color: var(--green-200);
}
.foot__made a {
  color: var(--bone);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}
.foot__made a:hover { border-bottom-color: var(--bone); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
