:root {
    --bg: #f2eee6;
    --bg-soft: #f8f5ef;
    --ink: #1f2b36;
    --ink-soft: #4c5a68;
    --line: #d8cfbf;
    --brand: #8f6c43;
    --brand-soft: #b08a5f;
    --deep: #1f2e3d;
    --deep-soft: #2d3e4f;
    --light: #ffffff;
    --light-ink: #f6f3ed;
    --ok: #245f47;
    --shadow-sm: 0 12px 30px rgba(30, 40, 50, 0.08);
    --shadow-md: 0 20px 44px rgba(30, 40, 50, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --max-width: 1220px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: "Avenir Next", "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
}

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

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

.container {
    width: min(var(--max-width), calc(100% - 2.6rem));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 10px;
    background: var(--deep);
    color: var(--light-ink);
    padding: 0.58rem 0.95rem;
    border-radius: 999px;
    z-index: 1000;
}

.skip-link:focus {
    left: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(242, 238, 230, 0.92);
    border-bottom: 1px solid rgba(31, 43, 54, 0.08);
}

.top-ribbon {
    background: linear-gradient(96deg, #1f2e3d 0%, #2f4155 58%, #5f4b33 100%);
    color: var(--light-ink);
    font-size: 0.84rem;
}

.ribbon-content {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-main {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 0.16rem;
}

.brand-copy strong {
    font-size: 1.04rem;
    color: #1e2a35;
}

.brand-copy span {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.74rem;
    color: #5a6774;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(31, 43, 54, 0.24);
    border-radius: 999px;
    background: var(--light);
    color: var(--ink);
    font-weight: 700;
    padding: 0.55rem 0.98rem;
    cursor: pointer;
}

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

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.site-nav a {
    font-size: 0.89rem;
    font-weight: 650;
    padding: 0.35rem 0.24rem;
    border-bottom: 2px solid transparent;
    color: #2f3b48;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--brand);
    border-color: var(--brand);
}

.nav-cta {
    border: 1px solid rgba(143, 108, 67, 0.45);
    color: #563f21;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.58rem 0.96rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
    background: var(--brand);
    color: var(--light);
}

.section {
    padding: clamp(4.2rem, 6vw, 6.9rem) 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.76rem;
    font-weight: 750;
    color: var(--brand);
    margin-bottom: 0.82rem;
}

h1,
h2,
h3 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    line-height: 1.15;
}

.section-header {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: clamp(1.95rem, 3.3vw, 2.85rem);
    color: #1f2b36;
    margin-bottom: 0.82rem;
    position: relative;
    padding-bottom: 0.74rem;
}

.section-header h2::after {
    content: "";
    width: 86px;
    height: 3px;
    border-radius: 999px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--brand) 0%, rgba(143, 108, 67, 0.2) 100%);
}

.hero {
    padding-top: clamp(3.4rem, 5vw, 5.6rem);
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(1.6rem, 3.5vw, 3.2rem);
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.9rem);
    margin-bottom: 1.1rem;
    color: #1e2933;
}

.hero-copy p {
    max-width: 58ch;
    font-size: 1.01rem;
    color: #3f4d5b;
    margin-bottom: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 0.82rem;
    flex-wrap: wrap;
    margin-bottom: 1.65rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.91rem;
    font-weight: 700;
    padding: 0.78rem 1.22rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--brand);
    color: var(--light);
    border: 1px solid transparent;
    box-shadow: 0 10px 26px rgba(143, 108, 67, 0.3);
}

.button-primary:hover {
    background: var(--brand-soft);
}

.button-ghost {
    border: 1px solid rgba(31, 43, 54, 0.19);
    background: var(--light);
    color: #2f3d4b;
}

.button-ghost:hover {
    box-shadow: var(--shadow-sm);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.hero-metrics div {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(31, 43, 54, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.86rem 0.74rem;
    box-shadow: var(--shadow-sm);
}

.hero-metrics dt {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 1.8rem;
    line-height: 1;
    color: #21303d;
    margin-bottom: 0.32rem;
}

.hero-metrics dd {
    font-size: 0.82rem;
    color: #566372;
}

.hero-collage {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    grid-template-areas:
        "main side"
        "wide side";
    gap: 0.74rem;
}

.hero-collage img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.hero-main {
    grid-area: main;
    width: 100%;
    height: 390px;
}

.hero-side {
    grid-area: side;
    width: 100%;
    height: 100%;
    min-height: 560px;
}

.hero-wide {
    grid-area: wide;
    width: 100%;
    height: 160px;
}

.narrative {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(248, 245, 239, 0) 100%);
}

.narrative-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1rem, 3vw, 2.4rem);
    align-items: start;
}

.narrative-copy h2 {
    font-size: clamp(1.86rem, 2.8vw, 2.65rem);
    margin-bottom: 1rem;
    color: #202d38;
}

.narrative-copy p {
    color: #4b5968;
    margin-bottom: 0.88rem;
}

.narrative-feature {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 0.9rem;
    border: 1px solid rgba(31, 43, 54, 0.08);
    box-shadow: var(--shadow-md);
}

.narrative-feature img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
}

.narrative-feature figcaption {
    margin-top: 0.72rem;
    font-size: 0.85rem;
    color: #566475;
}

.heritage {
    background: var(--bg-soft);
    border-top: 1px solid rgba(31, 43, 54, 0.08);
    border-bottom: 1px solid rgba(31, 43, 54, 0.08);
}

.heritage-timeline {
    list-style: none;
    display: grid;
    gap: 1rem;
    position: relative;
}

.heritage-timeline::before {
    content: "";
    position: absolute;
    top: 0.3rem;
    bottom: 0.3rem;
    left: 78px;
    width: 2px;
    background: linear-gradient(180deg, rgba(143, 108, 67, 0.45) 0%, rgba(143, 108, 67, 0.1) 100%);
}

.heritage-timeline li {
    display: grid;
    grid-template-columns: 88px 1fr 270px;
    align-items: center;
    gap: 1rem;
    background: var(--light);
    border: 1px solid rgba(31, 43, 54, 0.09);
    border-radius: var(--radius-md);
    padding: 0.86rem;
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    justify-self: start;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    color: var(--brand);
    position: relative;
    text-transform: uppercase;
}

.timeline-year::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    border: 2px solid var(--bg-soft);
}

.timeline-body h3 {
    font-size: 1.08rem;
    margin-bottom: 0.36rem;
    color: #21303d;
}

.timeline-body p {
    color: #51606f;
    font-size: 0.9rem;
}

.heritage-timeline img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.services {
    background: linear-gradient(180deg, rgba(248, 245, 239, 0) 0%, rgba(233, 224, 210, 0.38) 100%);
}

.service-rows {
    display: grid;
    gap: 0.95rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.service-row img {
    width: 100%;
    min-height: 270px;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.service-row > div {
    background: var(--light);
    border: 1px solid rgba(31, 43, 54, 0.09);
    border-radius: var(--radius-md);
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.service-row h3 {
    font-size: clamp(1.18rem, 2vw, 1.52rem);
    margin-bottom: 0.5rem;
    color: #243340;
}

.service-row p {
    color: #4f5d6b;
    font-size: 0.95rem;
}

.service-row.reverse img {
    order: 2;
}

.service-row.reverse > div {
    order: 1;
}

.process {
    background: linear-gradient(150deg, var(--deep) 0%, var(--deep-soft) 100%);
    color: var(--light-ink);
}

.process .eyebrow,
.process .section-header h2 {
    color: var(--light-ink);
}

.process .section-header h2::after {
    background: linear-gradient(90deg, #d8bc96 0%, rgba(216, 188, 150, 0.2) 100%);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(230px, 1fr));
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.process-track::-webkit-scrollbar {
    height: 8px;
}

.process-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.process-stop {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.82rem;
    min-height: 100%;
}

.process-stop span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(217, 189, 148, 0.18);
    color: #efd9bb;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.process-stop img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 0.64rem;
}

.process-stop h3 {
    font-size: 1rem;
    margin-bottom: 0.28rem;
}

.process-stop p {
    color: rgba(246, 243, 237, 0.84);
    font-size: 0.86rem;
}

.products {
    background: linear-gradient(180deg, rgba(248, 245, 239, 0.5) 0%, rgba(242, 238, 230, 1) 100%);
}

.products-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
    align-items: start;
}

.products-copy {
    background: var(--light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 43, 54, 0.08);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.products-copy h2 {
    font-size: clamp(1.9rem, 2.9vw, 2.75rem);
    margin-bottom: 0.9rem;
    color: #22303d;
}

.products-copy p {
    color: #4f5d6b;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}

.products-copy ul {
    padding-left: 1.2rem;
}

.products-copy li {
    margin-bottom: 0.48rem;
    color: #4f5d6b;
    font-size: 0.91rem;
}

.products-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
}

.products-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.locations {
    background: var(--bg-soft);
}

.locations-layout {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 1rem;
    align-items: start;
}

.locations-copy h2 {
    font-size: clamp(1.9rem, 3.1vw, 2.65rem);
    margin-bottom: 1rem;
    color: #202d38;
}

.location-lines {
    display: grid;
    gap: 0.7rem;
}

.location-lines article {
    border-left: 3px solid rgba(143, 108, 67, 0.4);
    padding: 0.34rem 0 0.34rem 0.85rem;
}

.location-lines h3 {
    font-size: 1.02rem;
    margin-bottom: 0.28rem;
    color: #243340;
}

.location-lines p {
    font-size: 0.88rem;
    color: #536171;
}

.locations-photo {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 0.86rem;
    border: 1px solid rgba(31, 43, 54, 0.08);
    box-shadow: var(--shadow-md);
}

.locations-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
}

.team {
    background: linear-gradient(180deg, rgba(242, 238, 230, 0) 0%, rgba(230, 221, 206, 0.35) 100%);
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.team-photo {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 0.84rem;
    border: 1px solid rgba(31, 43, 54, 0.08);
    box-shadow: var(--shadow-md);
}

.team-photo img {
    width: 100%;
    min-height: 370px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
}

.team-copy h2 {
    font-size: clamp(1.9rem, 3.1vw, 2.7rem);
    margin-bottom: 0.86rem;
    color: #212f3a;
}

.team-copy p {
    color: #4f5d6b;
    margin-bottom: 0.74rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.testimonials blockquote {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 43, 54, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.88rem;
    box-shadow: var(--shadow-sm);
}

.testimonials p {
    font-size: 0.9rem;
    color: #465462;
    margin-bottom: 0.42rem;
}

.testimonials cite {
    font-size: 0.8rem;
    font-style: normal;
    color: var(--brand);
    font-weight: 700;
}

.contact {
    background: var(--deep);
    color: var(--light-ink);
}

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

.contact-copy h2 {
    font-size: clamp(1.95rem, 3.2vw, 2.74rem);
    margin-bottom: 0.8rem;
}

.contact-copy p {
    color: rgba(246, 243, 237, 0.86);
    margin-bottom: 0.8rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 1.05rem;
    display: grid;
    gap: 0.48rem;
}

.contact-form h3 {
    font-size: 1.02rem;
    margin-bottom: 0.18rem;
}

.contact-form label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(246, 243, 237, 0.9);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2b36;
    font-family: inherit;
    font-size: 0.93rem;
    padding: 0.68rem 0.76rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 125px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-soft);
    box-shadow: 0 0 0 3px rgba(176, 138, 95, 0.24);
}

.form-status {
    min-height: 1.2rem;
    font-size: 0.83rem;
}

.form-status.success {
    color: #95e4c0;
}

.form-status.error {
    color: #ffc3c3;
}

.site-footer {
    background: linear-gradient(165deg, #18232d 0%, #1f2f3c 56%, #3f3323 100%);
    color: var(--light-ink);
    padding-top: 2.3rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 0.9rem;
}

.footer-layout h3,
.footer-layout h4 {
    margin-bottom: 0.52rem;
}

.footer-layout h3 {
    font-size: 1.06rem;
}

.footer-layout h4 {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d7b68f;
}

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

.footer-layout p,
.footer-layout li,
.footer-layout a {
    color: rgba(246, 243, 237, 0.8);
    font-size: 0.84rem;
    margin-bottom: 0.34rem;
}

.footer-layout a:hover {
    color: #f5debf;
}

.footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 0 1.4rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-bottom p {
    color: rgba(246, 243, 237, 0.74);
    font-size: 0.78rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1160px) {
    .hero-layout,
    .narrative-layout,
    .products-layout,
    .locations-layout,
    .team-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-side {
        min-height: 0;
        height: 390px;
    }

    .hero-main {
        height: 390px;
    }

    .hero-wide {
        height: 200px;
    }

    .locations-photo img,
    .team-photo img {
        min-height: 320px;
    }

    .footer-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .ribbon-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0.34rem 0;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        background: var(--light);
        border: 1px solid rgba(31, 43, 54, 0.12);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        padding: 0.82rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.72rem;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.42rem;
    }

    .site-nav a {
        display: block;
        padding: 0.48rem 0.3rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .heritage-timeline::before {
        left: 68px;
    }

    .heritage-timeline li {
        grid-template-columns: 78px 1fr;
    }

    .heritage-timeline img {
        grid-column: 2 / -1;
    }

    .timeline-year::after {
        right: -13px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row.reverse img,
    .service-row.reverse > div {
        order: initial;
    }

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

    .process-track {
        grid-template-columns: repeat(6, minmax(220px, 1fr));
    }
}

@media (max-width: 700px) {
    .container {
        width: min(var(--max-width), calc(100% - 1.5rem));
    }

    .header-main {
        min-height: 76px;
    }

    .brand-copy strong {
        font-size: 0.95rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-collage {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "side"
            "wide";
    }

    .hero-main,
    .hero-side,
    .hero-wide {
        height: 260px;
    }

    .products-gallery,
    .testimonials,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .heritage-timeline::before {
        display: none;
    }

    .heritage-timeline li {
        grid-template-columns: 1fr;
    }

    .timeline-year::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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