:root {
    --bg: #17130f;
    --bg-dark: #0d0b09;

    --paper: #e5d6b8;
    --paper-light: #efe3c8;
    --paper-dark: #c8b58f;

    --ink: #211b15;
    --text: #e3d6bb;
    --muted: #a99b82;

    --red: #6d1f22;
    --red-dark: #451315;
    --gold: #a88952;

    --border: rgba(200, 181, 143, 0.35);

    --shadow:
        0 15px 40px rgba(0,0,0,.45);

    --max-width: 1180px;
}
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&family=Special+Elite&display=swap');


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at center,
            #272019 0%,
            #17130f 55%,
            #0d0b09 100%
        );

    color: var(--text);

    font-family:
        "Libre Baskerville",
        Georgia,
        serif;

    line-height: 1.75;
    font-size: 18px;
}


/* Alte Papierstruktur */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: .07;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.2) 0px,
            rgba(255,255,255,.2) 1px,
            transparent 1px,
            transparent 4px
        );

    z-index: 999;
}


/* =========================================================
   LINKS
   ========================================================= */

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

a:hover {
    color: #fff0cc;
}


/* =========================================================
   SKIP LINK
   ========================================================= */

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 10000;

    background: var(--paper);
    color: var(--ink);

    padding: 10px 16px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 500;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    padding: 0;

    background:
        linear-gradient(
            to bottom,
            #18130e,
            #0e0b08
        );

    border-bottom: 1px solid var(--gold);

    box-shadow:
        0 5px 20px rgba(0,0,0,.5);
}


/* kleine historische Linie */

.navbar::before {

    position: absolute;

    left: 20px;

    font-family: "Special Elite", monospace;

    font-size: .7rem;

    letter-spacing: 2px;

    color: var(--gold);
}


.navbar a {
    position: relative;

    padding: 19px 18px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 19px;

    letter-spacing: .5px;

    color: #d7c8a9;

    transition:
        background .2s,
        color .2s;
}


.navbar a:hover {
    background: rgba(109,31,34,.45);

    color: #fff0cc;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.hamburger {
    display: none;

    position: fixed;

    right: 18px;
    top: 15px;

    z-index: 1001;

    width: 44px;
    height: 44px;

    padding: 10px;

    background: #15100c;

    border: 1px solid var(--gold);
}

.hamburger span {
    display: block;

    height: 2px;

    margin: 5px 0;

    background: var(--paper);
}


.menu-overlay {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 1000;

    background:
        radial-gradient(
            circle,
            #251c15,
            #0c0907
        );

    padding: 90px 30px;
}


.menu-overlay a {
    display: block;

    padding: 15px;

    border-bottom: 1px solid var(--border);

    font-family: "Cormorant Garamond", serif;

    font-size: 1.4rem;

    text-align: center;
}


/* =========================================================
   ALLGEMEIN
   ========================================================= */

main {
    overflow: hidden;
}

section {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: auto;

    padding: 90px 0;
}


section + section {
    border-top: 1px solid rgba(200,181,143,.15);
}


/* =========================================================
   HERO
   ========================================================= */

/* =========================================================
   HERO – HISTORISCHES HINTERGRUNDBILD
   ========================================================= */

.hero {
    position: relative;

    width: 100%;
    max-width: none;

    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px;

    /* HIER DAS BILD EINTRAGEN */
    background-image:
        linear-gradient(
            rgba(10, 7, 5, 0.68),
            rgba(10, 7, 5, 0.88)
        ),
        url("cover.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--gold);

    overflow: hidden;
}


/* leichter historischer Film-/Papier-Effekt */

.hero::before {
    content: "";

    position: absolute;
    inset: 35px;

    border: 1px solid rgba(200, 181, 143, 0.45);

    pointer-events: none;

    z-index: 1;
}


/* kleine Verzierung unten */

.hero::after {
    content: "✦";

    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    color: var(--gold);

    font-size: 1.5rem;

    z-index: 2;
}


/* Inhalt über dem Bild */

.hero-content {
    position: relative;

    max-width: 850px;

    z-index: 3;
}

/* =========================================================
   HERO TEXT
   ========================================================= */

.hero-badge {
    display: inline-block;

    margin-bottom: 25px;

    padding: 6px 18px;

    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    color: #c7b58e;

    font-family:
        "Special Elite",
        monospace;

    font-size: .75rem;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.hero h1 {
    margin: 0;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(3.5rem, 9vw, 7.5rem);

    font-weight: 700;

    letter-spacing: 7px;

    line-height: 1;

    color: var(--paper-light);

    text-shadow:
        0 4px 15px rgba(0,0,0,.8);
}


.hero h1::after {
    content: "ARCHIV DER VERGANGENHEIT";

    display: block;

    margin-top: 22px;

    font-family:
        "Special Elite",
        monospace;

    font-size: .75rem;

    letter-spacing: 5px;

    color: var(--gold);
}


.hero p {
    max-width: 700px;

    margin: 35px auto;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.35rem;

    color: #d8cbb0;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}


.btn {
    display: inline-block;

    padding: 12px 25px;

    border: 1px solid var(--gold);

    background:
        linear-gradient(
            to bottom,
            #712327,
            #4b1518
        );

    color: #f1dfbc;

    font-family:
        "Special Elite",
        monospace;

    font-size: .8rem;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 4px 10px rgba(0,0,0,.35);

    transition:
        transform .2s,
        background .2s;
}


.btn:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            to bottom,
            #853036,
            #5b191d
        );

    color: white;
}


.btn-secondary {
    background: transparent;

    border-color:
        rgba(200,181,143,.6);
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.section-head {
    max-width: 800px;

    margin-bottom: 45px;
}


.section-head h2 {
    margin: 0 0 15px;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(2rem, 5vw, 3.2rem);

    color: var(--paper-light);

    letter-spacing: 2px;
}


.section-head h2::before {
    content: "— ";
    color: var(--gold);
}


.section-head p {
    color: var(--muted);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.25rem;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
    background:
        linear-gradient(
            135deg,
            rgba(229,214,184,.07),
            rgba(229,214,184,.025)
        );

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);
}


/* =========================================================
   ABOUT
   ========================================================= */

.intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    gap: 35px;
}


.intro-copy {
    padding: 40px;
}


.intro-copy h3 {
    margin-top: 0;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 1.7rem;

    color: var(--paper-light);
}


.intro-copy strong {
    color: #b68b56 !important;
}


.intro-side {
    padding: 18px;
}


/* =========================================================
   TEAMFOTO
   ========================================================= */

.intro-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.poster {
    width: 100%;
    max-width: 600px;
    padding: 14px;
    
    /* Alter Bilderrahmen */
    background: #d8c6a2;
    border: 1px solid #a58a5c;
    
    box-shadow:
        0 0 0 5px #211c17,
        0 0 0 7px #b4975a,
        0 15px 35px rgba(0, 0, 0, 0.55);
    
    position: relative;
}


.poster img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter:
        sepia(18%)
        contrast(1.05)
        brightness(0.95);

    border: 1px solid #3b3022;
}


.poster::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(180, 151, 90, 0.7);
    pointer-events: none;
}


.poster::after {
    content: "DAS STUDIO";
    display: block;

    text-align: center;

    margin-top: 12px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px;
    letter-spacing: 3px;

    color: #302619;
}

/* =========================================================
   CHECKLIST
   ========================================================= */

.checklist {
    padding: 0;

    list-style: none;
}


.checklist li {
    position: relative;

    padding-left: 30px;

    margin: 14px 0;

    color: #c8baa0;
    font-size: 19px;
}


.checklist li::before {
    content: "✦";

    position: absolute;

    left: 0;

    color: var(--red);
}


/* =========================================================
   STATISTIKEN
   ========================================================= */

.stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.stat {
    padding: 30px 20px;

    text-align: center;

    border-top:
        3px double var(--gold);

    border-bottom:
        3px double var(--gold);
}


.stat strong {
    display: block;

    margin-bottom: 10px;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 2.3rem;

    color: var(--paper-light);
}


.stat span {
    font-family:
        "Special Elite",
        monospace;

    font-size: .75rem;

    color: var(--muted);
}


/* =========================================================
   FOLGEN
   ========================================================= */

.spotify-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.spotify-grid iframe {
    width: 100%;

    min-height: 355px;

    border:
        1px solid var(--gold);

    filter:
        sepia(.25)
        contrast(.95);
}


.spotify-grid p {
    min-height: 355px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    margin: 0;

    text-align: center;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.3rem;

    color: var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--paper-light),
            var(--paper)
        );

    box-shadow:
        7px 7px 0 rgba(0,0,0,.25);

    border:
        1px solid #8d7857;
}


/* =========================================================
   FEATURES
   ========================================================= */

.content-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


.feature-box {
    padding: 35px;

    background:
        rgba(229,214,184,.045);

    border-left:
        4px solid var(--red);

    border-bottom:
        1px solid var(--border);
}


.feature-box h3 {
    margin-top: 0;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    color: var(--paper-light);
}


.feature-box p {
    color: var(--muted);
}


/* =========================================================
   KONTAKT
   ========================================================= */

.contact-panel {
    padding: 45px;

    text-align: center;

    background:
        linear-gradient(
            rgba(229,214,184,.07),
            rgba(229,214,184,.025)
        );
}


.social-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


.contact-note {
    margin-top: 30px;

    font-family:
        "Special Elite",
        monospace;

    color: var(--muted);
}


.contact-note a {
    color: #c3a36a;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 50px 20px;

    text-align: center;

    background:
        #0b0907;

    border-top:
        1px solid var(--gold);

    color: #837660;

    font-family:
        "Special Elite",
        monospace;

    font-size: .7rem;
}


footer a {
    display: inline-block;

    margin: 0 10px;

    color: #a18e70;
}


/* =========================================================
   RESPONSIVE / MOBILE
   ========================================================= */

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    /* Desktop-Navigation ausblenden */
    .navbar {
        display: none;
    }

    /* Hamburger anzeigen */
    .hamburger {
        display: block;

        position: fixed;
        top: 16px;
        right: 16px;

        width: 52px;
        height: 52px;

        padding: 11px;

        background:
            linear-gradient(
                145deg,
                #211812,
                #0d0a08
            );

        border: 1px solid var(--gold);

        box-shadow:
            0 5px 18px rgba(0,0,0,.6);

        cursor: pointer;
    }

    .hamburger span {
        display: block;

        width: 100%;
        height: 3px;

        margin: 6px 0;

        background: var(--paper-light);
    }


    /* -----------------------------------------------------
       MOBILES MENÜ
       ----------------------------------------------------- */

    .menu-overlay {
        display: none;

        position: fixed;

        inset: 0;

        z-index: 1000;

        overflow-y: auto;

        padding:
            90px
            25px
            40px;

        background:
            radial-gradient(
                circle at center,
                #292017 0%,
                #15100c 55%,
                #090705 100%
            );
    }

    .menu-overlay.active {
        display: block;
    }

    .menu-overlay::before {
        content: "SECRETUM VETUS";

        display: block;

        margin-bottom: 30px;

        text-align: center;

        font-family:
            "Special Elite",
            monospace;

        font-size: .9rem;

        letter-spacing: 3px;

        color: var(--gold);
    }

    .menu-overlay a {
        display: block;

        width: 100%;

        padding: 17px 12px;

        margin: 0;

        border-bottom:
            1px solid
            rgba(200,181,143,.25);

        font-family:
            "Cormorant Garamond",
            Georgia,
            serif;

        font-size: 1.35rem;

        font-weight: 600;

        line-height: 1.3;

        text-align: center;

        color: var(--paper-light);
    }

    .menu-overlay a:first-of-type {
        border-top:
            1px solid
            rgba(200,181,143,.25);
    }

    .menu-overlay a:active,
    .menu-overlay a:hover {
        background:
            rgba(109,31,34,.45);

        color: #fff0cc;
    }


    /* -----------------------------------------------------
       ALLGEMEINE SECTIONS
       ----------------------------------------------------- */

    section {
        width:
            calc(100% - 36px);

        padding:
            70px 0;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        min-height: 680px;

        padding:
            100px 30px
            80px;
    }

    .hero::before {
        inset: 18px;
    }

    .hero-content {
        width: 100%;
        max-width: 700px;
    }

    .hero-badge {
        font-size: .78rem;

        line-height: 1.5;

        padding:
            8px 14px;

        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size:
            clamp(3rem, 10vw, 5rem);

        letter-spacing: 3px;

        line-height: 1.05;
    }

    .hero h1::after {
        margin-top: 18px;

        font-size: .7rem;

        letter-spacing: 3px;
    }

    .hero p {
        margin:
            30px auto;

        font-size: 1.3rem;

        line-height: 1.65;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .hero-actions {
        flex-direction: column;

        width: 100%;

        max-width: 400px;

        margin:
            30px auto 0;

        gap: 12px;
    }

    .btn {
        width: 100%;

        min-height: 52px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding:
            13px 20px;

        font-size: .9rem;

        letter-spacing: 1px;

        text-align: center;
    }


    /* -----------------------------------------------------
       ÜBERSCHRIFTEN
       ----------------------------------------------------- */

    .section-head {
        margin-bottom: 35px;
    }

    .section-head h2 {
        font-size:
            clamp(2rem, 7vw, 3rem);

        line-height: 1.2;

        letter-spacing: 1px;
    }

    .section-head p {
        font-size: 1.2rem;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       ÜBER UNS
       ----------------------------------------------------- */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .intro-copy {
        padding: 30px;
    }

    .intro-copy h3 {
        font-size: 1.6rem;
    }

    .intro-copy p {
        font-size: 1.05rem;

        line-height: 1.75;
    }

    .intro-side {
        padding: 25px;
    }


    /* -----------------------------------------------------
       TEAMFOTO
       ----------------------------------------------------- */

    .poster {
        width: 100%;

        max-width: 600px;

        padding: 10px;
    }

    .poster img {
        aspect-ratio: 4 / 3;
    }


    /* -----------------------------------------------------
       CHECKLIST
       ----------------------------------------------------- */

    .checklist li {
        padding-left: 32px;

        margin:
            17px 0;

        font-size: 1.05rem;

        line-height: 1.65;
    }


    /* -----------------------------------------------------
       STATISTIKEN
       ----------------------------------------------------- */

    .stats {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

    .stat {
        padding:
            25px 15px;
    }

    .stat strong {
        font-size: 2rem;
    }

    .stat span {
        font-size: .82rem;

        line-height: 1.5;
    }


    /* -----------------------------------------------------
       FOLGEN
       ----------------------------------------------------- */

    .spotify-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .spotify-grid iframe {
        width: 100%;

        min-height: 380px;
    }

    .spotify-grid p {
        min-height: 160px;

        padding: 25px;

        font-size: 1.2rem;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       FEATURES
       ----------------------------------------------------- */

    .content-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .feature-box {
        padding: 28px;

        border-left-width: 4px;
    }

    .feature-box h3 {
        font-size: 1.45rem;
    }

    .feature-box p {
        font-size: 1.05rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       KONTAKT
       ----------------------------------------------------- */

    .contact-panel {
        padding: 35px 25px;
    }

    .social-links {
        flex-direction: column;

        width: 100%;

        max-width: 400px;

        margin: auto;
    }

    .contact-note {
        font-size: .9rem;

        line-height: 1.7;

        word-break: break-word;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    footer {
        padding:
            40px 20px;

        font-size: .8rem;

        line-height: 1.7;
    }

    footer a {
        display: block;

        margin: 12px 0;
    }
}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 17px;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       SECTIONS
       ----------------------------------------------------- */

    section {
        width:
            calc(100% - 28px);

        padding:
            58px 0;
    }


    /* -----------------------------------------------------
       HAMBURGER
       ----------------------------------------------------- */

    .hamburger {
        top: 12px;
        right: 12px;

        width: 50px;
        height: 50px;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        min-height: 650px;

        padding:
            100px 22px
            75px;
    }

    .hero::before {
        inset: 14px;
    }

    .hero-badge {
        max-width: 90%;

        font-size: .72rem;

        letter-spacing: 1px;

        padding:
            7px 10px;
    }

    .hero h1 {
        font-size:
            clamp(2.7rem, 13vw, 4rem);

        letter-spacing: 2px;
    }

    .hero h1::after {
        margin-top: 16px;

        font-size: .62rem;

        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.15rem;

        line-height: 1.7;

        margin:
            25px auto;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .btn {
        min-height: 54px;

        padding:
            14px 18px;

        font-size: .85rem;
    }


    /* -----------------------------------------------------
       ÜBERSCHRIFTEN
       ----------------------------------------------------- */

    .section-head h2 {
        font-size: 2rem;

        line-height: 1.25;

        letter-spacing: .5px;
    }

    .section-head h2::before {
        content: "— ";

        color: var(--gold);
    }

    .section-head p {
        font-size: 1.08rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       KARTE
       ----------------------------------------------------- */

    .card {
        box-shadow:
            0 10px 25px rgba(0,0,0,.4);
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .intro-copy {
        padding: 25px 22px;
    }

    .intro-copy h3 {
        font-size: 1.5rem;

        line-height: 1.3;
    }

    .intro-copy p {
        font-size: 1rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       TEAMFOTO
       ----------------------------------------------------- */

    .intro-side {
        padding: 18px;
    }

    .poster {
        padding: 8px;

        box-shadow:
            0 0 0 3px #211c17,
            0 0 0 5px #b4975a,
            0 12px 25px rgba(0,0,0,.6);
    }

    .poster::before {
        inset: 4px;
    }

    .poster::after {
        margin-top: 9px;

        font-size: .65rem;

        letter-spacing: 2px;
    }


    /* -----------------------------------------------------
       CHECKLIST
       ----------------------------------------------------- */

    .checklist li {
        padding-left: 28px;

        font-size: 1rem;

        line-height: 1.65;
    }


    /* -----------------------------------------------------
       STATISTIKEN
       ----------------------------------------------------- */

    .stats {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .stat {
        padding:
            25px 20px;
    }

    .stat strong {
        font-size: 2.1rem;
    }

    .stat span {
        font-size: .82rem;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       SPOTIFY
       ----------------------------------------------------- */

    .spotify-grid iframe {
        min-height: 360px;
    }

    .spotify-grid p {
        min-height: 140px;

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------
       FEATURES
       ----------------------------------------------------- */

    .feature-box {
        padding:
            25px 22px;
    }

    .feature-box h3 {
        font-size: 1.35rem;
    }

    .feature-box p {
        font-size: 1rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       KONTAKT
       ----------------------------------------------------- */

    .contact-panel {
        padding:
            30px 18px;
    }

    .contact-note {
        font-size: .85rem;
    }
}


/* =========================================================
   SEHR KLEINE HANDYS
   ========================================================= */

@media (max-width: 380px) {

    body {
        font-size: 16px;
    }

    .hero {
        padding:
            95px 18px
            65px;
    }

    .hero h1 {
        font-size: 2.45rem;

        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section-head h2 {
        font-size: 1.75rem;
    }

    .section-head p {
        font-size: 1rem;
    }

    .intro-copy {
        padding: 22px 18px;
    }

    .btn {
        min-height: 52px;

        font-size: .8rem;
    }
}