body {
    margin: 0;
   background: #090b10;
    color: #ececec;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.01) 3px
    );
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gallery {
    margin-bottom: 2.2rem;
}

.about {
    margin-bottom: 0;
    text-align: center;
}

.hero {
    text-align: center;
    margin-bottom: 2.2rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
}


.tagline {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.78;
    max-width: 32rem;
    margin: 0 auto 1.4rem auto;
    line-height: 1.5;
      text-align: center;
}


h2 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 60ch;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.32);
    transform: translateY(-1px);
}

.btn.primary {
    background: #1a1a1f;
    border-color: rgba(120,180,255,0.4);
}


.hero-image {
    width: 100%;
    margin-top: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-fit: cover;
    display: block;
    background: #1a1a1f;
}

.thumb {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.thumb:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.footer {
    margin-top: 1rem;
    padding: 0.75rem 0 1rem;
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

.about p {
    max-width: 40rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.about h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.9rem 0;
}


.footer-inner {
    max-width: 820px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    margin-bottom: 1rem;
}

.footer-meta {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.6;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.footer-contact a:hover {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.5);
}

.footer-copy {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    opacity: 0.4;
}

.footer {
    text-align: center;
}

.about p {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 1.2rem auto;
    line-height: 1.7;
}

.about h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}
.about p:last-child {
    margin-bottom: 0;
}