/* Gtastyb0nuss — Culinary Catering Atelier */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --ivory: #f7f3ec;
  --linen: #f1ebe2;
  --sand: #e4d8c8;
  --champagne: #d4c4ae;
  --mocha: #b59a82;
  --olive: #8a8b6e;
  --espresso: #2c241c;
  --espresso-soft: #3d3228;
  --gold: #a68955;
  --gold-soft: #c4a76a;
  --text: #3a3128;
  --text-muted: #6b5e52;
  --white: #fffcf7;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Helvetica Neue", sans-serif;
  --max: 72rem;
  --section: clamp(4.5rem, 10vw, 8rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, 42rem);
}

/* ——— Atmosphere ——— */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(212, 196, 174, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(138, 139, 110, 0.12), transparent 50%),
    linear-gradient(180deg, var(--linen) 0%, var(--ivory) 40%, var(--sand) 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Typography ——— */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.251
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.75rem);
}
@media (max-width:450px){
h1{
font-size:2.1em;
}
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 36rem;
}

.serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--espresso-soft);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 243, 236, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(44, 36, 28, 0.06);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 1px 0 rgba(44, 36, 28, 0.08);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
  position: relative;
}

.brand__logo {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--espresso);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}

.nav-cta {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  padding: 0.75rem 1.4rem;
  transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
  background: var(--espresso-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  z-index: 1003;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: var(--espresso);
  transition: transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}

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

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

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

/* Mobile nav panel */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) 2rem 3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile__list a {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 7vw, 2.5rem);
  color: var(--espresso);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(44, 36, 28, 0.08);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s, color 0.25s;
}

.nav-mobile.is-open .nav-mobile__list a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile.is-open .nav-mobile__list a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.is-open .nav-mobile__list a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.is-open .nav-mobile__list a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.is-open .nav-mobile__list a:nth-child(4) { transition-delay: 0.2s; }

.nav-mobile__list a:hover,
.nav-mobile__list a.is-active {
  color: var(--gold);
}

.nav-mobile__meta {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0;
  transition: opacity 0.4s 0.25s;
}

.nav-mobile.is-open .nav-mobile__meta {
  opacity: 1;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-cta {
    display: inline-block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s;
}

.btn--primary {
  background: var(--espresso);
  color: var(--ivory);
}

.btn--primary:hover {
  background: var(--espresso-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--champagne);
  color: var(--espresso);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--espresso);
  background: rgba(44, 36, 28, 0.04);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 0;
  position: relative;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(44, 36, 28, 0.72) 0%, rgba(44, 36, 28, 0.35) 45%, rgba(44, 36, 28, 0.2) 100%),
    linear-gradient(to top, rgba(44, 36, 28, 0.55) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  color: var(--ivory);
  max-width: 38rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2 + 1.25rem));
}

.hero__content .eyebrow {
  color: var(--gold-soft);
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__content .lead {
  color: rgba(255, 252, 247, 0.82);
}

.hero__content .btn--primary {
  background: var(--gold);
  color: var(--espresso);
}

.hero__content .btn--primary:hover {
  background: var(--gold-soft);
}

.hero__content .btn--ghost {
  border-color: rgba(255, 252, 247, 0.45);
  color: var(--white);
}

.hero__content .btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 252, 247, 0.08);
}

.hero--page {
  min-height: 58vh;
  min-height: 58dvh;
  align-items: center;
}

.hero--page .hero__content {
  padding-bottom: 0;
  padding-top: 2rem;
  max-width: 34rem;
}

/* ——— Sections ——— */
.section {
  padding: var(--section) 0;
  position: relative;
}

.section--alt {
  background: rgba(241, 235, 226, 0.65);
}

.section--espresso {
  background: var(--espresso);
  color: rgba(255, 252, 247, 0.85);
}

.section--espresso h2,
.section--espresso h3 {
  color: var(--white);
}

.section--espresso .eyebrow {
  color: var(--gold-soft);
}

.section--espresso .lead {
  color: rgba(255, 252, 247, 0.7);
}

.section__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 36rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

/* Editorial split */
.editorial {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

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

  .editorial--reverse .editorial__visual {
    order: 2;
  }

  .editorial--reverse .editorial__text {
    order: 1;
  }

  .editorial--offset .editorial__visual {
    transform: translateY(2.5rem);
  }

  .editorial--offset-up .editorial__visual {
    transform: translateY(-2rem);
  }
}

.editorial__visual {
  position: relative;
  overflow: hidden;
}

.editorial__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.editorial:hover .editorial__visual img {
  transform: scale(1.03);
}

.editorial__visual--wide img {
  aspect-ratio: 16 / 10;
}

.editorial__visual--square img {
  aspect-ratio: 1;
}

.editorial__frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 252, 247, 0.25);
  pointer-events: none;
  z-index: 1;
}

.editorial__text p + p {
  margin-top: 1.1rem;
}

.editorial__text .lead {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Format grid — not cards in cliché sense, modular strips */
.format-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(44, 36, 28, 0.1);
}

.format-item {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(44, 36, 28, 0.1);
  align-items: center;
}

@media (min-width: 768px) {
  .format-item {
    grid-template-columns: 8rem 1fr 1.2fr;
    gap: 2.5rem;
  }
}

.format-item__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}

.format-item h3 {
  margin-bottom: 0.5rem;
}

.format-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.format-item__img {
  overflow: hidden;
}

.format-item__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 767px) {
  .format-item__img {
    order: -1;
  }
}

/* Atmosphere mosaic */
.mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .mosaic {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }

  .mosaic__main {
    grid-row: 1 / 3;
  }
}

.mosaic figure {
  overflow: hidden;
  position: relative;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.mosaic figure:hover img {
  transform: scale(1.04);
}

.mosaic__main img {
  aspect-ratio: 3 / 4;
  min-height: 100%;
}

.mosaic__side img {
  aspect-ratio: 16 / 11;
}

.mosaic figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(44, 36, 28, 0.65));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

/* Philosophy strip */
.philosophy {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .philosophy {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.philosophy__item {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(166, 137, 85, 0.45);
}

.philosophy__item h3 {
  margin-bottom: 0.85rem;
}

.philosophy__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section--espresso .philosophy__item {
  border-top-color: rgba(196, 167, 106, 0.35);
}

.section--espresso .btn--ghost {
  border-color: rgba(255, 252, 247, 0.35);
  color: var(--white);
}

.section--espresso .btn--ghost:hover {
  border-color: var(--gold-soft);
  background: rgba(255, 252, 247, 0.06);
  color: var(--white);
}

/* Quote block */
.quote-block {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding: 1rem 0;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-style: italic;
  color: var(--espresso);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Contact layout */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-info dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-info dd {
  margin-bottom: 1.75rem;
  color: var(--text);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--champagne);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--mocha);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(138, 139, 110, 0.15);
  border-left: 3px solid var(--olive);
  color: var(--espresso);
  font-size: 0.95rem;
}

.form-success.is-visible {
  display: block;
}

/* Legal */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  font-size: 1.65rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-hero-img {
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.legal-hero-img img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* CTA band */
.cta-band {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cta-band {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}

.cta-band__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Signature mark */
.gtasty-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Footer ——— */
.site-footer {
  background: var(--espresso);
  color: rgba(255, 252, 247, 0.75);
  padding: 4.5rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand img {
  width: 2.2rem;
  height: 2.2rem;
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

.footer-col address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.85;
}

.footer-col .contact-line {
  margin-bottom: 0.35rem;
}

.footer-nav a,
.footer-legal a {
  display: block;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  color: rgba(255, 252, 247, 0.7);
  transition: color 0.25s;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--gold-soft);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(255, 252, 247, 0.8);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.social-links a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 252, 247, 0.1);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-legal a {
  display: inline;
  padding: 0;
  font-size: 0.82rem;
}

/* Page spacer under fixed header for non-hero tops */
.page-top {
  padding-top: var(--header-h);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-muted {
  color: var(--text-muted);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.social-links--inline {
  margin-top: 0;
}

.social-links--inline a {
  color: var(--espresso);
  border-bottom-color: transparent;
}

.social-links--inline a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
