:root {
    --ink: #2b2b2b;
    --sage: #5e745f;
    --rust: #b45434;
    --alt-rust: #ce5932;
    --error: #ce3300;
    --ochre: #d9913a;
    --sand: #f4efe8;
    --stone: #e7e1d9;
    --ink-80: rgba(0, 0, 0, .80);
    --ink-60: rgba(0, 0, 0, .60);
    --radius: 12px;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

* {
    box-sizing: border-box;
}

.em {
    color: var(--rust);
    font-weight: 700;
}

.em2 {
    color: var(--rust);
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Nexa", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--sand);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--rust);
    text-decoration: none !important;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin: 0 0 .5rem;
}

h1 {
    font-weight: 800;
    letter-spacing: .02em;
}

h2 {
    font-weight: 800;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
}

h3 {
    font-weight: 700;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.narrow {
    width: min(860px, 92%);
}


.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: .5rem 1rem;
    background: #fff;
    border-radius: 8px;
}

.site-header .header-inner {
    min-height: 64px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid var(--stone);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .8rem 0;
}

.header-cta {
    margin-left: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: .06em;
}


.brand-text {
    font-size: 1rem;
}

.nav {
    margin-left: auto;
}

.nav-toggle {
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    display: none;
}

.nav-brand .brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    padding: .5rem .6rem;
    border-radius: 8px;
}

.nav a:hover {
    background: var(--stone);
    text-decoration: none;
}

.nav a.active {
    color: var(--ink);
    background: rgba(217, 145, 58, .14);
    text-decoration: none;
    border-radius: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: var(--radius);
    padding: .8rem 1.1rem;
    border: 2px solid transparent;
    font-weight: 700;
}

.btn--small {
    padding: .5rem .7rem;
    font-weight: 700;
}

.btn--primary {
    background: var(--rust);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    opacity: .95;
    text-decoration: none;
}

.btn--ghost {
    border-color: var(--rust);
    color: var(--rust);
    background: transparent;
}

.btn--ghost:hover {
    background: #fff;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 8rem 0 4rem;
    padding: clamp(6rem, 10vw, 9rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 70vh;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45) 10%,
            /* darker at top */
            rgba(0, 0, 0, 0.15) 70%,
            /* softer in middle */
            rgba(0, 0, 0, 0.45) 100%
            /* darker at bottom */
        );
    z-index: 1;
}

#hero h1,
#hero p,
.hero-icons {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#hero h1 {
    margin-bottom: -10px;
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw + 1rem, 4rem);

}

.hero-tagline {
    font-size: clamp(1.1rem, 1vw + .8rem, 1.6rem);
    margin: .4rem 0 1rem;
    font-weight: 700;
}

.hero-sub {
    color: var(--ink-60);
    margin-top: .3rem;
    margin-bottom: 1.6rem;
}

.hero-ctas {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-icons {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(231, 225, 217, .5);
}

.hero-icons i {
    font-size: 1.25rem;
}

.hero-icons--labeled {
    gap: 1.6rem;
}

.hero-icons--labeled div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.2;
    padding: .25rem .5rem;
    border-radius: 10px;
    cursor: default;
    transition: color .2s ease, color .2s ease;
}

.hero-icons--labeled div:hover {
    color: var(--alt-rust);
}

.hero-icons--labeled i {
    font-size: 1.25rem;
    margin-bottom: .35rem;
}

.about-section {
    background: #fff;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1rem, 4vw, 2rem);
    align-items: start;
}

.about-copy h2 {
    margin-bottom: .6rem;
}

.about-divider {
    height: 1px;
    background: var(--stone);
    margin: 1.2rem 0 .9rem;
    position: relative;
}

.em {
    color: var(--rust);
    font-weight: 700;
}

.about-photo {
    margin: 0;
    align-self: center;
    top: 96px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: #fff;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
}

.card-h3 {
    text-align: center;
}

.card {
    cursor: default;
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 1.6rem;
    color: var(--sage);
    margin-bottom: .6rem;
    text-align: center;
}

.checklist {
    padding-top: 0.5rem !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    margin: .35rem 0;
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--sage);
    margin-right: .5rem;
}


.quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

blockquote {
    margin: 0;
    padding: 0.5rem 1rem 1rem 1rem;
    background: var(--sand);
    border-left: 6px solid var(--sage);
    border-radius: var(--radius);
    cursor: default;
    transition: border-color 0.3s ease, border-left-width 0.3s ease;
}

blockquote:hover {
    border-left: 6px solid var(--rust);
}

cite {
    display: block;
    margin-top: .6rem;
    font-style: normal;
    opacity: .8;
    font-weight: bold;
    color: var(--rust);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.gallery-item a {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: transform .35s ease;
}

.gallery-item a:hover img {
    transform: scale(1.03);
}

.gallery-item figcaption {
    text-align: center;
    padding: .55rem .75rem;
    font-weight: 700;
    border-top: 1px solid var(--stone);
}

.sublead {
    opacity: .85;
    margin-bottom: .5rem;
}

.rep-note {

    font-size: .8rem;
    margin-top: 2rem;
    opacity: .8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.contact-form {
    background: var(--rust);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    color: white;
}

.contact-form-btn {
    color: var(--rust);
    background-color: white;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin: .4rem 0 .25rem;
    padding-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .8rem;
    border-radius: 10px;
    border: 1px solid var(--stone);
    background: #fff;
}

.contact-form button {
    margin-top: .6rem;
    cursor: pointer;
}

.contact-form textarea {
  resize: none;       
  min-height: 150px;  
  max-height: 300px; 
}

.site-footer {
    background: #111;
    color: #f4f4f4;
    padding: 1.25rem 0;
    border-top: 1px solid #1d1d1d;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.foot-brand .brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.site-footer small {
    flex-basis: 100%;
    text-align: center;
    margin-top: .25rem;
    font-size: .9rem;
    opacity: .8;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f4f4f4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .5rem;
    border-radius: 6px;
    transition: background-color .2s ease, color .2s ease;
}

.footer-links a:hover {
    color: var(--rust);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.bounce-hover {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bounce-hover:hover,
.bounce-hover:focus {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.disclaimer {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

.form-feedback {
  display: none;
  margin: 0.75rem 0;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background: var(--sage);
  color: white;
}

.form-feedback.error {
  display: block;
  background: var(--error);
  color: white;
}


@media (max-width: 980px) {

    .checklist {
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        order: 2;
        height: auto;
        justify-self: center;
        max-width: 520px;
    }

    .about-photo img {
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .about-copy {
        order: 1;
    }

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

    .quotes {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        right: 1rem;
        top: 64px;
        background: #fff;
        border: 1px solid var(--stone);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: .4rem;
        display: none;
    }

    .nav.open {
        display: block;
    }

    .nav ul {
        flex-direction: column;
    }

    .nav a {
        display: block;
        padding: .7rem .9rem;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 520px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .footer-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        order: 2;
        max-width: 420px;
        height: auto;
        justify-self: center;
    }

    .about-photo img {
        height: auto;
    }

    .about-copy {
        order: 1;
    }
}