:root {
  --ink: #161616;
  --muted: #5d615f;
  --line: #e9dfc2;
  --gold: #d6a900;
  --gold-dark: #a77c00;
  --gold-soft: #fff4c4;
  --paper: #fffef9;
  --cool: #eef4f1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(26, 24, 18, 0.08);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(214, 169, 0, 0.09), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 45%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-band {
  position: relative;
  padding: 84px 0;
}

section[id],
footer[id] {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(214, 169, 0, 0.2);
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
}

.nav-shell {
  width: var(--container);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(252px, 54vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.65vw, 5.25rem);
  font-weight: 500;
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 4.3rem);
  font-weight: 500;
}

h3 {
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-copy > p:not(.eyebrow),
.about-copy p,
.service-card p,
.pillar-card p,
.process-step p,
.review-card p,
.contact-item p {
  color: var(--muted);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn svg,
.price-card svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible,
.price-card a:hover,
.price-card a:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #e9c437, #b98500);
  box-shadow: 0 16px 24px rgba(182, 137, 0, 0.2);
}

.btn-ghost,
.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  background: transparent;
  animation: floatFrame 5.5s ease-in-out infinite;
}

.hero-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(17, 17, 17, 0.16));
}

.shape-line {
  position: absolute;
  inset: 28px auto auto 0;
  width: 78%;
  height: 76%;
  border: 2px solid rgba(214, 169, 0, 0.35);
  border-radius: 92px 8px 8px 8px;
  animation: traceIn 1.6s ease both 0.2s;
}

.dot-field {
  position: absolute;
  right: 0;
  top: 0;
  width: 132px;
  height: 132px;
  opacity: 0.48;
  background-image: radial-gradient(var(--gold) 1.7px, transparent 1.7px);
  background-size: 18px 18px;
  animation: drift 6s ease-in-out infinite alternate;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat-card {
  min-height: 118px;
  padding: 22px 18px;
  display: grid;
  align-content: center;
  justify-items: start;
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(255, 250, 224, 0.7), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 38px rgba(214, 169, 0, 0.22);
}

.stat-card:first-child {
  border-left: 0;
}

.stat-icon,
.service-icon,
.contact-item > span {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #e8c12a, #b78200);
  box-shadow: 0 12px 24px rgba(182, 137, 0, 0.18);
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.stat-icon svg,
.service-icon svg,
.pillar-card svg,
.contact-item svg,
.nav-social svg,
.social-links svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon svg {
  width: 19px;
  height: 19px;
}

.stat-card strong {
  font-size: 1.6rem;
  line-height: 1;
}

.stat-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.about-copy p {
  max-width: 620px;
  margin: 18px 0 0;
}

.about-copy .btn {
  margin-top: 26px;
}

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

.pillar-card {
  min-height: 300px;
  padding: 38px 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 250, 224, 0.7), rgba(255, 255, 255, 0));
  box-shadow: 0 20px 40px rgba(214, 169, 0, 0.22);
}

.pillar-card:first-child {
  border-left: 0;
}

.pillar-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--gold);
}

.pillar-card p {
  margin: 14px 0 0;
  max-width: 210px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "eyebrow button"
    "heading button";
  align-items: end;
  gap: 8px 24px;
  text-align: center;
}

.section-heading .eyebrow {
  grid-area: eyebrow;
  justify-self: center;
}

.section-heading h2 {
  grid-area: heading;
  justify-self: center;
}

.section-heading .btn {
  grid-area: button;
}

.small-btn {
  min-height: 42px;
  padding-inline: 18px;
}

.review-grid,
.service-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.review-card,
.service-card,
.price-card {
  border: 1px solid rgba(233, 223, 194, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(25, 23, 19, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.review-card:hover,
.service-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 169, 0, 0.65);
  background: linear-gradient(180deg, rgba(255, 250, 224, 0.85), rgba(255, 255, 255, 0.92));
  box-shadow: 0 22px 44px rgba(214, 169, 0, 0.28), 0 8px 18px rgba(25, 23, 19, 0.06);
}

.review-card {
  min-height: 230px;
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 18px;
}

.review-card p {
  margin: 0 0 22px;
  font-weight: 600;
}

.review-card h3 {
  margin-bottom: 2px;
}

.review-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-title {
  text-align: center;
}

.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.service-card {
  min-height: 260px;
  padding: 34px 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 31px;
  height: 31px;
}

.service-card p {
  margin: 14px 0 0;
}

.feature-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(145deg, #e6bd2c 0%, #be8500 100%);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card .service-icon {
  background: rgba(255, 255, 255, 0.26);
  color: var(--white);
  box-shadow: none;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 11%;
  right: 11%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(214, 169, 0, 0.24), rgba(22, 22, 22, 0.16), rgba(214, 169, 0, 0.24));
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 160px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.process-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #eac73d, #b98500);
  box-shadow: 0 10px 20px rgba(182, 137, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-step h3 {
  margin-top: 20px;
}

.process-step p {
  max-width: 230px;
  margin: 10px 0 0;
}

.pricing {
  padding-top: 34px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.price-card {
  min-height: 268px;
  padding: 30px;
  display: grid;
  align-content: space-between;
}

.price-card h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.price-card ul {
  margin: 18px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 7px;
}

.price-card a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  transition: transform 0.2s ease;
}

.price-card strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.price-card svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #eac73d, #b98500);
  border-radius: 50%;
}

.highlight-price {
  color: var(--white);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(145deg, #ecc945 0%, #bb8200 100%);
}

.highlight-price ul {
  color: rgba(255, 255, 255, 0.92);
}

.highlight-price a {
  border-color: rgba(255, 255, 255, 0.28);
}

.highlight-price svg {
  color: var(--gold-dark);
  background: var(--white);
}

.site-footer {
  padding: 36px 0 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(233, 223, 194, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.contact-item > span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.contact-item svg {
  width: 24px;
  height: 24px;
}

.contact-item strong {
  display: block;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-item p {
  margin: 4px 0 0;
}

.footer-bottom {
  width: var(--container);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* items in the right-hand column / hero visual slide in from the right */
.js-enabled .hero-visual.reveal,
.js-enabled .pillars .reveal,
.js-enabled .feature-card.reveal {
  transform: translateX(52px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes floatFrame {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes traceIn {
  from {
    opacity: 0;
    transform: translate(-20px, 18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-16px, 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal,
  .js-enabled .hero-visual.reveal,
  .js-enabled .pillars .reveal,
  .js-enabled .feature-card.reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy p {
    margin-inline: auto;
  }

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

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .section-band {
    padding: 58px 0;
  }

  .nav-shell {
    min-height: 74px;
  }

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

  .nav-links {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .section-heading,
  .section-title {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .shape-line {
    inset: 20px auto auto 0;
    height: 80%;
  }

  .stats-grid,
  .pillars,
  .process-track,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-card,
  .pillar-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    justify-items: center;
    text-align: center;
  }

  .stat-card:first-child,
  .pillar-card:first-child {
    border-top: 0;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "button";
    justify-items: center;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track::before {
    display: none;
  }

  .process-step {
    min-height: 0;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(218px, 68vw);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-frame {
    aspect-ratio: 1.15;
  }

  .dot-field {
    width: 96px;
    height: 96px;
  }

  .review-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .review-card,
  .service-card,
  .price-card {
    padding: 24px;
  }

  .contact-grid {
    padding: 20px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* ============================================================
   PREMIUM GOLD-MORPH CARDS — services + pricing
   White default · metallic gold on hover/tap · no permanent highlight
   ============================================================ */
.service-card,
.price-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid #d4af37;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card > *,
.price-card > * { position: relative; z-index: 1; }

.service-card h3,
.price-card h3 { color: #111111; transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

.service-card p,
.price-card ul,
.price-card li,
.price-card strong { color: #666666; transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.price-card h3,
.price-card strong { color: #111111; }

.service-card .service-icon,
.price-card svg,
.price-card a {
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

/* metallic diagonal shine sweep */
.service-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.55) 50%, transparent 68%);
  transform: translateX(-150%);
  opacity: 0;
}

/* identical hover / tap / keyboard-focus behaviour for every card */
.service-card:hover,
.service-card.is-active,
.price-card:hover,
.price-card.is-active,
.price-card:focus-within {
  transform: translateY(-10px) scale(1.03);
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #f6d365 0%, #e6b800 40%, #c99700 70%, #a87400 100%);
}

.service-card:hover h3, .service-card.is-active h3,
.service-card:hover p, .service-card.is-active p,
.price-card:hover h3, .price-card.is-active h3, .price-card:focus-within h3,
.price-card:hover ul, .price-card.is-active ul, .price-card:focus-within ul,
.price-card:hover li, .price-card.is-active li, .price-card:focus-within li,
.price-card:hover strong, .price-card.is-active strong, .price-card:focus-within strong {
  color: #ffffff;
}

.service-card:hover .service-icon,
.service-card.is-active .service-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
}

.price-card:hover svg, .price-card.is-active svg, .price-card:focus-within svg {
  background: #ffffff;
  color: #a87400;
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
}
.price-card:hover a, .price-card.is-active a, .price-card:focus-within a {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.service-card:hover::before, .service-card.is-active::before,
.price-card:hover::before, .price-card.is-active::before {
  animation: cardShine 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cardShine {
  0%   { transform: translateX(-150%); opacity: 0; }
  18%  { opacity: 0.85; }
  100% { transform: translateX(150%); opacity: 0; }
}

/* ensure the hover lift/scale wins over the .reveal.is-visible transform */
.js-enabled .service-card.reveal:hover,
.js-enabled .service-card.reveal.is-active,
.js-enabled .price-card.reveal:hover,
.js-enabled .price-card.reveal.is-active,
.js-enabled .price-card.reveal:focus-within {
  transform: translateY(-10px) scale(1.03);
}

/* footer developer credit link */
.credit-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.credit-link:hover,
.credit-link:focus-visible {
  color: var(--gold-soft);
  text-decoration: underline;
}

/* social icons inside the nav menu */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
  margin-left: 4px;
  border-left: 1px solid var(--line);
}
.nav-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-social a:hover,
.nav-social a:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.nav-social svg { width: 16px; height: 16px; }

/* mobile drawer: socials sit in a centered row at the bottom */
@media (max-width: 820px) {
  .nav-social {
    justify-content: center;
    margin: 8px 0 4px;
    padding: 14px 0 4px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
