@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ==========================================================================
   Design Tokens & Root Variables
   ========================================================================== */
:root {
  /* Colors (Dark Obsidian Palette) */
  --bg-base: #09090b;
  --bg-surface: #121215;
  --bg-surface-hover: #1c1c22;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --accent: #ffffff;
  --accent-hover: #e4e4e7;
  --border: #27272a;
  --focus: #3b82f6;
  --focus-outline: 3px solid var(--focus);
  
  /* Typography */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Layout & Animations */
  --radius-sm: 4px;
  --radius-md: 8px;
  --container-padding: 5%;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --skeleton-shine: linear-gradient(90deg, #18181b 25%, #27272a 50%, #18181b 75%);
}

/* High Contrast Override variables */
body.high-contrast {
  --bg-base: #ffffff;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f4f4f5;
  --text-primary: #000000;
  --text-secondary: #000000;
  --text-muted: #1c1c1e;
  --accent: #000000;
  --accent-hover: #1c1c1e;
  --border: #000000;
  --focus: #005fcc;
  --focus-outline: 4px solid var(--focus);
  --skeleton-shine: linear-gradient(90deg, #e4e4e7 25%, #f4f4f5 50%, #e4e4e7 75%);
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth), border-color var(--transition-smooth);
}

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

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--focus);
  color: #fff;
  padding: 1rem 2rem;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s ease;
}

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

/* Global Focus Rings (WCAG AA requirement) */
:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 3px;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition-smooth), background-color var(--transition-smooth);
}

body.high-contrast .site-header {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.75rem var(--container-padding);
}

.logo a {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-top: 4px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.contact-link {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contrast Mode Button */
.contrast-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.contrast-btn:hover,
.contrast-btn:focus-visible {
  background-color: var(--bg-surface-hover);
  border-color: var(--text-secondary);
}

body.high-contrast .contrast-btn {
  border: 2px solid #000000;
  background-color: #000000;
  color: #ffffff;
}

body.high-contrast .contrast-btn:hover {
  background-color: #333333;
}

/* ==========================================================================
   Hero Showcase Section
   ========================================================================== */
.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

body.high-contrast .hero-showcase {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 1.5rem 0 1.5rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-trigger {
  width: auto;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trigger:focus-visible {
  outline-offset: 3px;
}

/* Skeleton loader placeholders */
.image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: var(--aspect-ratio, 4/5);
  background: var(--skeleton-shine);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  overflow: hidden;
}

@keyframes shimmer {
  to {
    background-position-x: -200%;
  }
}

.hero-placeholder {
  width: auto;
  height: 100%;
  max-height: 73vh;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-trigger:hover .hero-placeholder,
.hero-trigger:focus-visible .hero-placeholder {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body.high-contrast .hero-placeholder {
  border: 3px solid #000000;
  box-shadow: none;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-placeholder img.loaded {
  opacity: 1;
}

/* Hover Zoom effect on Images */
.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.03);
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--container-padding) 2rem 4rem;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

body.high-contrast .hero-tag {
  color: #000000;
}

.hero-text-col h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-text-col p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 550px;
}

body.high-contrast .hero-text-col p {
  color: #000000;
}

.hero-actions-container {
  display: flex;
  gap: 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: background-color var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--text-primary);
  color: var(--bg-base);
}

body.high-contrast .btn-outline {
  border: 3px solid #000000;
  color: #000000;
}

body.high-contrast .btn-outline:hover {
  background-color: #000000;
  color: #ffffff;
}

/* ==========================================================================
   Portfolio Grid Section
   ========================================================================== */
.portfolio-section {
  padding: 2.5rem var(--container-padding);
  max-width: 1600px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

body.high-contrast .section-intro {
  color: #000000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.portfolio-item:hover {
  border-color: var(--text-muted);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.high-contrast .portfolio-item {
  border: 2px solid #000000;
  background-color: #ffffff;
}

.gallery-trigger {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  display: block;
  overflow: hidden;
}

.portfolio-caption {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.portfolio-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

body.high-contrast .portfolio-info {
  color: #000000;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--bg-surface-hover);
  color: var(--text-secondary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

body.high-contrast .tag {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  background-color: var(--bg-surface);
  padding: 7rem var(--container-padding);
  border-top: 1px solid var(--border);
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

body.high-contrast .about-section {
  background-color: #ffffff;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

body.high-contrast .about-content p {
  color: #000000;
}

.contact-card {
  background-color: var(--bg-base);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}

body.high-contrast .contact-card {
  border: 3px solid #000000;
  background-color: #ffffff;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

body.high-contrast .contact-card p {
  color: #000000;
}

.contact-btn-large {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--accent);
  color: var(--bg-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.contact-btn-large:hover,
.contact-btn-large:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

body.high-contrast .contact-btn-large {
  background-color: #000000;
  color: #ffffff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 2.5rem var(--container-padding);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: border-color var(--transition-smooth);
}

body.high-contrast .site-footer {
  border-top: 2px solid #000000;
  color: #000000;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.footer-contact {
  margin-top: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==========================================================================
   Accessible Lightbox Dialog
   ========================================================================== */
.lightbox {
  border: none;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(4, 4, 6, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.high-contrast .lightbox::backdrop {
  background: rgba(255, 255, 255, 0.98);
}

.lightbox-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 5rem;
}

.lightbox-image-wrapper {
  position: relative;
  width: 92vw;
  height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  width: 100%;
  height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.high-contrast .lightbox img {
  box-shadow: none;
  border: 4px solid #000000;
}

.lightbox.lightbox-double-spread .lightbox-image-wrapper {
  width: 96vw;
  height: 95vh;
}

.lightbox.lightbox-double-spread img {
  height: 85vh;
}

.lightbox-caption-box {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
}

body.high-contrast .lightbox-caption-box {
  color: #000000;
}

#lightbox-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

#lightbox-desc {
  font-size: 0.95rem;
  color: #a1a1aa;
}

body.high-contrast #lightbox-desc {
  color: #000000;
}

.lightbox-action-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg-base);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  border: 2px solid var(--accent);
  margin-top: 0.75rem;
}

.lightbox-action-btn:hover,
.lightbox-action-btn:focus-visible {
  background-color: transparent;
  color: #ffffff;
}

body.high-contrast .lightbox-action-btn {
  background-color: #000000;
  color: #ffffff;
  border: 3px solid #000000;
}

body.high-contrast .lightbox-action-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Spinner Loader */
.lightbox-spinner {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  display: none;
  z-index: 10;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Controls */
.lightbox-control-btn {
  position: absolute;
  background-color: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-smooth), transform var(--transition-smooth);
  z-index: 100;
}

body.high-contrast .lightbox-control-btn {
  background-color: #ffffff;
  border: 3px solid #000000;
  color: #000000;
}

.lightbox-control-btn:hover {
  background-color: rgba(24, 24, 27, 0.85);
}

body.high-contrast .lightbox-control-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.close-btn {
  top: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.prev-btn, .next-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.prev-btn {
  left: 2rem;
}

.next-btn {
  right: 2rem;
}

.prev-btn:hover {
  transform: translateY(-50%) translateX(-4px);
}

.next-btn:hover {
  transform: translateY(-50%) translateX(4px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-showcase {
    grid-template-columns: 1fr;
  }
  .hero-image-col {
    min-height: 50vh;
    padding: 1.5rem var(--container-padding);
    justify-content: center;
  }
  .hero-text-col {
    padding: 2rem var(--container-padding);
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem var(--container-padding);
  }
  .main-nav ul {
    gap: 1.5rem;
  }
  .hero-text-col {
    padding: 3rem var(--container-padding);
  }
  .hero-text-col h1 {
    font-size: 2.25rem;
  }
  .portfolio-section {
    padding: 4rem var(--container-padding);
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .lightbox-wrapper {
    padding: 1.5rem;
  }
  .close-btn {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  .prev-btn, .next-btn {
    bottom: 2rem;
    top: auto;
    transform: none;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  .prev-btn {
    left: calc(50% - 3.5rem);
  }
  .next-btn {
    right: calc(50% - 3.5rem);
  }
  .prev-btn:hover, .next-btn:hover {
    transform: none;
  }
  .lightbox-image-wrapper {
    max-width: 90vw;
    max-height: 60vh;
  }
  .lightbox img {
    max-height: 50vh;
  }
  .lightbox.lightbox-double-spread .lightbox-image-wrapper {
    max-width: 98vw;
    max-height: 85vh;
  }
  .lightbox.lightbox-double-spread img {
    max-height: 75vh;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
  padding: 8rem var(--container-padding);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background-color: var(--bg-base);
}

.contact-card-page {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 4rem;
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

body.high-contrast .contact-card-page {
  border: 3px solid #000000;
  background-color: #ffffff;
  box-shadow: none;
}

.contact-page-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

body.high-contrast .contact-intro p {
  color: #000000;
}

.contact-divider {
  height: 1px;
  background-color: var(--border);
  margin: 3rem 0;
  width: 100%;
}

body.high-contrast .contact-divider {
  height: 2px;
  background-color: #000000;
}

.contact-details h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

body.high-contrast .contact-details p {
  color: #000000;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: background-color var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  border-radius: var(--radius-sm);
  border: 2px solid var(--accent);
}

.email-btn {
  background-color: var(--accent);
  color: var(--bg-base);
}

.email-btn:hover,
.email-btn:focus-visible {
  background-color: transparent;
  color: var(--text-primary);
}

.linkedin-btn {
  background-color: transparent;
  color: var(--text-primary);
}

.linkedin-btn:hover,
.linkedin-btn:focus-visible {
  background-color: var(--accent);
  color: var(--bg-base);
}

body.high-contrast .contact-button {
  border: 3px solid #000000;
}

body.high-contrast .email-btn {
  background-color: #000000;
  color: #ffffff;
}

body.high-contrast .email-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

body.high-contrast .linkedin-btn {
  background-color: #ffffff;
  color: #000000;
}

body.high-contrast .linkedin-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .contact-card-page {
    padding: 2.5rem 1.5rem;
  }
  .contact-page-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .contact-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .contact-button {
    width: 100%;
    text-align: center;
  }
}

