/* ---------- Variables ---------- */
:root {
  --off-white: #F4F1EA;
  --gold: #B08A5A;
  --pink: #C98B7A;
  --teal: #3E5C63;
  --ink: #2B2622;

  --accent: var(--gold);
  --accent-ink: #ffffff;

  --font-body: "DM Sans", system-ui, sans-serif;
  --font-head: "Fraunces", Georgia, serif;

  --wrap: 1120px;
  --gap: 1.5rem;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--off-white);
  padding: 0.75rem 1rem;
  z-index: 9999;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-variation-settings: "WONK" 0.4, "opsz" 40;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---------- Logo ---------- */
.mark-icon {
  width: 28px;
  aspect-ratio: 112.48 / 72.29;
  height: auto;
  color: var(--ink);
  fill: currentColor;
}
.mark-icon--lg {
  width: 64px;
  color: var(--gold);
}

.wordmark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.wordmark--lg {
  font-size: clamp(2rem, 5vw, 2.625rem);
  line-height: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.logo--row .mark-icon { margin-top: -2px; }

.logo--stack {
  flex-direction: column;
  gap: 0.66rem;
}

/* ---------- Promo banner ---------- */
.promo-banner {
  background: var(--ink);
  color: var(--off-white);
}
.promo-banner__inner {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  text-align: center;
}
.promo-banner__name {
  font-weight: 500;
}
.promo-banner__price {
  color: var(--gold);
  font-weight: 600;
}
.promo-banner__arrow {
  opacity: 0.6;
  transition: transform 0.15s ease;
}
.promo-banner__inner:hover .promo-banner__arrow {
  transform: translateX(3px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43, 38, 34, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links a {
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.nav__links a:hover { opacity: 1; }

.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.nav__dropdown-toggle:hover { opacity: 1; }
.nav__dropdown-caret {
  width: 9px;
  height: 9px;
  transition: transform 0.15s ease;
}
.nav__dropdown.is-open .nav__dropdown-toggle { opacity: 1; }
.nav__dropdown.is-open .nav__dropdown-caret { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: var(--off-white);
  border: 1px solid rgba(43, 38, 34, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(43, 38, 34, 0.14);
  padding: 0.4rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 5px;
  font-size: 0.9rem;
}
.nav__dropdown-menu a:hover { background: rgba(43, 38, 34, 0.05); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover { transform: translateY(-1px); }
.btn--ghost {
  border: 1px solid rgba(43, 38, 34, 0.25);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero__headline {
  margin-top: 2.5rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  max-width: 720px;
  line-height: 1.15;
}
.hero__sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  max-width: 540px;
  opacity: 0.85;
}
.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Work / case studies ---------- */
.work__intro {
  padding-top: 4.5rem;
}

.case-study {
  background: var(--ink);
  color: var(--off-white);
  padding: 3rem 0;
}
.case-study:has(.case-study__more) {
  padding-bottom: 0;
}
.case-study + .case-study {
  margin-top: 0.75rem;
}
.case-study__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--off-white);
}
.case-study__dek {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
}

.case-study__media {
  margin-top: 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study__media:has(.case-study__media-placeholder) {
  aspect-ratio: 16 / 9;
  background: rgba(244, 241, 234, 0.06);
  border: 1px dashed rgba(244, 241, 234, 0.25);
}
.case-study__media img,
.case-study__media video {
  width: 100%;
  height: auto;
  display: block;
}
.case-study__media-placeholder {
  color: rgba(244, 241, 234, 0.45);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.case-study__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.case-study__meta dl div {
  padding: 1rem 0;
  border-top: 1px solid rgba(244, 241, 234, 0.15);
}
.case-study__meta dl div:first-child { border-top: none; }
.case-study__meta dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-bottom: 0.35rem;
}
.case-study__meta dd { margin: 0; }
.case-study__body p {
  margin-bottom: 1.1rem;
  opacity: 0.9;
}
.case-study__body p:last-child { margin-bottom: 0; }

.case-study__link {
  display: block;
  margin-top: 1.25rem;
  text-align: right;
  font-weight: 600;
  color: var(--gold);
}

.case-study__more {
  margin-top: 2.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(244, 241, 234, 0.15);
  text-align: center;
}
.case-study__more .btn--ghost {
  border-color: rgba(244, 241, 234, 0.3);
  color: var(--off-white);
}
.case-study__more .btn--ghost:hover {
  border-color: var(--off-white);
}

/* ---------- Credibility ---------- */
.credibility { padding: 4.5rem 0; }
.credibility__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.credibility__item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.credibility__item p { opacity: 0.8; }

/* ---------- Process ---------- */
.process {
  background: var(--off-white);
  padding: 4.5rem 0;
  border-top: 3px solid var(--pink);
}
.process__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  list-style: none;
}
.process__num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.process__list h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.process__list p { opacity: 0.85; }

/* ---------- Pricing ---------- */
.pricing {
  padding: 4.5rem 0;
}
.pricing__title {
  margin-top: 3.5rem;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
}
.pricing__industries {
  margin-top: 0;
}
.pricing__industries-title {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 1.5rem;
}
.pricing__industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pricing__industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--ink);
  color: var(--off-white);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pricing__industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.pricing__industry-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--off-white);
}
.pricing__industry-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
}
.pricing__industry-discount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.pricing__industry-arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.pricing__industry-card:hover .pricing__industry-arrow {
  opacity: 1;
  transform: translate(0, 0);
}
@media (min-width: 640px) {
  .pricing__industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .pricing__industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing__dek {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 480px;
}
.pricing__hosting-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.65;
  max-width: 560px;
}

.pricing__base {
  margin-top: 2.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--ink);
  color: var(--off-white);
  border-radius: 10px;
}
.pricing__base-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pricing__base-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
}
.pricing__base-note {
  font-size: 0.85rem;
  opacity: 0.6;
}
.pricing__base-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.pricing__base-was {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.5;
  white-space: nowrap;
  cursor: pointer;
}
.pricing__base-was:hover {
  opacity: 0.8;
}
@media (min-width: 640px) {
  .pricing__base {
    align-items: flex-start;
  }
  .pricing__base-prices {
    margin-top: 0.55rem;
    flex-direction: row;
    align-items: baseline;
    gap: 0.85rem;
  }
}
.pricing__base-price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  white-space: nowrap;
}

.pricing__addons {
  margin-top: 0.5rem;
  list-style: none;
}
.pricing__addons li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.75rem;
  border-top: 1px solid rgba(43, 38, 34, 0.1);
}
.pricing__addon-name {
  font-size: 1rem;
}
.pricing__addon-name small {
  display: inline;
  opacity: 0.65;
  font-size: 0.9em;
}
@media (max-width: 640px) {
  .pricing__addon-name small {
    display: block;
    margin-top: 0.3rem;
  }
}
.pricing__addon-price {
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing__breakdown {
  margin-top: 1.5rem;
}
.pricing__breakdown li {
  align-items: flex-start;
}
.pricing__breakdown-caption {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  opacity: 0.6;
  font-weight: 400;
}
.pricing__breakdown-subtotal {
  font-weight: 600;
  border-top: 1px solid rgba(43, 38, 34, 0.25) !important;
}
.pricing__breakdown-subtotal,
.pricing__breakdown-discount {
  align-items: baseline !important;
}
.pricing__breakdown-discount .pricing__addon-name,
.pricing__breakdown-discount .pricing__addon-price {
  color: var(--gold);
  font-weight: 600;
}

.pricing__breakdown-final {
  align-items: flex-start !important;
  background: var(--ink);
  color: var(--off-white);
  padding: 1.5rem 1.75rem;
  border-radius: 0 0 10px 10px;
  border-top: none !important;
  margin-top: 0.5rem;
  scroll-margin-top: 90px;
}
.pricing__breakdown-final .pricing__addon-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--off-white);
}
.pricing__breakdown-final .pricing__addon-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
}
.pricing__breakdown-final .pricing__breakdown-caption {
  color: var(--off-white);
  opacity: 0.75;
  max-width: 560px;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.pricing__breakdown-final .pricing__hosting-note {
  color: var(--off-white);
  opacity: 0.55;
  max-width: 560px;
  margin-top: 0.75rem;
}
.pricing__breakdown-final-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
.pricing__breakdown-final-prices .pricing__base-was {
  margin-top: 0.15rem;
  cursor: default;
}
.pricing__breakdown-final-prices .pricing__base-was:hover {
  opacity: 0.5;
}
.pricing__breakdown-cta {
  margin-top: 0.4rem;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer {
  padding: 3.5rem 0 2rem;
  background: var(--ink);
  color: var(--off-white);
}
.footer .mark-icon {
  color: var(--off-white);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 241, 234, 0.15);
}
.footer__location {
  margin-top: 0.6rem;
  opacity: 0.7;
  font-size: 0.95rem;
}
.footer__contact a {
  font-weight: 600;
  color: var(--gold);
}
.footer__copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .credibility__grid {
    grid-template-columns: 1fr 1fr;
  }
  .process__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 860px) {
  .case-study__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav__links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(43, 38, 34, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .nav__dropdown {
    width: 100%;
  }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0.5rem 0 0 0.25rem;
    margin-top: 0.5rem;
    display: none;
  }
  .nav__dropdown.is-open .nav__dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav__dropdown-menu a {
    padding: 0.5rem 0;
    opacity: 0.75;
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__toggle { display: flex; }
}

/* ==========================================================================
   Industry landing pages (/dental-medical, /contractors, /salons, /restaurants)
   Additive only — reuses the tokens/components above, does not modify them.
   ========================================================================== */

/* ---------- Industry hero ---------- */
.industry-hero {
  position: relative;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(43, 38, 34, 0.08);
}
.industry-hero h1 {
  margin-top: 0.75rem;
  max-width: 680px;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.15;
}
.industry-hero__sub {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
}
.industry-hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.industry-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.industry-hero__media {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-hero__media:has(.industry-hero__media-placeholder) {
  border: 1px dashed rgba(43, 38, 34, 0.25);
  background: rgba(43, 38, 34, 0.04);
}
.industry-hero__media-placeholder {
  color: rgba(43, 38, 34, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.industry-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 860px) {
  .industry-hero__grid {
    grid-template-columns: 1fr 0.85fr;
  }
}

/* ---------- Package contents ---------- */
.package {
  background: var(--ink);
  color: var(--off-white);
  padding: 4.5rem 0;
}
.package .eyebrow { color: var(--gold); }
.package__title {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--off-white);
}
.package__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.package__group h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-bottom: 1rem;
}
.package__group ul {
  list-style: none;
}
.package__group li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(244, 241, 234, 0.15);
}
.package__group li:first-of-type {
  border-top: none;
}

/* ---------- Value prop / marketing blurb ---------- */
.value-prop {
  padding: 4.5rem 0;
  border-top: 3px solid var(--pink);
}
.value-prop__text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 760px;
}

/* ---------- Credibility anchor ---------- */
.credibility-anchor {
  padding: 2.5rem 0;
}
.credibility-anchor p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 640px;
}
.credibility-anchor a {
  font-weight: 600;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43, 38, 34, 0.35);
}
.credibility-anchor p + p {
  margin-top: 0.75rem;
}

/* ---------- About: community ---------- */
.about-community {
  padding: 2.5rem 0 4.5rem;
}
.about-community h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
}
.about-community__dek {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 560px;
}
.about-community__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .about-community__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .about-community__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-community__media {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-community__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-community__media--fit {
  background: rgba(176, 138, 90, 0.12);
}
.about-community__media--fit img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.about-community__media-placeholder {
  color: rgba(43, 38, 34, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.about-community__item h3 {
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.about-community__link {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}
.about-community__link a {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Industry pricing ---------- */
.industry-pricing {
  padding: 4.5rem 0;
}
.industry-pricing__title {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
}
.industry-pricing__note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.7;
}

/* ---------- Industry CTA ---------- */
.industry-cta {
  background: var(--gold);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}
.industry-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.industry-cta h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: #fff;
  max-width: 560px;
}
.industry-cta p {
  margin-top: 0.9rem;
  opacity: 0.9;
  max-width: 480px;
}
.industry-cta .btn--primary {
  margin-top: 1.75rem;
  background: var(--ink);
}

@media (min-width: 640px) {
  .package__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
