/* ==========================================================================
   Sunrise Harbor Anesthesia, LLC
   Stylesheet — Calm Harbor brand system
   ========================================================================== */

/* Tokens
   ========================================================================== */

:root {
    --color-bg: #FFFFFF;
    --color-bg-warm: #FAF5EC;
    --color-sand: #FAEEDA;
    --color-sand-strong: #F4E4C5;
    --color-border: #E8E2D2;
    --color-border-soft: #EFE7D6;

    --color-navy: #042C53;
    --color-navy-soft: #0E3F6F;
    --color-text: #042C53;
    --color-text-muted: #475A77;
    --color-text-faint: #6B7C95;

    --color-teal-deep: #0F6E56;
    --color-teal: #1D9E75;
    --color-seafoam: #5DCAA5;
    --color-seafoam-soft: #C2EAD9;

    --color-gold: #FAC775;
    --color-gold-soft: #FCE0AB;
    --color-coral-soft: #F0997B;

    --shadow-soft: 0 1px 2px rgba(4, 44, 83, 0.04), 0 8px 24px rgba(4, 44, 83, 0.06);
    --shadow-lift: 0 2px 4px rgba(4, 44, 83, 0.05), 0 12px 32px rgba(4, 44, 83, 0.08);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --font-display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1180px;
    --container-narrow: 880px;
    --container-text: 720px;

    --space-section: clamp(4rem, 8vw, 7rem);
}

/* Reset & base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-teal-deep);
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Typography
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-navy);
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    line-height: 1.15;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.25;
}

h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.005em;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-teal-deep);
    margin-bottom: 1.25rem;
}

.lead {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 620px;
}

.serif-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

/* Layout primitives
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.container-text {
    max-width: var(--container-text);
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

.section {
    padding: var(--space-section) 0;
}

.section-tight {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
}

/* Site header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--color-border-soft);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.brand:hover {
    color: var(--color-navy);
}

.brand-mark {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
    background: var(--color-sand);
    color: var(--color-navy);
}

.site-nav a.is-current {
    color: var(--color-teal-deep);
}

.nav-cta {
    margin-left: 0.5rem;
    background: var(--color-navy);
    color: #fff !important;
    padding: 0.7rem 1.2rem !important;
}

.nav-cta:hover {
    background: var(--color-navy-soft) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.55rem 0.7rem;
    color: var(--color-navy);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--color-navy);
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 880px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border-soft);
        padding: 0.5rem 1.5rem 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .site-nav.is-open {
        max-height: 600px;
        padding: 0.5rem 1.5rem 1.5rem;
        box-shadow: var(--shadow-soft);
    }

    .site-nav a {
        padding: 0.85rem 0.5rem;
        border-bottom: 1px solid var(--color-border-soft);
        border-radius: 0;
    }

    .site-nav a:last-of-type {
        border-bottom: none;
    }

    .nav-cta {
        margin: 1rem 0 0 0;
        text-align: center;
        border-radius: var(--radius-md) !important;
    }
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    padding: 0.95rem 1.65rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-navy-soft);
    color: #fff;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: #fff;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Hero
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7.5rem);
    background: var(--color-bg);
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.hero-sand {
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: var(--color-sand);
    opacity: 0.85;
    top: -180px;
    right: -160px;
}

.hero-seafoam {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--color-seafoam);
    opacity: 0.32;
    top: -50px;
    right: -60px;
}

.hero-sun {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.95;
    top: 110px;
    right: 90px;
}

.hero-content {
    position: relative;
    max-width: 640px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    line-height: 1.55;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

@media (max-width: 720px) {
    .hero-sand {
        width: 380px;
        height: 380px;
        top: -140px;
        right: -150px;
    }

    .hero-seafoam {
        width: 220px;
        height: 220px;
    }

    .hero-sun {
        width: 90px;
        height: 90px;
        top: 60px;
        right: 30px;
    }
}

/* Generic page header (non-home pages)
   ========================================================================== */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: var(--color-bg-warm);
    border-bottom: 1px solid var(--color-border-soft);
}

.page-hero-decor {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.18;
    top: -120px;
    right: -100px;
    pointer-events: none;
}

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

.page-hero .lead {
    font-size: 1.15rem;
}

/* Service cards / capability grid
   ========================================================================== */

.grid {
    display: grid;
    gap: 1.25rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.85rem;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: var(--color-seafoam);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    color: var(--color-teal-deep);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* Capability list (anesthesia modalities)
   ========================================================================== */

.capability {
    display: flex;
    gap: 1.25rem;
    padding: 1.65rem 0;
    border-bottom: 1px solid var(--color-border-soft);
}

.capability:last-child {
    border-bottom: none;
}

.capability-mark {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-sand);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-display);
}

.capability-body h3 {
    font-size: 1.18rem;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-navy);
}

.capability-body p {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    margin-bottom: 0;
}

/* Feature row (3 columns of advantages)
   ========================================================================== */

.features {
    display: grid;
    gap: 2.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    font-family: var(--font-display);
    color: var(--color-navy);
}

.feature p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.feature-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-seafoam-soft);
    color: var(--color-teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Pull quote
   ========================================================================== */

.pull-quote {
    background: var(--color-sand);
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    text-align: center;
}

.pull-quote-inner {
    max-width: 760px;
    margin: 0 auto;
}

.pull-quote blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.4;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.pull-quote cite {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-teal-deep);
}

/* CTA strip
   ========================================================================== */

.cta-strip {
    background: var(--color-navy);
    color: #fff;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    text-align: center;
}

.cta-strip h2 {
    color: #fff;
    margin-bottom: 0.85rem;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-strip .btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.cta-strip .btn-primary:hover {
    background: var(--color-gold-soft);
    color: var(--color-navy);
}

/* About page specifics
   ========================================================================== */

.about-hero {
    background: var(--color-bg-warm);
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
}

@media (min-width: 880px) {
    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr) 360px;
    }
}

.about-portrait {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.about-portrait::before {
    content: "";
    position: absolute;
    inset: -20px -20px auto auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.6;
    z-index: -1;
}

.about-portrait img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border-soft);
}

.bio-section:last-child {
    border-bottom: none;
}

.bio-section h2 {
    font-size: 1.55rem;
    margin-bottom: 0.85rem;
}

.bio-section p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.credential-list {
    list-style: none;
    margin-top: 0.5rem;
}

.credential-list li {
    padding: 0.55rem 0;
    color: var(--color-text-muted);
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.98rem;
}

.credential-list li:last-child {
    border-bottom: none;
}

.credential-list strong {
    color: var(--color-navy);
    font-weight: 500;
}

.timeline-marker {
    color: var(--color-teal);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

/* Process steps (For Facility Partners)
   ========================================================================== */

.process {
    counter-reset: step;
    display: grid;
    gap: 1rem;
}

.process-step {
    counter-increment: step;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.85rem 1.85rem 1.85rem 4.75rem;
    position: relative;
    transition: border-color 0.2s ease;
}

.process-step::before {
    content: counter(step);
    position: absolute;
    left: 1.75rem;
    top: 1.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:hover {
    border-color: var(--color-seafoam);
}

.process-step h3 {
    font-size: 1.18rem;
    margin-bottom: 0.45rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* What we provide / what facility provides */

.split {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.split-card {
    border-radius: var(--radius-lg);
    padding: 2rem 1.85rem;
}

.split-card.is-primary {
    background: var(--color-navy);
    color: #fff;
}

.split-card.is-primary h3 {
    color: #fff;
}

.split-card.is-secondary {
    background: var(--color-sand);
    color: var(--color-navy);
}

.split-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    font-family: var(--font-display);
}

.split-list {
    list-style: none;
}

.split-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.98rem;
    line-height: 1.55;
}

.split-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.is-primary .split-list li {
    color: rgba(255, 255, 255, 0.88);
}

.is-primary .split-list li::before {
    background: var(--color-gold);
}

.is-secondary .split-list li {
    color: var(--color-navy);
}

.is-secondary .split-list li::before {
    background: var(--color-teal);
}

/* FAQ
   ========================================================================== */

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.35rem 0;
}

.faq-item h3 {
    font-size: 1.12rem;
    margin-bottom: 0.6rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-navy);
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* Contact form
   ========================================================================== */

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

@media (min-width: 880px) {
    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-teal-deep);
    margin-bottom: 0.35rem;
}

.contact-detail-value {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--color-navy);
}

.contact-detail-value a {
    color: var(--color-navy);
}

.contact-detail-value a:hover {
    color: var(--color-teal-deep);
}

.contact-form {
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form-row {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.1rem;
}

@media (min-width: 600px) {
    .form-row.is-double {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-navy);
    margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--color-navy);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit {
    margin-top: 0.6rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-faint);
    margin-top: 1rem;
}

/* Footer
   ========================================================================== */

.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-credential-line {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
    max-width: 760px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Utilities
   ========================================================================== */

.text-center { text-align: center; }
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-header.is-left {
    text-align: left;
    margin-left: 0;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: var(--color-border-soft);
    margin: 3rem 0;
    border: none;
}

.bg-warm { background: var(--color-bg-warm); }
.bg-sand { background: var(--color-sand); }

/* Reveal-on-scroll (progressive enhancement; CSS-only fallback shows all)
   ========================================================================== */

.js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Print
   ========================================================================== */

@media print {
    .site-header, .site-footer, .nav-toggle, .cta-strip, .contact-form {
        display: none;
    }

    body {
        font-size: 11pt;
    }
}
