/* ============================================
   Series A Coffee — Stylesheet
   Palette: Deep Navy (#0F2B4C) · Warm Gold (#C9A84C)
   Fonts: Cormorant Garamond + Montserrat
   ============================================ */

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

:root {
    --navy: #0F2B4C;
    --navy-light: #1A3A5C;
    --navy-dark: #091E36;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #B8943F;
    --cream: #F7F4EE;
    --cream-dark: #EDE8DD;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy);
    color: var(--gold);
    padding: 8px 16px;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus {
    top: 0;
}

/* --- Page Loader --- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-icon {
    margin: 0 auto 16px;
    animation: pulse 1.2s ease-in-out infinite;
}
.loader-text {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 24px;
}

.section-body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.gold {
    color: var(--gold);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-large {
    padding: 18px 48px;
    font-size: 0.875rem;
}
.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}
.site-header.scrolled {
    background: rgba(15, 43, 76, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.logo-mark {
    color: var(--gold);
}
.logo-text {
    font-weight: 400;
}
.logo-dot {
    color: var(--gold);
    font-weight: 600;
}

/* --- Nav --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover {
    color: var(--gold);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-cta {
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 2px;
    color: var(--gold);
    transition: all 0.3s var(--ease-out);
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-dark);
}
.nav-cta::after {
    display: none;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 30, 54, 0.82) 0%,
        rgba(15, 43, 76, 0.65) 50%,
        rgba(15, 43, 76, 0.45) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: 80px;
}
.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    animation: bob 2s ease-in-out infinite;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Origin --- */
.origin {
    padding: 120px 0;
    background: var(--cream);
}
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.origin-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.origin-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.origin-image:hover img {
    transform: scale(1.03);
}
.origin-content {
    padding: 16px 0;
}
.origin-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(15, 43, 76, 0.1);
}
.stat {
    text-align: left;
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(15, 43, 76, 0.15);
}

/* --- Menu --- */
.menu {
    padding: 120px 0;
    background: var(--white);
}
.section-header.center {
    text-align: center;
    margin-bottom: 64px;
}
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}
.menu-tab {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    color: var(--text-light);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.menu-tab:hover {
    color: var(--navy);
}
.menu-tab.active {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}
.menu-panel {
    display: none;
    animation: fadeIn 0.4s var(--ease-out);
}
.menu-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.menu-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(15, 43, 76, 0.08);
}
.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
}
.menu-item-desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.menu-item-body {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
}
.menu-note {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 48px;
    font-style: italic;
}

/* --- Craft --- */
.craft {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}
.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.craft-content .section-title {
    color: var(--white);
}
.craft-content .section-body {
    color: rgba(255, 255, 255, 0.65);
}
.craft-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}
.craft-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.craft-icon {
    flex-shrink: 0;
    margin-top: 2px;
}
.craft-feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.craft-feature-body {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}
.craft-images {
    position: relative;
    padding: 24px 0;
}
.craft-img-main {
    border-radius: 4px;
    overflow: hidden;
}
.craft-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.craft-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--navy);
}
.craft-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--cream);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(15, 43, 76, 0.08);
}
.visit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}
.visit-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
}
.visit-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.6;
}
.visit-value a {
    color: var(--navy);
    transition: color 0.3s;
}
.visit-value a:hover {
    color: var(--gold);
}
.visit-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 43, 76, 0.1);
    height: 100%;
    min-height: 400px;
}
.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 30, 54, 0.88) 0%,
        rgba(15, 43, 76, 0.78) 100%
    );
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}
.cta-body {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}
.cta-content .section-eyebrow {
    margin-bottom: 20px;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-title {
    margin-bottom: 20px;
}
.contact-info .section-body {
    margin-bottom: 32px;
}
.contact-social {
    display: flex;
    gap: 16px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 43, 76, 0.15);
    border-radius: 50%;
    color: var(--navy);
    transition: all 0.3s var(--ease-out);
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- Form --- */
.contact-form-wrap {
    background: var(--cream);
    border-radius: 4px;
    padding: 40px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid rgba(15, 43, 76, 0.12);
    border-radius: 2px;
    padding: 12px 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
}
.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-input::placeholder {
    color: var(--text-light);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230F2B4C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--navy);
    margin-top: 8px;
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 64px 0 32px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-light {
    color: var(--white);
}
.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: var(--gold);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .origin-grid,
    .craft-grid,
    .visit-grid,
    .contact-grid {
        gap: 48px;
    }
    .craft-img-secondary {
        right: -12px;
        bottom: -12px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(9, 30, 54, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out);
    }
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        font-size: 1.125rem;
    }
    .nav-cta {
        margin-top: 8px;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .origin-grid,
    .craft-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .origin-image {
        order: -1;
    }
    .origin-image img {
        height: 350px;
    }
    .craft-images {
        order: -1;
    }
    .craft-img-main img {
        height: 350px;
    }
    .craft-img-secondary {
        width: 60%;
        right: 0;
        bottom: -16px;
    }
    .craft-img-secondary img {
        height: 180px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .menu-categories {
        flex-wrap: wrap;
        gap: 8px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 24px;
    }
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .origin-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero {
        min-height: 500px;
    }
    .hero-content {
        padding-top: 60px;
    }
    .origin,
    .menu,
    .craft,
    .visit,
    .cta,
    .contact {
        padding: 80px 0;
    }
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
}
