:root {
    --black: #11100d;
    --cream: #f6f0e6;
    --off-white: #fffaf2;
    --saddle: #6b4423;
    --gold: #b89a5e;
    --charcoal: #2a2925;
    --line: rgba(17, 16, 13, 0.14);
    --serif: "Playfair Display", "Libre Baskerville", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--off-white);
    font-family: var(--body);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(107, 68, 35, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(17, 16, 13, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(17, 16, 13, 0.018) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    z-index: -1;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -10rem;
    z-index: 10;
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem 1rem;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(255, 250, 242, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 82px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    min-width: 230px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--cream);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy span,
.footer-brand h2 {
    display: block;
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.brand-copy small {
    display: block;
    margin-top: 6px;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--saddle);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.primary-nav a {
    border-bottom: 2px solid transparent;
    padding: 10px 11px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav a.active,
.primary-nav a:hover {
    border-color: var(--gold);
    color: var(--saddle);
}

.nav-toggle {
    display: none;
    appearance: none;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--black);
    min-height: 44px;
    padding: 8px 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--black);
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    max-height: 860px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--black);
}

.hero picture,
.hero > picture img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero > picture img {
    object-fit: cover;
    object-position: center 48%;
    filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(17, 16, 13, 0.90), rgba(17, 16, 13, 0.54) 48%, rgba(17, 16, 13, 0.20)), linear-gradient(0deg, rgba(17, 16, 13, 0.70), transparent 56%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 24px 78px;
    color: var(--off-white);
}

.hero-content h1,
.page-hero h1 {
    max-width: 850px;
    margin: 16px 0 20px;
    font-family: var(--serif);
    font-size: clamp(3.4rem, 7vw, 6.9rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.hero-content p,
.page-hero p {
    max-width: 680px;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.badge-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.badge-kicker::before,
.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 21px;
    border: 1px solid currentColor;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    cursor: pointer;
}

.button-primary {
    background: var(--black);
    color: var(--off-white);
    border-color: var(--black);
}

.hero .button-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.button-light {
    color: var(--off-white);
    border-color: rgba(255, 250, 242, 0.72);
}

.button:hover,
.text-link:hover,
.product-list a:hover {
    transform: translateY(-1px);
}

.intro-strip {
    max-width: 1180px;
    margin: -28px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 22px 70px rgba(17, 16, 13, 0.14);
}

.intro-strip div {
    padding: 26px 30px;
    border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
    border-right: 0;
}

.intro-strip span {
    display: block;
    color: var(--saddle);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.intro-strip strong {
    display: block;
    margin-top: 3px;
    font-family: var(--serif);
    font-size: 1.35rem;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 92px 24px;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 62px;
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.inquiry-band h2,
.form-intro h2,
.contact-card h2 {
    margin: 14px 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.form-intro p {
    color: rgba(17, 16, 13, 0.78);
    font-size: 1.04rem;
}

.text-link,
.product-list a {
    display: inline-flex;
    color: var(--saddle);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.image-panel,
.brand-specimen {
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 34px;
}

.image-panel img,
.brand-specimen img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.brand-specimen {
    position: relative;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(184, 154, 94, 0.12), transparent 34%),
        var(--cream);
}

.brand-specimen::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(107, 68, 35, 0.22);
    pointer-events: none;
}

.specimen-lines {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
    text-transform: uppercase;
}

.specimen-lines span {
    color: var(--saddle);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.specimen-lines strong {
    font-family: var(--serif);
    font-size: 1.35rem;
}

.image-panel.photo {
    padding: 0;
    background: var(--black);
}

.image-panel.photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.section-dark,
.cut-board {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
    background: var(--black);
    color: var(--off-white);
}

.section-dark .section-heading p,
.cut-board .section-heading p {
    color: rgba(255, 250, 242, 0.75);
}

.cut-board {
    position: relative;
    padding-top: 92px;
    padding-bottom: 92px;
    overflow: hidden;
}

.cut-board-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
    align-items: start;
    max-width: 1180px;
    margin-bottom: 34px;
}

.package-card {
    min-height: 300px;
    padding: 18px;
    border: 1px solid rgba(255, 250, 242, 0.18);
    background:
        radial-gradient(circle at 30% 25%, rgba(126, 24, 18, 0.72), transparent 36%),
        linear-gradient(145deg, #160807, #2c0e0a 44%, #080504);
    display: grid;
    align-items: end;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.package-window {
    min-height: 116px;
    border: 1px solid rgba(255, 250, 242, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(90deg, rgba(90, 15, 12, 0.55), rgba(35, 7, 5, 0.88));
}

.package-label {
    margin-top: 16px;
    padding: 20px 18px;
    color: var(--black);
    background: var(--cream);
    text-align: center;
    border: 1px solid rgba(17, 16, 13, 0.16);
}

.package-label img {
    width: 84px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.package-label span,
.package-label em {
    display: block;
    color: var(--saddle);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.package-label strong {
    display: block;
    margin: 4px 0;
    font-family: var(--serif);
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.cut-grid,
.values-grid,
.product-list,
.blog-grid,
.event-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cut-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.cut-grid article,
.values-grid article,
.product-list article,
.event-list article {
    border: 1px solid rgba(255, 250, 242, 0.16);
    padding: 26px;
    min-height: 250px;
}

.cut-board .cut-grid article {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.04), rgba(255, 250, 242, 0.015)),
        var(--black);
}

.cut-board .cut-grid article::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 110px;
    aspect-ratio: 1;
    border: 1px solid rgba(184, 154, 94, 0.26);
    border-radius: 50%;
}

.cut-grid article span,
.event-list span,
.blog-grid span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cut-grid h3,
.values-grid h3,
.product-list h3,
.event-list h2,
.blog-grid h2 {
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.1;
}

.cut-grid p {
    color: rgba(255, 250, 242, 0.72);
}

.why-section,
.farm-visual-section {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.86fr);
    gap: 58px;
    align-items: center;
}

.image-collage {
    display: grid;
    grid-template-columns: 1fr 0.56fr;
    gap: 16px;
    align-items: end;
}

.image-collage img {
    border: 1px solid var(--line);
    object-fit: cover;
}

.image-collage .wide {
    aspect-ratio: 4 / 5;
    width: 100%;
}

.image-collage .small {
    aspect-ratio: 3 / 4;
    width: 100%;
    margin-bottom: 38px;
}

.package-mockup {
    position: relative;
    min-height: 270px;
    border: 1px solid var(--line);
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(160, 33, 24, 0.80), transparent 34%),
        linear-gradient(145deg, #120604, #30100b 48%, #090504);
}

.package-mockup::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 250, 242, 0.14);
}

.package-mockup.large {
    width: 100%;
    min-height: 440px;
}

.package-meat {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.10), transparent 35%),
        repeating-linear-gradient(130deg, rgba(255, 230, 212, 0.08) 0 3px, transparent 3px 18px);
    opacity: 0.7;
}

.package-sticker {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 14px;
    background: var(--off-white);
    color: var(--black);
    border: 1px solid rgba(17, 16, 13, 0.18);
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.package-sticker img {
    width: 58px;
    margin: 0 auto 8px;
    border-radius: 50%;
}

.package-sticker strong,
.package-sticker span,
.package-sticker small {
    display: block;
    text-transform: uppercase;
}

.package-sticker strong {
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1;
}

.package-sticker span {
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.package-sticker small {
    margin-top: 7px;
    color: var(--saddle);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.farm-visual-section {
    position: relative;
}

.ranch-ledger {
    max-width: 1180px;
    margin: 0 auto 50px;
    padding: 0 24px 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ranch-ledger div {
    padding: 28px 28px 24px;
    border-right: 1px solid var(--line);
}

.ranch-ledger div:last-child {
    border-right: 0;
}

.ranch-ledger span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.ranch-ledger strong {
    display: block;
    margin: 6px 0 7px;
    font-family: var(--serif);
    font-size: 1.28rem;
}

.ranch-ledger p {
    margin: 0;
    color: rgba(17, 16, 13, 0.72);
    font-size: 0.94rem;
}

.check-list,
.steps {
    padding-left: 1.2rem;
    color: rgba(17, 16, 13, 0.8);
}

.inquiry-band {
    margin-bottom: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.inquiry-band div {
    max-width: 760px;
}

.page-hero {
    min-height: 490px;
    display: grid;
    align-items: center;
    color: var(--off-white);
    background: linear-gradient(90deg, rgba(17, 16, 13, 0.94), rgba(17, 16, 13, 0.7)), url("/assets/show-ring-side.jpg") center / cover;
    padding: 95px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.page-hero.compact {
    min-height: 360px;
    background: linear-gradient(135deg, var(--black), var(--charcoal));
}

.page-hero.beef-hero {
    background: linear-gradient(90deg, rgba(17, 16, 13, 0.94), rgba(17, 16, 13, 0.62)), url("/assets/show-ring-wagyu.jpg") center / cover;
}

.section-cream {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
    background: var(--cream);
}

.values-grid article,
.product-list article,
.event-list article {
    border-color: var(--line);
    background: rgba(246, 240, 230, 0.55);
}

.product-list article {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-panel {
    padding: 0;
    background: var(--black);
}

.order-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    margin: -12px 0 30px;
    align-items: stretch;
}

.order-map-photo,
.order-map-note {
    border: 1px solid var(--line);
    background: var(--cream);
}

.order-map-photo img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center 34%;
}

.order-map-note {
    padding: 26px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.order-map-note img {
    width: 136px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.order-map-note p {
    margin: 0;
    color: rgba(17, 16, 13, 0.76);
    font-weight: 700;
}

.form-section,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.request-form,
.contact-card {
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 30px;
}

.request-form {
    display: grid;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label,
legend {
    display: grid;
    gap: 7px;
    color: var(--charcoal);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

fieldset {
    border: 1px solid var(--line);
    padding: 18px;
    margin: 0;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 12px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.checkbox-grid input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--black);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(17, 16, 13, 0.26);
    background: var(--off-white);
    color: var(--black);
    font: inherit;
    min-height: 48px;
    padding: 12px 13px;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.hp-field {
    display: none;
}

.notice {
    padding: 13px 15px;
    border: 1px solid var(--gold);
    background: rgba(184, 154, 94, 0.16);
    color: var(--black);
    font-weight: 800;
}

.contact-card p {
    margin: 8px 0;
}

.fine-print {
    color: rgba(17, 16, 13, 0.68);
    font-size: 0.95rem;
}

.blog-grid article {
    border: 1px solid var(--line);
    background: var(--cream);
}

.blog-grid article img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.blog-package {
    aspect-ratio: 16 / 11;
    background: var(--black);
}

.blog-package .package-mockup {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
}

.blog-grid article div {
    padding: 24px;
}

.policy {
    max-width: 850px;
}

.policy h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-top: 34px;
}

.site-footer {
    color: var(--off-white);
    background: var(--black);
}

.footer-band {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 46px;
}

.footer-brand {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-badge {
    flex: 0 0 126px;
    width: 126px;
    height: 126px;
    border: 2px solid var(--off-white);
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand p,
.footer-links a,
.footer-bottom {
    color: rgba(255, 250, 242, 0.72);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.footer-links h3 {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    margin: 8px 0;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px 30px;
    border-top: 1px solid rgba(255, 250, 242, 0.16);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 72px;
    }

    .nav-toggle {
        display: inline-grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 8px;
    }

    .primary-nav {
        position: absolute;
        inset: 72px 16px auto 16px;
        display: none;
        padding: 16px;
        background: var(--off-white);
        border: 1px solid var(--line);
        box-shadow: 0 20px 50px rgba(17, 16, 13, 0.15);
    }

    .primary-nav.open {
        display: grid;
    }

    .primary-nav a {
        padding: 13px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(17, 16, 13, 0.92), rgba(17, 16, 13, 0.42));
    }

    .intro-strip,
    .cut-grid,
    .values-grid,
    .product-list,
    .blog-grid,
    .event-list {
        grid-template-columns: 1fr 1fr;
    }

    .two-column,
    .why-section,
    .farm-visual-section,
    .form-section,
    .contact-layout,
    .footer-band,
    .cut-board-inner,
    .order-map {
        grid-template-columns: 1fr;
    }

    .footer-band {
        gap: 26px;
    }
}

@media (max-width: 680px) {
    .brand {
        min-width: auto;
    }

    .brand-copy small {
        display: none;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .hero-content {
        padding-bottom: 54px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 3.05rem;
    }

    .intro-strip {
        margin-top: 0;
        grid-template-columns: 1fr;
    }

    .intro-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .cut-grid,
    .values-grid,
    .product-list,
    .blog-grid,
    .event-list,
    .ranch-ledger,
    .form-grid,
    .checkbox-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .ranch-ledger div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-left: 0;
        padding-right: 0;
    }

    .ranch-ledger div:last-child {
        border-bottom: 0;
    }

    .image-collage {
        grid-template-columns: 1fr;
    }

    .image-collage .small {
        margin-bottom: 0;
    }

    .inquiry-band,
    .footer-brand,
    .footer-bottom {
        display: grid;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .footer-bottom {
        justify-content: start;
    }
}

/* Homepage production pass */
.home-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--black);
}

.home-hero-image,
.home-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-image {
    object-fit: cover;
    object-position: center 36%;
    filter: saturate(0.86) contrast(1.04);
}

.home-hero-shade {
    background:
        linear-gradient(90deg, rgba(17, 16, 13, 0.92), rgba(17, 16, 13, 0.62) 48%, rgba(17, 16, 13, 0.16)),
        linear-gradient(0deg, rgba(17, 16, 13, 0.76), transparent 52%);
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 24px 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 56px;
    align-items: end;
    color: var(--off-white);
}

.home-hero-copy h1 {
    max-width: 860px;
    margin: 18px 0 20px;
    font-family: var(--serif);
    font-size: clamp(4.4rem, 8vw, 8.2rem);
    line-height: 0.88;
}

.home-hero-copy p {
    max-width: 690px;
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.home-hero .button-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.hero-reserve-panel {
    border: 1px solid rgba(255, 250, 242, 0.26);
    background: rgba(17, 16, 13, 0.72);
    backdrop-filter: blur(8px);
    padding: 22px;
}

.hero-reserve-panel img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 22px;
}

.hero-reserve-panel span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-reserve-panel strong {
    display: block;
    margin-top: 4px;
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
}

.hero-reserve-panel p {
    margin: 14px 0 0;
    color: rgba(255, 250, 242, 0.76);
    font-size: 0.95rem;
}

.home-proof {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: -32px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-proof div {
    min-height: 112px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-right: 0;
    background: var(--cream);
    display: grid;
    align-content: center;
}

.home-proof div:last-child {
    border-right: 1px solid var(--line);
}

.home-proof span {
    color: var(--saddle);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-proof strong {
    font-family: var(--serif);
    font-size: 1.35rem;
}

.editorial-section {
    max-width: none;
    margin-top: 86px;
    padding: 94px max(24px, calc((100vw - 1180px) / 2 + 24px));
    background: var(--black);
    color: var(--off-white);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
    gap: 72px;
    align-items: center;
}

.editorial-copy h2,
.beef-showcase h2,
.visual-story h2,
.order-steps h2,
.final-cta h2 {
    margin: 14px 0 20px;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 5.4rem);
    line-height: 0.94;
}

.editorial-copy p {
    max-width: 680px;
    color: rgba(255, 250, 242, 0.78);
    font-size: 1.1rem;
}

.light-link {
    color: var(--gold);
}

.editorial-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 250, 242, 0.18);
}

.beef-showcase {
    max-width: 1180px;
    margin: 0 auto;
    padding: 94px 24px;
}

.beef-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.beef-menu a {
    min-height: 300px;
    padding: 28px;
    border-right: 1px solid var(--line);
    text-decoration: none;
    display: grid;
    align-content: end;
    background: rgba(246, 240, 230, 0.38);
    transition: background 160ms ease, transform 160ms ease;
}

.beef-menu a:last-child {
    border-right: 0;
}

.beef-menu a:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.beef-menu span,
.step-line span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.beef-menu strong,
.step-line h3 {
    display: block;
    margin: 12px 0 10px;
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1.08;
}

.beef-menu p,
.step-line p,
.final-cta p {
    margin: 0;
    color: rgba(17, 16, 13, 0.72);
}

.visual-story {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: stretch;
    background: var(--cream);
}

.visual-story img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center 42%;
}

.visual-story div {
    padding: 96px max(24px, calc((100vw - 1180px) / 2 + 24px)) 96px 70px;
    display: grid;
    align-content: center;
}

.visual-story p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(17, 16, 13, 0.76);
    font-size: 1.08rem;
}

.order-steps {
    max-width: 1180px;
    margin: 0 auto;
    padding: 92px 24px;
}

.step-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
}

.step-line article {
    padding: 30px 28px 0;
    border-right: 1px solid var(--line);
}

.step-line article:last-child {
    border-right: 0;
}

.final-cta {
    max-width: 1180px;
    margin: 0 auto 90px;
    padding: 58px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.final-cta div {
    max-width: 760px;
}

@media (max-width: 980px) {
    .home-hero-inner,
    .editorial-section,
    .visual-story {
        grid-template-columns: 1fr;
    }

    .hero-reserve-panel {
        display: none;
    }

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

    .beef-menu a:nth-child(2) {
        border-right: 0;
    }

    .visual-story div {
        padding: 64px 24px;
    }
}

@media (max-width: 680px) {
    .home-hero {
        min-height: 720px;
    }

    .home-hero-inner {
        padding: 92px 24px 54px;
    }

    .home-hero-copy h1 {
        font-size: 3.2rem;
        line-height: 0.96;
    }

    .home-proof,
    .beef-menu,
    .step-line {
        grid-template-columns: 1fr;
    }

    .home-proof {
        margin-top: 0;
        padding: 0;
    }

    .home-proof div,
    .beef-menu a,
    .step-line article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .editorial-section,
    .beef-showcase,
    .order-steps {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .visual-story img {
        min-height: 380px;
    }

    .final-cta {
        display: grid;
        margin-bottom: 60px;
    }
}
