/* ============================================================
   Cory Garfin — Landing Page
   Editorial design: serif headings, warm palette, clean lines
   ============================================================ */

:root {
  --bg: #FDFBF7;
  --text: #2C2C2C;
  --text-muted: #5A5249;
  --accent: #A5502D;
  --accent-hover: #8B3F1F;
  --border: #D8D0C4;
  --surface: #F0EAE0;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-width: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* --- Reset & Base --- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}

/* --- Skip Link --- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 200;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 0;
}

/* --- Accent Bar (top of page) --- */

.accent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 100;
}

/* --- Header --- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem var(--gutter);
}

.site-name {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.site-name:hover .brand-name {
  color: var(--accent);
}

.site-header nav {
  display: flex;
  gap: 2rem;
}

.site-header nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* --- Layout Container --- */

.hero, .about, .services, .talks, .testimonials, .work, .contact {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-rule {
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}

/* --- Hero --- */

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.cta-link {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.cta-link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.hero-photo img {
  max-width: 320px;
  border-radius: 4px;
  filter: grayscale(10%);
  border: 1px solid var(--border);
}

/* --- About --- */

.about {
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.about-lead {
  font-size: 1.4rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-aside {
  padding-top: 0.25rem;
}

.aside-block {
  margin-bottom: 1.75rem;
}

.aside-block:last-child {
  margin-bottom: 0;
}

.aside-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.aside-block p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* --- Services (Three-Tier) --- */

.services {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.services h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.services-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.tier {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border-radius: 6px;
  border-top: 3px solid var(--accent);
}

.tier-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.tier-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tier-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tier-details {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.tier-details li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.tier-details li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Talks & Workshops --- */

.talks {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.talks h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.talks-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.talk-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.talk {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}

.talk h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.talk-meta {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.talk-dot {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.talk p:not(.talk-meta) {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.talk .project-link {
  font-size: 0.9rem;
}

/* --- Testimonials Carousel --- */

.testimonials {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.testimonials h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 180px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.carousel-slide p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.carousel-slide footer {
  font-style: normal;
}

.carousel-slide cite {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
}

.carousel-slide cite strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.carousel-slide cite .muted {
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
  min-width: 8px;
  min-height: 8px;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Screen reader only --- */

.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;
}

/* --- Newsletter Callout --- */

.newsletter-callout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter);
}

.newsletter-inner {
  background: var(--surface);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.newsletter-banner-link {
  display: block;
  margin-bottom: 1.5rem;
}

.newsletter-banner {
  width: 100%;
  height: auto;
  display: block;
}

.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.recent-posts li {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}

.recent-posts li:last-child {
  padding-bottom: 0;
}

.recent-posts a {
  text-decoration: none;
  display: block;
  color: var(--text);
  transition: color 0.2s;
}

.recent-posts a:hover {
  color: var(--accent);
}

.recent-post-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  display: block;
  line-height: 1.35;
}

.recent-post-subtitle {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.45;
}

.newsletter-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.newsletter-title a {
  color: var(--text);
  text-decoration: none;
}

.newsletter-title a:hover {
  color: var(--accent);
}

.newsletter-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.latest-post-title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.latest-post-title a {
  color: var(--text);
  text-decoration: none;
}

.latest-post-title a:hover {
  color: var(--accent);
}

.latest-post-excerpt {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.newsletter-inner .cta-link {
  font-size: 1.05rem;
}

/* --- Work / Projects --- */

.work {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.work h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.project:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project.reverse .project-screenshot {
  order: 2;
}

.project.reverse .project-info {
  order: 1;
}

.project-screenshot {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-screenshot img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

.project-screenshot.illustration img {
  object-fit: contain;
  background: #fff;
}

.project-screenshot.portrait {
  border: none;
  overflow: visible;
  background: transparent;
  display: flex;
  justify-content: center;
}

.project-screenshot.portrait img {
  aspect-ratio: auto;
  width: auto;
  max-height: 460px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.project-screenshot.composite {
  position: relative;
  overflow: visible;
  background: transparent;
}

.project-screenshot.composite img {
  border-radius: 4px;
}

.project-screenshot.composite .popout {
  position: absolute;
  right: -14px;
  bottom: -18px;
  height: 78%;
  width: auto;
  max-height: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(44, 44, 44, 0.28);
}

.project-screenshot.placeholder {
  background: var(--surface);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-screenshot.placeholder span {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

.project-info h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.project-info p {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.project-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.project-link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* --- Contact --- */

.contact {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  max-width: 680px;
}

/* Bio page */
.bio-hero {
  max-width: 720px;
  margin: 0 auto;
  /* Bottom padding matches .bio-section margin-bottom so the gap after the
     lead paragraph is the same as the gaps between all the others. */
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(1.1rem, 2vw, 1.4rem);
}
.bio-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}
.bio-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted, #555);
  margin: 0;
}
.bio-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
}
.bio-section {
  margin-bottom: clamp(1.1rem, 2vw, 1.4rem);
}
/* The closing "Get in touch" block keeps the wider separation. */
.bio-section:last-child {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.bio-section h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.bio-section p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}
.contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  gap: 2rem;
}

.contact-links a {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.2s;
}

.contact-links a:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
}

/* --- Footer --- */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--border);
}

.site-footer p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* --- Scroll Animations --- */

.fade-target {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-target.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children in tiers */
.tier.fade-target:nth-child(2) { transition-delay: 0.08s; }
.tier.fade-target:nth-child(3) { transition-delay: 0.16s; }

/* --- Resources Page --- */

.resources-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}

.resources-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.resources-hero p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
}

.resources-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
}

.resource-section {
  margin-bottom: 3rem;
}

.resource-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.resource-section > p {
  font-size: 0.925rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
}

.resource-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.resource-list a {
  text-decoration: none;
  display: block;
}

.resource-list a:hover .resource-name {
  color: var(--accent);
}

.resource-name {
  font-weight: 500;
  font-size: 0.975rem;
  color: var(--text);
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.15rem;
}

.resource-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.resource-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  margin-top: 0.5rem;
}

.resource-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
}

.resource-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.45;
}

.resource-table a {
  font-size: 0.875rem;
}

/* --- Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-target {
    opacity: 1;
    transform: none;
    transition: none;
  }

  a, .cta-link, .project-link, .contact-links a, .nav-toggle span {
    transition: none;
  }

  .carousel-slide {
    transition: none;
  }

  .carousel-dot {
    transition: none;
  }
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .hero-photo {
    order: -1;
  }

  .hero-photo img {
    max-width: 260px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-aside {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  .aside-block {
    margin-bottom: 0;
  }

  .tiers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project.reverse .project-screenshot,
  .project.reverse .project-info {
    order: unset;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-photo img {
    max-width: 200px;
  }

  .about-aside {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
