@font-face {
    font-family: 'ChronicleCondensed';
    src: url('ChronicleCondensed-Regular.woff2') format('woff2'),
         url('ChronicleCondensed-Regular.woff') format('woff'),
         url('ChronicleCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: #000;
}

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(127.284deg, rgb(52, 143, 80) 8.9369%, rgb(86, 180, 211) 91.77%);
    transition: background 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.logo-container {
    position: absolute;
    top: 43px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.logo {
    width: 51px;
    height: 40px;
    display: block;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 214px 0 200px;
    position: relative;
    z-index: 1;
}

.main-text {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.01em;
    font-variation-settings: 'SOFT' 0, 'WONK' 1;
    width: 100%;
}

.main-text p {
    margin: 0;
}

.wavy-link {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.8);
    text-underline-offset: 19%;
    text-decoration-skip-ink: none;
    color: #ffffff;
    transition: text-underline-offset 0.3s ease;
    position: relative;
    cursor: pointer;
}

.expandable {
    display: inline;
}

.expandable-trigger {
    cursor: pointer;
}

.expandable-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expandable[data-expanded="true"] .expandable-content {
    display: inline;
    opacity: 1;
    margin-left: 0.3em;
}

.link-icon-inline {
    display: inline;
    margin-left: 0.2em;
    vertical-align: super;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    text-decoration: none;
    font-size: 0.7em;
    line-height: 0;
    color: #ffffff;
    font-style: normal;
}

.link-icon-inline:hover {
    opacity: 1;
}

.link-icon-inline .material-symbols-outlined {
    font-size: 0.6em;
    vertical-align: baseline;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Pottery icon stays inline and original size */
.link-icon-inline.pottery-icon {
    vertical-align: middle;
    font-size: 1em;
    line-height: 1;
}

.pottery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.7;
}

.pottery-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .wavy-link {
        text-decoration-thickness: 2px;
    }
}

.wavy-link:hover {
    animation: underlineMove 1s ease-in-out infinite;
}

@keyframes underlineMove {
    0%, 100% {
        text-underline-offset: 19%;
    }
    50% {
        text-underline-offset: 15%;
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 49px 324px 0;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #ffffff;
    line-height: 19.5px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: visible;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1.04px;
    line-height: 19.5px;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    overflow: visible;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: block;
    overflow: visible;
    flex-shrink: 0;
}

@media (max-width: 1600px) {
    .main-text {
        font-size: clamp(20px, 3.5vw, 48px);
    }
    
    .container {
        padding: 180px 5% 200px;
    }
    
    footer {
        padding: 40px 5% 0;
    }
}

@media (max-width: 1200px) {
    .main-text {
        font-size: clamp(20px, 3vw, 40px);
    }
    
    .container {
        padding: 150px 5% 200px;
    }
}

@media (max-width: 768px) {
    .main-text {
        font-size: clamp(24px, 5vw, 40px);
    }
    
    .logo {
        width: 40px;
        height: auto;
    }
    
    .container {
        padding: 120px 5% 200px;
    }
    
    footer {
        padding: 30px 5% 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: clamp(20px, 6vw, 32px);
    }
    
    .container {
        padding: 100px 5% 200px;
    }
}
