:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --charcoal: #2a2a2a;
    --gray: #6a6a6a;
    --light-gray: #e5e5e5;
    --heading: 'Archivo', sans-serif;
    --body: 'DM Sans', sans-serif;
    --header-pad-y: 18px;
    --header-pad-y-scrolled: 12px;
    --logo-h: 50px;
    --nav-font: 0.78rem;
    --nav-gap: 2.25rem;
    --nav-letter: 0.12em;
    --header-bg: rgba(250,250,250,0.98);
    --header-border: rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0rem;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.home-minimal {
    background: var(--dark-deep);
    color: #fafafa;
    min-height: 100vh;
}

.home-featured {
    padding: 0rem 0 8rem;
}

body {
    font-family: var(--body);
    font-weight: 300;
    color: var(--text);
    background: var(--body-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

.loader-text {
    font-family: var(--heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

/* Image Loading */
img {
    opacity: 1;
    transition: opacity 0.6s ease;
}

img.loaded {
    opacity: 1;
}

img[data-src] {
    background: var(--light-gray);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--heading);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
}

p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    max-width: 1400px;
    margin: 0rem;
    padding: 0 1rem;
    gap: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    opacity: 1;  /* Always visible */
    transition: transform 0.3s ease;  /* Smooth scale on hover */
    margin-left:  10vw;
    padding: 0vw 0vw 0vw 0vw;
}

.title-card__nav {
  display: flex;
  gap: 2rem;
  width: 550px;
}

.title-card__nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.title-card__nav a:hover {
  color: rgba(255,255,255,1);
}

.title-card__logo-link {
    width: 1fr;
    margin-left:  0vw;
    padding: 0vw 0vw 0vw 0vw;
    display: flex;
    justify-content: end;
    align-items: end;
    opacity: .5;
}
.title-card__brand {
    max-width: 1400px;
    margin-right: 0rem;
    margin-bottom: 4rem;
    padding: 0 0rem;
    display: grid;
    grid-template-columns: 2fr 10px 1fr;
    justify-content: end;
    align-items: center;
    gap: 02rem;
}
.title-card__hero {
    display: grid;
    grid-template-columns: 2fr 10px auto;
    align-items: end;
    gap: 2rem;
    padding-top: 10rem;
    padding-bottom: 1rem;
}
.title-card__mark {
     width: 550px;
    margin:  0vw;
    padding: 0vw 0vw 0vw 0vw;
    min-width: 350px;
    align-items: center;
}
.logo:hover img {
    transform: scale(1.05);  /* Slightly bigger on hover */
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.logo-mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--black);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--black);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn:hover {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    border-color: var(--black);
    color: var(--black);
}

.btn-dark:hover {
    background: var(--black);
    color: var(--white);
}

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    color: var(--white);
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 6rem 3rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--white);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
}

/* Projects Grid */
.projects-intro {
    padding: 8rem 0 4rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    padding: 4rem 0 8rem;
}

.project-card {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 1.5rem;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-title {
    font-family: var(--heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.project-meta {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.03em;
}

/* Project Detail */
.project-detail-hero {
    width: 100%;
    height: 70vh;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.project-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    padding: 3rem 0 1rem;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--black);
}

.breadcrumb span {
    color: var(--gray);
    margin: 0 0.5rem;
}

.project-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.info-block h4 {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.info-block p {
    font-size: 1rem;
    color: var(--black);
}

.project-overview {
    padding: 6rem 0;
}

.project-overview h2 {
    margin-bottom: 2rem;
}

.project-overview p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-gray);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-image:hover::after {
    background: rgba(0,0,0,0.1);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Lightbox Overlay */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: auto;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    min-width: 400px;
    min-height: 300px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Show "Loading..." text when image not loaded */
.lightbox-content::before {
    content: 'Loading image...';
    position: absolute;
    color: white;
    font-size: 18px;
    z-index: -1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-top: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.filter-tabs button {
    background: none;
    border: none;
    padding: 1rem 0;
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.filter-tabs button:hover,
.filter-tabs button.active {
    color: var(--black);
    border-bottom-color: var(--black);
}

/* CTA Sections */
.cta {
    background: var(--black);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Footer 
footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2em;
    max-width: none;
}
footer .footer-content {
    max-width: 1600px;
    padding: 0rem 09rem;
}

.footer-logo {
    font-family: var(--heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    padding: 6rem 0;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.service-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 4rem 0 8rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.contact-info a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--body);
    font-size: 1rem;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--black);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 2rem;
    }

    .container,
    .container-narrow {
        padding: 0 2rem;
    }

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

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        padding: 4rem 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   Home: Featured Carousel
   =============================== */

.featured-work {
  padding: 4rem 0;
}

.featured-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0b0b0b;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);

}

.featured-carousel .carousel-track {
  display: flex;
  width: 100%;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.featured-carousel .carousel-slide {
  position: relative;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 420px;
  color: #fff;
  text-decoration: none;
}

.featured-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.featured-carousel .carousel-meta {
  position: relative;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.featured-carousel .carousel-meta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.18));
  z-index: 0;
}

.featured-carousel .carousel-meta > * {
  position: relative;
  z-index: 1;
}

.featured-carousel .carousel-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.featured-carousel .carousel-title {
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  font-weight: 400;
  margin: 0;
}

.featured-carousel .carousel-desc {
  margin: 0;
  max-width: 40ch;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.featured-carousel .carousel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.featured-carousel .carousel-tag {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-carousel .carousel-cta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.featured-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
  z-index: 5;
}

.featured-carousel .carousel-btn:hover {
  background: rgba(0,0,0,0.55);
  transform: translateY(-50%) scale(1.04);
}

.featured-carousel .carousel-btn.prev { left: 16px; }
.featured-carousel .carousel-btn.next { right: 16px; }

.featured-carousel .carousel-btn span {
  font-size: 1.25rem;
  line-height: 1;
}

.featured-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.featured-carousel .carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}

.featured-carousel .carousel-dots button.is-active {
  background: rgba(255,255,255,0.92);
}

@media (max-width: 900px) {
  .featured-carousel .carousel-slide {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .featured-carousel .carousel-slide img {
    height: 320px;
  }

  .featured-carousel .carousel-meta {
    padding: 2rem 1.5rem;
  }

  .featured-carousel .carousel-meta::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.85));
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .featured-carousel .carousel-track { transition: none !important; }
}

/* ========================================
   TITLE CARD - BASE STYLES (missing)
   ======================================== */
.title-card {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}

.title-card__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ========================================
   TITLE CARD - MOBILE LAYOUT
   ======================================== */
@media (max-width: 768px) {

  .title-card {
    padding: 1rem 1.5rem;
  }

  .title-card__inner {
    gap: 2rem;
  }

  /* Stack brand grid into single column */
  .title-card__brand {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Divider becomes horizontal rule */
  .title-card__divider {
    display: block;
    width: 20%;
    height: 1px;
    justify-content: center;
    background: rgba(255,255,255,0.2);
  }

  /* Nav stacks vertically */
  .title-card__nav {
    flex-direction: column;
    gap: .25rem;
    width: 100%;
  }

  /* Mark logo shrinks */
  .title-card__mark {
    width: 100%;
    min-width: unset;
    max-width: 180px;
    padding: 0vh 0vh 0vh 2vh;
    justify-self: center;
  }

  .title-card__mark img {
    width: 100%;
    height: auto;
    justify-content: center;

  }

  /* Logo link full width */
  .title-card__logo-link {
    width: 100%;
    height: 2px;
    justify-content: center;

  }

  /* Headline smaller on mobile */
  .title-card__copy h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
            text-align: center;

  }
    .title-card__copy {
        text-align: center;
  }
  .title-card__subhead {
        text-align: center;
    }

    footer .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0rem 02rem;
    }

    footer .footer-right {
    justify-content: center;
    }
    footer .footer-left {
    justify-content: center;
    }
    .home-featured {
    padding: 0rem 0 1rem;
    }
}