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

:root {
    --paper:    #efe4cc;
    --paper-2:  #f6ecd6;
    --cream:    #faf4e6;
    --ink:      #241a0d;
    --ink-soft: #3b2c1a;
    --soil:     #5a3d22;
    --sage:     #4e6533;
    --harvest:  #b8823c;
    --rust:     #8b3a1e;
    --rule:     rgba(36, 26, 13, 0.18);

    --f-display: 'Fraunces', ui-serif, Georgia, serif;
    --f-body:    'EB Garamond', ui-serif, Georgia, serif;
    --f-mono:    'DM Mono', ui-monospace, 'Menlo', monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    font-size: 1.125rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Paper grain */
body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.12  0 0 0 0 0.06  0 0 0 0.09 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.mono {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
}

.rule {
    display: inline-block;
    width: 2.25rem;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin: 0 0.75rem;
    opacity: 0.6;
}

/* Top bar */
.topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    color: var(--cream);
}
.topbar.topbar--dark { color: var(--ink); position: relative; }
.topbar.topbar--dark .phone { color: var(--ink); border-bottom-color: rgba(36,26,13,0.35); }
.topbar.topbar--dark .phone:hover { border-color: var(--ink); }
.topbar.topbar--dark a { color: var(--ink); }

.wordmark {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
}

.topbar .phone {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(250, 244, 230, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}
.topbar .phone:hover { border-color: var(--cream); }

/* Hero (home) */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 7rem 2rem 5rem;
    color: var(--cream);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 12, 4, 0.35) 0%, rgba(36, 26, 13, 0.25) 40%, rgba(36, 26, 13, 0.75) 100%),
        url('../SQalfalfa.jpg') center 45% / cover no-repeat;
    z-index: -1;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 1.1s cubic-bezier(.2,.7,.2,1) 0.2s forwards;
}
.hero-label .dot {
    width: 6px; height: 6px;
    background: var(--harvest);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 420;
    font-size: clamp(3.5rem, 13vw, 11rem);
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin: 1.5rem 0 1.75rem;
    max-width: 14ch;
    opacity: 0;
    animation: rise 1.3s cubic-bezier(.2,.7,.2,1) 0.35s forwards;
}
.hero-title em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 380;
    color: var(--harvest);
}

.hero-tag {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 24, "wght" 380;
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    max-width: 32ch;
    opacity: 0;
    animation: rise 1.1s cubic-bezier(.2,.7,.2,1) 0.55s forwards;
}

.hero-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 3rem;
    opacity: 0;
    animation: rise 1.1s cubic-bezier(.2,.7,.2,1) 0.75s forwards;
}

.cta {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    background: transparent;
    border: 1px solid var(--cream);
    padding: 1.1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}
.cta::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--cream);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
    z-index: -1;
}
.cta:hover { color: var(--ink); }
.cta:hover::before { transform: translateY(0); }
.cta .arrow { transition: transform 0.35s ease; }
.cta:hover .arrow { transform: translateX(4px); }

.cta--dark {
    color: var(--ink);
    border-color: var(--ink);
}
.cta--dark::before { background: var(--ink); }
.cta--dark:hover { color: var(--cream); }

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: right;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}
.hero-meta .n {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.9;
}

/* Section chrome */
section { padding: 7rem 2rem; position: relative; }

.container {
    max-width: 72rem;
    margin: 0 auto;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--soil);
    margin-bottom: 2.25rem;
}
.kicker .no {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

h2 {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 380;
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 18ch;
}
h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360;
    color: var(--sage);
}

/* About */
.about { background: var(--paper-2); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.about-lede p {
    font-size: 1.22rem;
    max-width: 56ch;
    color: var(--ink-soft);
}
.about-lede p + p { margin-top: 1.25rem; }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--rule);
    padding-top: 2.5rem;
    margin-top: 3.5rem;
}
.stat .n {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 400;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1;
    color: var(--rust);
    display: block;
}
.stat .l {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soil);
    margin-top: 0.75rem;
    display: block;
}

/* Our Hay */
.our-hay { background: var(--cream); }
.our-hay .container.narrow {
    max-width: 48rem;
    text-align: left;
}
.our-hay .kicker { justify-content: flex-start; }
h2.centered {
    max-width: 24ch;
    margin-left: 0;
}
.our-hay-body {
    margin-top: 2.5rem;
    max-width: 60ch;
}
.our-hay-body p {
    font-size: 1.2rem;
    color: var(--ink-soft);
}
.our-hay-body p + p { margin-top: 1.5rem; }

.hay-features {
    list-style: none;
    margin-top: 3.5rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.hay-features li {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.hay-features .n {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 400;
    font-size: 1.5rem;
    color: var(--sage);
    line-height: 1;
}
.hay-features .l {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soil);
}

/* Field image */
.field-image {
    padding: 0;
    position: relative;
    background: var(--ink);
}
.field-image .frame {
    position: relative;
    width: 100%;
    aspect-ratio: 470 / 291;
    overflow: hidden;
}
.field-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
    transform: scale(1.04);
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.field-image:hover img { transform: scale(1); }

.field-caption {
    position: absolute;
    left: 2rem; right: 2rem; bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--cream);
    gap: 2rem;
    flex-wrap: wrap;
}
.field-caption .title {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 1.1rem;
    max-width: 36ch;
}
.field-caption .meta {
    font-family: var(--f-mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Story */
.story { background: var(--paper); }
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.story-body p {
    font-size: 1.2rem;
    max-width: 58ch;
    color: var(--ink-soft);
}
.story-body p + p { margin-top: 1.5rem; }
.story-body .dropcap::first-letter {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
    font-size: 5.5rem;
    line-height: 0.85;
    float: left;
    padding: 0.4rem 0.75rem 0 0;
    color: var(--rust);
}

.timeline {
    border-top: 1px solid var(--rule);
    padding-top: 2rem;
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.timeline .point { text-align: center; }
.timeline .year {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 90, "wght" 400;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--ink);
    display: block;
}
.timeline .place {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--soil);
    margin-top: 0.4rem;
    display: block;
}
.timeline .arrow {
    font-family: var(--f-mono);
    color: var(--harvest);
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

/* Where our hay goes (scroller) */
.where-goes {
    background: var(--paper-2);
    padding: 6rem 0 6rem;
    border-top: 1px solid var(--rule);
}
.where-goes .wg-head {
    padding: 0 2rem;
    max-width: 72rem;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}
.where-goes .wg-head .wg-title {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 380;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 24ch;
}
.where-goes .wg-head .wg-title em {
    font-style: italic;
    color: var(--sage);
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360;
}
.where-goes .wg-controls {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.wg-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--rule);
    background: transparent;
    color: var(--ink);
    font-family: var(--f-mono);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.wg-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.wg-btn[disabled] { opacity: 0.35; cursor: not-allowed; }
.wg-btn[disabled]:hover { background: transparent; color: var(--ink); border-color: var(--rule); }

.city-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 2rem 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.city-scroll::-webkit-scrollbar { display: none; }

.city-scroll .track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.city-tile {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    min-height: 16rem;
    background: var(--cream);
    border: 1px solid var(--rule);
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}
.city-tile:hover {
    transform: translateY(-3px);
    border-color: var(--harvest);
    background: var(--paper);
}
.city-tile .tile-meta {
    font-family: var(--f-mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--soil);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.city-tile .tile-name {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 400;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 1.2rem 0 0.3rem;
}
.city-tile .tile-state {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 1rem;
    color: var(--soil);
}
.city-tile .tile-fact {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-top: 1rem;
    max-width: 28ch;
}
.city-tile .tile-view {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--harvest);
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}
.city-tile:hover .tile-view { transform: translateX(4px); }

.wg-foot {
    padding: 2.5rem 2rem 0;
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.wg-foot .show-all {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: color 0.25s ease, border-color 0.25s ease;
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}
.wg-foot .show-all:hover { color: var(--rust); border-color: var(--rust); }

/* Contact */
.contact {
    background: var(--ink);
    color: var(--cream);
    text-align: left;
    overflow: hidden;
    position: relative;
}
.contact::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 20 L40 20 M20 0 L20 40' stroke='%23b8823c' stroke-width='0.4' stroke-opacity='0.08'/></svg>");
    pointer-events: none;
}

.contact .kicker { color: var(--harvest); }
.contact h2 { color: var(--cream); max-width: 20ch; }
.contact h2 em { color: var(--harvest); }

.contact-intro {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 1.25rem;
    max-width: 48ch;
    margin-top: 1.5rem;
    color: rgba(250, 244, 230, 0.8);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3.5rem;
    position: relative;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    text-decoration: none;
    color: var(--cream);
    background: rgba(250, 244, 230, 0.04);
    border: 1px solid rgba(250, 244, 230, 0.15);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(.2,.7,.2,1);
    position: relative;
}
.contact-card:hover {
    background: rgba(184, 130, 60, 0.12);
    border-color: var(--harvest);
    transform: translateY(-2px);
}
.contact-card .label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--harvest);
}
.contact-card .value {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 400;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.01em;
}
.contact-card .arrow {
    align-self: flex-end;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(250, 244, 230, 0.5);
    transition: color 0.3s ease, transform 0.35s ease;
}
.contact-card:hover .arrow { color: var(--harvest); transform: translateX(4px); }

.contact-foot {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 244, 230, 0.15);
}
.contact-foot .loc {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 1.1rem;
    color: var(--harvest);
}
.contact-foot .coords {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(250, 244, 230, 0.55);
}

/* Footer */
footer {
    background: #1a1208;
    color: rgba(250, 244, 230, 0.5);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
footer a {
    color: rgba(250, 244, 230, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(250, 244, 230, 0.2);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}
footer a:hover { color: var(--harvest); border-color: var(--harvest); }

/* ——— City page hero (shorter than homepage) ——— */
.city-hero {
    position: relative;
    min-height: 60vh;
    padding: 7rem 2rem 4rem;
    color: var(--cream);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--ink);
}
.city-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 12, 4, 0.55) 0%, rgba(36, 26, 13, 0.65) 40%, rgba(36, 26, 13, 0.85) 100%),
        url('../SQalfalfa.jpg') center 45% / cover no-repeat;
    z-index: 0;
    opacity: 0.7;
}
.city-hero > * { position: relative; z-index: 1; }

.back-link {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-link:hover { opacity: 1; transform: translateX(-3px); }

.city-hero .city-title {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 420;
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin: 2rem 0 0.75rem;
    max-width: 18ch;
}
.city-hero .city-title em {
    font-style: italic;
    color: var(--harvest);
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 380;
}
.city-hero .city-sub {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 44ch;
    margin-bottom: 1.5rem;
}
.city-hero .city-foot {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ——— City page sections ——— */
.city-sec {
    padding: 6rem 2rem;
}
.city-sec.bg-paper { background: var(--paper); }
.city-sec.bg-paper-2 { background: var(--paper-2); }
.city-sec.bg-cream { background: var(--cream); }

.city-sec .city-container {
    max-width: 60rem;
    margin: 0 auto;
}
.city-sec h3 {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 75, "wght" 380;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 22ch;
    margin-bottom: 2rem;
}
.city-sec h3 em {
    font-style: italic;
    color: var(--sage);
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360;
}
.city-sec p {
    font-size: 1.2rem;
    max-width: 60ch;
    color: var(--ink-soft);
}
.city-sec p + p { margin-top: 1.25rem; }

.city-sec.hook h3 em { color: var(--rust); }

/* Other cities block at bottom of city pages */
.other-cities {
    background: var(--ink);
    color: var(--cream);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.other-cities::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 20 L40 20 M20 0 L20 40' stroke='%23b8823c' stroke-width='0.4' stroke-opacity='0.08'/></svg>");
    pointer-events: none;
}
.other-cities .oc-wrap {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
}
.other-cities .oc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.other-cities h3 {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 380;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--cream);
    letter-spacing: -0.015em;
    max-width: 22ch;
    margin: 0;
}
.other-cities h3 em {
    font-style: italic;
    color: var(--harvest);
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360;
}
.other-cities .oc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    border-top: 1px solid rgba(250,244,230,0.15);
    padding-top: 1.75rem;
}
.other-cities .oc-list a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(250,244,230,0.1);
    color: var(--cream);
    text-decoration: none;
    font-family: var(--f-display);
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 1.1rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.other-cities .oc-list a:hover { color: var(--harvest); padding-left: 0.4rem; }
.other-cities .oc-list a .dist {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,244,230,0.5);
    align-self: center;
}
.other-cities .oc-all {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    margin-top: 2.25rem;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--harvest);
    text-decoration: none;
    border-bottom: 1px solid var(--harvest);
    padding-bottom: 2px;
    transition: color 0.25s ease, transform 0.25s ease;
}
.other-cities .oc-all:hover { transform: translateX(3px); }

/* City CTA strip (embedded on each city page) */
.city-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.city-cta::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 20 L40 20 M20 0 L20 40' stroke='%23b8823c' stroke-width='0.4' stroke-opacity='0.08'/></svg>");
    pointer-events: none;
}
.city-cta .cc-wrap { max-width: 60rem; margin: 0 auto; position: relative; }
.city-cta h3 {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 380;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--cream);
    letter-spacing: -0.015em;
    max-width: 22ch;
    margin-bottom: 1.25rem;
}
.city-cta h3 em { color: var(--harvest); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360; }
.city-cta p {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 1.2rem;
    color: rgba(250,244,230,0.8);
    max-width: 52ch;
    margin-bottom: 2.5rem;
}
.city-cta .contact-cards { margin-top: 0; }

/* ——— Cities index grid ——— */
.cities-index { background: var(--paper); padding: 6rem 2rem; }
.cities-index .ci-wrap { max-width: 72rem; margin: 0 auto; }
.cities-index h2 {
    font-family: var(--f-display);
    font-variation-settings: "opsz" 144, "SOFT" 70, "wght" 380;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    max-width: 22ch;
}
.cities-index .ci-sub {
    font-family: var(--f-display);
    font-style: italic;
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 1.25rem;
    max-width: 60ch;
    color: var(--ink-soft);
    margin-bottom: 3.5rem;
}
.cities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Animations */
@keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* Tablet */
@media (min-width: 720px) {
    .hero { padding: 8rem 3rem 4rem; }
    section { padding: 8rem 3rem; }

    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
        align-items: start;
    }
    .story-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
        align-items: start;
    }
    .contact-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .hay-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .field-caption { left: 3rem; right: 3rem; bottom: 2rem; }

    .city-scroll .track {
        grid-auto-columns: calc((100% - 2rem) / 3);
    }
    .city-hero { padding: 8rem 3rem 5rem; }
    .city-sec { padding: 7rem 3rem; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .city-cta { padding: 6rem 3rem; }
    .other-cities { padding: 6rem 3rem; }
}

/* Desktop */
@media (min-width: 1080px) {
    .hero { padding: 9rem 4rem 5rem; }
    section { padding: 9rem 4rem; }
    body { font-size: 1.1875rem; }

    .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
