/* =========================================================
   FONTS — using Google Fonts CDN
   (The original file embedded ~90 base64 WOFF2 fonts of
   Cormorant Garamond, Manrope, and JetBrains Mono. Loading
   them from Google is much cleaner and lighter for editing.)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&family=JetBrains+Mono:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&family=JetBrains+Mono:wght@400&family=Montserrat:wght@400;700;900&display=swap');
/* =========================================================
   RESET & BASE
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #1c1a1a;
  color: #ece6dc;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: #c9a45c; text-decoration: none; transition: color .2s ease; }
a:hover { color: #e3c688; }

img { max-width: 100%; display: block; }

/* =========================================================
   TOKENS
   ========================================================= */
:root {
  --bg:        #1c1a1a;
  --bg-alt:    #262424;
  --bg-card:   #221f1f;
  --border:    rgba(201, 164, 92, 0.22);
  --border-strong: rgba(201, 164, 92, 0.35);
  --gold:      #c9a45c;
  --gold-hi:   #e3c688;
  --text:      #ece6dc;
  --muted:     #b8b0a4;
  --muted-2:   #9c9488;
  --muted-3:   #8a8278;

  --font-serif: 'Cormorant Garamond', serif;
  --font-mono:  'JetBrains Mono', monospace;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.page { min-height: 100vh; overflow-x: hidden; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section { border-top: 1px solid rgba(201, 164, 92, 0.14); }
.section-alt { background: var(--bg-alt); }

.section-head { display: flex; flex-direction: column; gap: 24px; max-width: 640px; }

.eyebrow-text {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
  text-wrap: balance;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(28, 26, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.header-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;   /* brand | spacer | nav */
  align-items: center;
  gap: 32px;
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  text-decoration: none;
}

/* Nav pushed to the right column */
.nav {
  grid-column: 3;
  display: flex;
  gap: 44px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  justify-self: end;
}

.nav a {
  position: relative;
  color: var(--text);
  padding: 6px 0;
  transition: color .25s ease;
}

.nav a:hover { color: var(--gold); }

/* Thin gold underline that slides in on hover */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
  .brand { justify-self: center; }
  .nav {
    justify-self: center;
    gap: 28px;
  }
}

/* =========================================================
   BRAND — GOLDEN · [mark] · GROUP
   ========================================================= */
.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  text-decoration: none;
  line-height: 1;
}

.brand-word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.24em;
}

.brand-word-2 { color: var(--text); }

.brand-mark {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(201, 164, 92, 0.25));
  transition: filter .3s ease;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 0 10px rgba(201, 164, 92, 0.55));
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.nav a { color: var(--text); }
.nav a:hover { color: var(--gold); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: #1c1a1a;
  padding: 16px 30px;
}
.btn-gold:hover { background: var(--gold-hi); color: #1c1a1a; }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.btn-outline:hover { background: var(--gold); color: #1c1a1a; }

.btn-ghost {
  border-color: rgba(236, 230, 220, 0.3);
  color: var(--text);
  padding: 16px 30px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 96px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 64px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; gap: 32px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow .line { width: 40px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-lead {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero media panel ---------- */
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201, 164, 92, 0.22);   /* single, subtle border */
  background: #1e1c1c;                           /* solid, dark */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

/* ---------- Logo ---------- */
.hero-logo {
  position: relative;
  z-index: 1;
  width: 58%;
  height: auto;
  object-fit: contain;
  animation:
    heroFloat 5s ease-in-out infinite,
    heroShine 5s ease-in-out infinite;
  will-change: transform, filter;
}

/* Gentle up-and-down motion */
@keyframes heroFloat {
  0%   { transform: translateY(0);     }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0);     }
}

/* Brighter glow at the peak of the float */
@keyframes heroShine {
  0%, 100% {
    filter: drop-shadow(0 0 24px rgba(201, 164, 92, 0.45))
            drop-shadow(0 0 48px rgba(201, 164, 92, 0.20))
            drop-shadow(0 12px 32px rgba(0, 0, 0, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(201, 164, 92, 0.75))
            drop-shadow(0 0 64px rgba(201, 164, 92, 0.35))
            drop-shadow(0 12px 32px rgba(0, 0, 0, 0.6));
  }
}



/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  padding-top: 112px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 72px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.about-body p { text-wrap: pretty; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(201, 164, 92, 0.2);
  border: 1px solid rgba(201, 164, 92, 0.2);
  margin-top: 12px;
}

.value-card {
  background: var(--bg-alt);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text);
}

.value-desc { font-size: 14px; line-height: 1.6; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-inner {
  padding-top: 112px;
  padding-bottom: 112px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.section-lead {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

/* Grid of service cards — responsive, feels good at 7 items */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}

/* Card */
.service-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  gap: 28px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.service-card:hover {
  border-color: rgba(201, 164, 92, 0.5);
  background: #262323;
  transform: translateY(-2px);
}

/* Top row: number + tag */
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-num { color: var(--gold); }
.service-tag { color: var(--gold); }

/* Title */
.service-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}

/* Intro paragraph */
.service-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
  margin: 0;
}

/* Item list */
.service-items {
  display: flex;
  flex-direction: column;
  margin-top: auto;      /* pin list to bottom of card */
  padding-top: 4px;
}

.service-item {
  padding: 14px 0;
  border-top: 1px solid rgba(236, 230, 220, 0.08);
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =========================================================
   CONTACT / CONNECT
   ========================================================= */
.contact-inner {
  padding-top: 112px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 72px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Each row = label (left) + values (right) */
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;   /* label width + value area */
  gap: 24px;
  align-items: baseline;              /* keeps the first line aligned */
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(236, 230, 220, 0.08);
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-values {
  display: flex;
  flex-direction: column;   /* values stack under each other */
  gap: 4px;
}

.contact-value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  transition: color .2s ease;
  letter-spacing: 0.01em;
}

.contact-value:hover {
  color: var(--gold-hi);
}

/* On very small screens, stack label above values */
@media (max-width: 520px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}



/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid rgba(201, 164, 92, 0.14);
  background: #1c1a1a;
}

.footer-inner {
  padding-top: 96px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* --- Hero line --- */
.footer-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.footer-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.footer-title em {
  color: var(--gold);
  font-style: italic;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  text-wrap: pretty;
}

/* --- 3-column link grid --- */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(236, 230, 220, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  transition: color .2s ease;
}

.footer-list a:hover {
  color: var(--gold-hi);
}

/* --- Bottom bar --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(236, 230, 220, 0.08);
  font-size: 13px;
  color: var(--muted-3);
}

.footer-tag {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}



.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 164, 92, 0.18);
  border: 1px solid rgba(201, 164, 92, 0.18);
  margin-top: 48px;
}

.value-card {
  background: #262424;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s ease;
  position: relative;
}
.value-card:hover { background: #2c2929; }

.value-mark {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 6px;
  transition: width .35s ease;
}
.value-card:hover .value-mark { width: 44px; }

.value-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-2);
}

@media (max-width: 640px) {
  .value-cards { grid-template-columns: 1fr; }
}




/* =========================================================
   RESPONSIVE — FULL MOBILE PASS
   Covers tablets (≤ 900px) and phones (≤ 640px and ≤ 400px)
   ========================================================= */

/* ---------- Tablet & below (≤ 900px) ---------- */
@media (max-width: 900px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 56px;
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(38px, 7vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-media {
    aspect-ratio: 1 / 1;         /* square instead of 4:5 */
    max-width: 480px;
    margin: 0 auto;              /* center it */
    width: 100%;
  }

  .hero-logo { width: 62%; }

  .about-grid,
  .contact-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 56px;
  }

  .services-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 48px;
  }

  .footer-inner {
    padding-top: 72px;
    padding-bottom: 32px;
    gap: 56px;
  }

  .footer-columns {
    gap: 40px;
    padding-top: 40px;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 44px);
  }

  .footer-title {
    font-size: clamp(32px, 6vw, 48px);
  }
}

/* ---------- Phone (≤ 720px) ---------- */
@media (max-width: 720px) {

  /* ----- Header ----- */
   .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    grid-column: 1;
    justify-self: center;
    align-self: center;
    gap: 10px;
  }

  .brand-word {
    font-size: 18px;
    letter-spacing: 0.2em;
    padding-left: 0.2em;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  /* Hide the navigation links on mobile */
  .nav {
    display: none;
  }

  /* ----- Hero ----- */
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 48px;
    gap: 40px;
    text-align: center;
  }
  .hero-copy {
    align-items: center;
    gap: 24px;
  }
  .eyebrow {
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.24em;
  }
  .eyebrow .line { width: 28px; }
  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.1;
  }
  .hero-lead {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 14px 20px;
    font-size: 12px;
  }
  .hero-media {
    aspect-ratio: 1 / 1;
    padding: 32px;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-logo { width: 55%; }

  /* ----- Section headings ----- */
  .section-head {
    gap: 16px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .eyebrow-text {
    font-size: 11px;
    letter-spacing: 0.24em;
  }
  .section-title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.15;
  }
  .section-lead {
    font-size: 15px;
    text-align: center;
    max-width: 100%;
  }

  /* ----- About ----- */
  .about-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 32px;
  }
  .about-body {
    font-size: 15px;
    gap: 22px;
  }
  .about-body p {
    text-align: center;
  }

  /* Value cards — 1 column, tight */
  .value-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .value-card {
    padding: 24px 20px;
    align-items: center;
    text-align: center;
  }
  .value-mark { margin-left: auto; margin-right: auto; }
  .value-title { font-size: 22px; }

  /* ----- Services ----- */
  .services-inner {
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 40px;
  }
  .services-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 28px 24px;
    gap: 20px;
  }
  .service-title { font-size: 24px; }
  .service-intro { font-size: 14px; }
  .service-item {
    font-size: 14px;
    padding: 12px 0;
  }

  /* ----- Contact ----- */
  .contact-inner {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 32px;
    text-align: center;
  }
  .contact-left {
    align-items: center;
    gap: 16px;
  }
  .contact-right {
    gap: 0;
  }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
    padding: 18px 0;
    text-align: center;
  }
  .contact-label {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .contact-values {
    align-items: center;
  }
  .contact-value {
    font-size: 15px;
    text-align: center;
  }

  /* ----- Footer ----- */
  .footer-inner {
    padding-top: 56px;
    padding-bottom: 28px;
    gap: 48px;
  }
  .footer-hero {
    align-items: center;
    text-align: center;
    max-width: 100%;
    gap: 16px;
  }
  .footer-title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
  }
  .footer-tagline {
    font-size: 15px;
    max-width: 100%;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    text-align: center;
  }
  .footer-col {
    align-items: center;
    gap: 14px;
  }
  .footer-list {
    align-items: center;
    gap: 10px;
  }
  .footer-list a {
    font-size: 14px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 24px;
  }
  .footer-tag {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}

/* ---------- Very small phones (≤ 400px) ---------- */
@media (max-width: 400px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 36px);
  }
  .hero-media { padding: 24px; }
  .hero-logo  { width: 50%; }

  .brand-word {
    font-size: 16px;
    letter-spacing: 0.18em;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .service-card {
    padding: 24px 20px;
  }
  .service-title { font-size: 22px; }

  .footer-title {
    font-size: clamp(26px, 8vw, 32px);
  }
  .contact-value { font-size: 14px; }
}


.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 20px;
  border: none;
  background: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1c1a1a;
  text-decoration: none;
  transition: all .25s ease;
}

.service-link:hover {
  background: var(--gold-hi);
  color: #1c1a1a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 164, 92, 0.25);
}

.service-link-arrow {
  display: inline-block;
  transition: transform .25s ease;
}

.service-link:hover .service-link-arrow {
  transform: translateX(4px);
}