/*
Theme Name: Oishi Reserve Easy
Theme URI: https://example.com/oishi-reserve
Author: AgriGate
Description: A beginner-friendly, single-page WordPress theme for Oishi Reserve Full Blood Wagyu, designed in a premium gold and cream palette.
Version: 1.0.0
Text Domain: oishi-reserve-easy
*/

:root {
    --oe-cream: #fbf7eb;
    --oe-cream-soft: #fffdf6;
    --oe-cream-deep: #efe3c8;
    --oe-cream-rich: #e6d2a9;
    --oe-gold: #c8a15c;
    --oe-gold-bright: #d8b86f;
    --oe-gold-dark: #956d2c;
    --oe-ink: #30271e;
    --oe-ink-soft: #665747;
    --oe-line: rgba(149, 109, 44, 0.34);
    --oe-shadow: 0 24px 70px rgba(83, 59, 26, 0.14);
    --oe-radius: 3px;
    --oe-serif: Georgia, "Times New Roman", Times, serif;
    --oe-sans: "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body.oishi-easy-site,
body.oishi-easy-site * {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.oishi-easy-site {
    margin: 0;
    overflow-x: hidden;
    color: var(--oe-ink);
    background: var(--oe-cream);
    font-family: var(--oe-sans);
    font-size: 17px;
    line-height: 1.72;
}

body.oishi-easy-site img {
    display: block;
    max-width: 100%;
}

body.oishi-easy-site a {
    color: inherit;
    text-decoration: none;
}

body.oishi-easy-site button,
body.oishi-easy-site input,
body.oishi-easy-site select,
body.oishi-easy-site textarea {
    font: inherit;
}

body.oishi-easy-site button,
body.oishi-easy-site a {
    -webkit-tap-highlight-color: transparent;
}

body.oishi-easy-site ::selection {
    color: var(--oe-ink);
    background: var(--oe-gold-bright);
}

.oe-skip {
    position: fixed;
    z-index: 99999;
    top: -100px;
    left: 18px;
    padding: 11px 18px;
    color: var(--oe-ink);
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-gold);
    transition: top 0.2s ease;
}

.oe-skip:focus {
    top: 12px;
}

.oe-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.oe-progress {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: rgba(200, 161, 92, 0.12);
}

.oe-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--oe-gold-dark);
}

.admin-bar .oe-progress {
    top: 32px;
}

.oe-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    padding: 10px clamp(20px, 4vw, 62px);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.admin-bar .oe-nav {
    top: 32px;
}

.oe-nav.is-scrolled {
    background: rgba(251, 247, 235, 0.96);
    border-color: var(--oe-line);
    box-shadow: 0 12px 35px rgba(84, 60, 25, 0.08);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

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

.oe-nav__brand img {
    width: 86px;
    height: 64px;
    object-fit: contain;
    transition: width 0.25s ease, height 0.25s ease;
}

.oe-nav.is-scrolled .oe-nav__brand img {
    width: 72px;
    height: 54px;
}

.oe-nav__menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 36px);
}

.oe-nav__menu > a {
    position: relative;
    color: var(--oe-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.oe-nav__menu > a:not(.oe-nav__button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    background: var(--oe-gold-dark);
    transition: transform 0.25s ease;
}

.oe-nav__menu > a:hover::after,
.oe-nav__menu > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.oe-nav__button {
    padding: 12px 18px;
    border: 1px solid var(--oe-gold-dark);
    background: rgba(255, 253, 246, 0.55);
    transition: background 0.2s ease, color 0.2s ease;
}

.oe-nav__button:hover,
.oe-nav__button:focus-visible {
    color: var(--oe-cream-soft);
    background: var(--oe-gold-dark);
}

.oe-nav__toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 10px;
    cursor: pointer;
    border: 1px solid var(--oe-line);
    background: var(--oe-cream-soft);
}

.oe-nav__toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: var(--oe-ink);
}

.oe-hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--oe-cream-deep);
}

.oe-hero__photo,
.oe-hero__wash {
    position: absolute;
    inset: 0;
}

.oe-hero__photo {
    z-index: -3;
    transform: scale(1.025);
    background-image: url("assets/images/hero.jpg");
    background-position: center;
    background-size: cover;
    filter: sepia(0.16) saturate(0.86) brightness(1.08);
}

.oe-hero__wash {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(251, 247, 235, 0.98) 0%, rgba(251, 247, 235, 0.94) 36%, rgba(251, 247, 235, 0.65) 58%, rgba(251, 247, 235, 0.17) 100%),
        linear-gradient(0deg, rgba(239, 227, 200, 0.84) 0%, transparent 28%, rgba(255, 253, 246, 0.14) 100%);
}

.oe-hero::before,
.oe-hero::after {
    position: absolute;
    z-index: -1;
    inset: 20px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(149, 109, 44, 0.34);
}

.oe-hero::after {
    inset: 27px;
    border-color: rgba(200, 161, 92, 0.2);
}

.oe-hero__content {
    padding-top: 120px;
    padding-bottom: 132px;
}

.oe-hero__content > * {
    max-width: 770px;
}

.oe-kicker,
.oe-eyebrow {
    margin: 0 0 22px;
    color: var(--oe-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28em;
    line-height: 1.45;
    text-transform: uppercase;
}

.oe-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
}

.oe-kicker span {
    width: 28px;
    height: 1px;
    background: var(--oe-gold);
}

.oe-hero__logo {
    width: clamp(150px, 18vw, 235px);
    margin: 0 0 30px;
    filter: drop-shadow(0 12px 24px rgba(93, 66, 29, 0.08));
}

.oe-hero h1,
.oe-heading {
    margin: 0;
    color: var(--oe-ink);
    font-family: var(--oe-serif);
    font-size: clamp(3.1rem, 7.2vw, 7.25rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.94;
}

.oe-hero h1 em,
.oe-heading em {
    color: var(--oe-gold-dark);
    font-weight: 400;
}

.oe-hero__lead {
    max-width: 670px;
    margin: 30px 0 0;
    color: var(--oe-ink-soft);
    font-family: var(--oe-serif);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.65;
}

.oe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.oe-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.oe-button:hover,
.oe-button:focus-visible {
    transform: translateY(-2px);
}

.oe-button--gold {
    color: var(--oe-cream-soft);
    background: var(--oe-gold-dark);
    border-color: var(--oe-gold-dark);
    box-shadow: 0 14px 28px rgba(149, 109, 44, 0.18);
}

.oe-button--gold:hover,
.oe-button--gold:focus-visible {
    background: #7c5720;
}

.oe-button--cream {
    color: var(--oe-ink);
    background: rgba(255, 253, 246, 0.72);
    border-color: var(--oe-gold-dark);
}

.oe-button--cream:hover,
.oe-button--cream:focus-visible,
.oe-button--outline:hover,
.oe-button--outline:focus-visible {
    color: var(--oe-cream-soft);
    background: var(--oe-gold-dark);
}

.oe-button--outline {
    color: var(--oe-gold-dark);
    background: transparent;
    border-color: var(--oe-gold-dark);
}

.oe-hero__facts {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 21px clamp(28px, 5vw, 80px);
    color: var(--oe-ink);
    background: rgba(251, 247, 235, 0.9);
    border-top: 1px solid var(--oe-line);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.oe-hero__facts span {
    position: relative;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-align: center;
    text-transform: uppercase;
}

.oe-hero__facts span + span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 22px;
    content: "";
    transform: translateY(-50%);
    background: var(--oe-line);
}

.oe-scroll {
    position: absolute;
    right: clamp(26px, 4vw, 65px);
    bottom: 95px;
    display: grid;
    width: 38px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(149, 109, 44, 0.55);
    border-radius: 999px;
}

.oe-scroll span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--oe-gold-dark);
    animation: oe-scroll 1.8s ease-in-out infinite;
}

@keyframes oe-scroll {
    0% { transform: translateY(-10px); opacity: 0; }
    35% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

.oe-section {
    position: relative;
    padding: clamp(90px, 10vw, 148px) 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(216, 184, 111, 0.1), transparent 27%),
        var(--oe-cream);
}

.oe-section--warm {
    background:
        linear-gradient(rgba(255, 253, 246, 0.2), rgba(255, 253, 246, 0.2)),
        var(--oe-cream-deep);
    border-top: 1px solid rgba(149, 109, 44, 0.17);
    border-bottom: 1px solid rgba(149, 109, 44, 0.17);
}

.oe-heading {
    max-width: 880px;
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    line-height: 1.02;
}

.oe-lead {
    color: var(--oe-ink-soft);
    font-family: var(--oe-serif);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.7;
}

.oe-rule {
    width: 74px;
    height: 1px;
    margin: 30px 0;
    background: var(--oe-gold-dark);
}

.oe-script {
    margin: 34px 0 0;
    color: var(--oe-gold-dark);
    font-family: var(--oe-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-style: italic;
    line-height: 1.3;
}

.oe-story__grid,
.oe-welfare__grid,
.oe-marbling__grid,
.oe-table__grid,
.oe-enquire__grid {
    display: grid;
    align-items: center;
    gap: clamp(50px, 7vw, 96px);
    grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
}

.oe-story__grid > div > p:not(.oe-eyebrow, .oe-script),
.oe-welfare__grid > div > p:not(.oe-eyebrow, .oe-script),
.oe-marbling__grid > div > p:not(.oe-eyebrow, .oe-note),
.oe-table__grid > div > p:not(.oe-eyebrow, .oe-script),
.oe-enquire__grid > div > p:not(.oe-eyebrow) {
    max-width: 670px;
}

.oe-framed-image,
.oe-landscape,
.oe-marbling__image {
    position: relative;
    margin: 0;
}

.oe-framed-image::before,
.oe-landscape::before,
.oe-marbling__image::before {
    position: absolute;
    z-index: 2;
    inset: 12px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(216, 184, 111, 0.8);
}

.oe-framed-image::after,
.oe-landscape::after,
.oe-marbling__image::after {
    position: absolute;
    z-index: -1;
    top: 24px;
    right: -24px;
    bottom: -24px;
    left: 24px;
    content: "";
    border: 1px solid var(--oe-gold);
}

.oe-framed-image img,
.oe-landscape img,
.oe-marbling__image img {
    width: 100%;
    object-fit: cover;
    filter: sepia(0.1) saturate(0.9) contrast(0.96) brightness(1.04);
    box-shadow: var(--oe-shadow);
}

.oe-story .oe-framed-image img,
.oe-welfare .oe-framed-image img,
.oe-table .oe-framed-image img {
    min-height: 590px;
}

.oe-story .oe-framed-image img {
    object-position: 61% center;
}

.oe-framed-image figcaption {
    position: absolute;
    z-index: 3;
    right: -24px;
    bottom: 26px;
    display: grid;
    min-width: 210px;
    padding: 22px 25px;
    color: var(--oe-ink);
    background: rgba(255, 253, 246, 0.94);
    border: 1px solid var(--oe-gold);
    box-shadow: 0 15px 40px rgba(75, 54, 25, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.oe-framed-image figcaption strong {
    color: var(--oe-gold-dark);
    font-family: var(--oe-serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
}

.oe-framed-image figcaption span {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.oe-stats {
    display: grid;
    margin-top: clamp(70px, 8vw, 108px);
    border-top: 1px solid var(--oe-line);
    border-bottom: 1px solid var(--oe-line);
    grid-template-columns: repeat(4, 1fr);
}

.oe-stat {
    padding: 34px 22px;
    text-align: center;
}

.oe-stat + .oe-stat {
    border-left: 1px solid var(--oe-line);
}

.oe-stat strong {
    display: block;
    color: var(--oe-gold-dark);
    font-family: var(--oe-serif);
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    font-weight: 400;
    line-height: 1;
}

.oe-stat span {
    display: block;
    margin-top: 12px;
    color: var(--oe-ink-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.oe-section-intro,
.oe-range__head {
    display: grid;
    align-items: end;
    gap: 60px;
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
}

.oe-section-intro > p {
    margin: 0 0 10px;
    color: var(--oe-ink-soft);
}

.oe-landscape {
    margin-top: 56px;
}

.oe-landscape img {
    height: clamp(440px, 55vw, 640px);
}

.oe-landscape figcaption {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 12%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--oe-ink);
    background: rgba(255, 253, 246, 0.86);
    border: 1px solid var(--oe-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.oe-landscape figcaption span {
    width: 9px;
    height: 9px;
    border: 2px solid var(--oe-gold-dark);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(200, 161, 92, 0.18);
}

.oe-three {
    display: grid;
    margin-top: 56px;
    grid-template-columns: repeat(3, 1fr);
}

.oe-feature {
    padding: 8px 42px 0;
    text-align: center;
}

.oe-feature + .oe-feature {
    border-left: 1px solid var(--oe-line);
}

.oe-feature > span {
    color: var(--oe-gold-dark);
    font-family: var(--oe-serif);
    font-size: 1.6rem;
}

.oe-feature h3,
.oe-lineage__panel h3,
.oe-product h3,
.oe-experience__panel h3 {
    margin: 12px 0 10px;
    color: var(--oe-ink);
    font-family: var(--oe-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.15;
}

.oe-feature p {
    margin: 0;
    color: var(--oe-ink-soft);
    font-size: 0.94rem;
}

.oe-centered {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.oe-centered .oe-heading,
.oe-centered .oe-lead {
    margin-inline: auto;
}

.oe-centered .oe-lead {
    max-width: 720px;
    margin-top: 26px;
}

.oe-lineage__tabs {
    display: grid;
    max-width: 910px;
    margin: 58px auto 0;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}

.oe-lineage__tabs button {
    min-height: 142px;
    padding: 24px;
    cursor: pointer;
    color: var(--oe-ink-soft);
    background: rgba(255, 253, 246, 0.78);
    border: 1px solid var(--oe-line);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.oe-lineage__tabs button:hover,
.oe-lineage__tabs button:focus-visible,
.oe-lineage__tabs button.is-active {
    transform: translateY(-3px);
    color: var(--oe-ink);
    background: var(--oe-cream-soft);
    border-color: var(--oe-gold-dark);
    box-shadow: 0 18px 35px rgba(85, 61, 27, 0.1);
}

.oe-lineage__tabs strong,
.oe-lineage__tabs span {
    display: block;
}

.oe-lineage__tabs strong {
    color: var(--oe-gold-dark);
    font-family: var(--oe-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
}

.oe-lineage__tabs span {
    margin-top: 15px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.oe-lineage__panel {
    display: grid;
    max-width: 910px;
    min-height: 240px;
    align-items: center;
    margin: 20px auto 0;
    padding: clamp(30px, 5vw, 54px);
    gap: clamp(28px, 5vw, 58px);
    background: linear-gradient(135deg, rgba(239, 227, 200, 0.5), rgba(255, 253, 246, 0.9));
    border: 1px solid var(--oe-gold);
    grid-template-columns: 180px 1fr;
}

.oe-lineage__seal {
    display: grid;
    width: 162px;
    height: 162px;
    place-items: center;
    color: var(--oe-gold-dark);
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-gold-dark);
    box-shadow: inset 0 0 0 8px var(--oe-cream-soft), inset 0 0 0 9px var(--oe-gold);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.oe-lineage__seal span {
    font-family: var(--oe-serif);
    font-size: 2.9rem;
}

.oe-lineage__panel h3 {
    margin-top: 0;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.oe-lineage__panel p:last-child {
    margin: 0;
    color: var(--oe-ink-soft);
}

.oe-timeline {
    position: relative;
    display: grid;
    max-width: 1030px;
    margin: 70px auto 0;
    grid-template-columns: repeat(5, 1fr);
}

.oe-timeline::before {
    position: absolute;
    top: 7px;
    right: 10%;
    left: 10%;
    height: 1px;
    content: "";
    background: var(--oe-gold);
}

.oe-timeline > div {
    position: relative;
    z-index: 1;
    padding: 0 12px;
    text-align: center;
}

.oe-timeline i {
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 auto 18px;
    background: var(--oe-cream-soft);
    border: 2px solid var(--oe-gold-dark);
    border-radius: 50%;
}

.oe-timeline b,
.oe-timeline span {
    display: block;
}

.oe-timeline b {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.oe-timeline span {
    margin-top: 5px;
    color: var(--oe-ink-soft);
    font-size: 0.82rem;
}

.oe-welfare__grid,
.oe-table__grid {
    grid-template-columns: minmax(350px, 0.95fr) minmax(0, 1.05fr);
}

.oe-welfare .oe-framed-image img {
    object-position: center 40%;
}

.oe-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.oe-chips span {
    padding: 10px 13px;
    color: var(--oe-gold-dark);
    background: rgba(255, 253, 246, 0.65);
    border: 1px solid var(--oe-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.oe-marbling__grid {
    grid-template-columns: minmax(350px, 1fr) minmax(0, 0.95fr);
}

.oe-marbling__image img {
    min-height: 650px;
}

.oe-marbling__image figcaption {
    position: absolute;
    z-index: 3;
    right: -18px;
    bottom: 32px;
    display: flex;
    min-width: 260px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    color: var(--oe-ink);
    background: rgba(255, 253, 246, 0.93);
    border: 1px solid var(--oe-gold);
    box-shadow: 0 15px 40px rgba(75, 54, 25, 0.12);
}

.oe-marbling__image figcaption span {
    max-width: 110px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.oe-marbling__image figcaption strong {
    color: var(--oe-gold-dark);
    font-family: var(--oe-serif);
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 1;
}

.oe-marble-scale {
    display: grid;
    margin-top: 34px;
    grid-template-columns: repeat(6, 1fr);
}

.oe-marble-scale button {
    min-height: 56px;
    cursor: pointer;
    color: var(--oe-ink-soft);
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-line);
    border-right: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.oe-marble-scale button:last-child {
    border-right: 1px solid var(--oe-line);
}

.oe-marble-scale button:hover,
.oe-marble-scale button:focus-visible,
.oe-marble-scale button.is-active {
    color: var(--oe-cream-soft);
    background: var(--oe-gold-dark);
    transform: translateY(-2px);
}

.oe-note {
    margin-top: 22px;
    color: var(--oe-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.oe-range__head {
    grid-template-columns: 1fr auto;
}

.oe-carousel-buttons {
    display: flex;
    gap: 10px;
}

.oe-carousel-buttons button {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    cursor: pointer;
    color: var(--oe-gold-dark);
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-gold-dark);
    font-size: 1.35rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.oe-carousel-buttons button:hover,
.oe-carousel-buttons button:focus-visible {
    color: var(--oe-cream-soft);
    background: var(--oe-gold-dark);
}

.oe-products {
    display: grid;
    margin-top: 50px;
    padding: 4px 4px 28px;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    grid-auto-columns: minmax(285px, 30%);
    grid-auto-flow: column;
    scrollbar-color: var(--oe-gold) rgba(149, 109, 44, 0.08);
    scrollbar-width: thin;
}

.oe-products::-webkit-scrollbar {
    height: 8px;
}

.oe-products::-webkit-scrollbar-track {
    background: rgba(149, 109, 44, 0.08);
}

.oe-products::-webkit-scrollbar-thumb {
    background: var(--oe-gold);
}

.oe-product {
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-gold);
    box-shadow: 0 16px 35px rgba(85, 61, 27, 0.08);
}

.oe-product img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: sepia(0.06) saturate(0.94) brightness(1.05);
}

.oe-product > div {
    padding: 27px 26px 30px;
}

.oe-product p {
    margin: 0;
    color: var(--oe-gold-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.oe-product h3 {
    margin: 8px 0 10px;
    font-size: 2rem;
}

.oe-product span {
    color: var(--oe-ink-soft);
    font-size: 0.93rem;
    line-height: 1.6;
}

.oe-experience__tabs {
    display: flex;
    width: fit-content;
    margin: 52px auto 26px;
    padding: 5px;
    background: var(--oe-cream-deep);
    border: 1px solid var(--oe-line);
}

.oe-experience__tabs button {
    min-width: 220px;
    padding: 14px 18px;
    cursor: pointer;
    color: var(--oe-ink-soft);
    background: transparent;
    border: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.oe-experience__tabs button.is-active {
    color: var(--oe-cream-soft);
    background: var(--oe-gold-dark);
}

.oe-experience__panel {
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-gold);
    box-shadow: var(--oe-shadow);
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
}

.oe-experience__panel[hidden] {
    display: none;
}

.oe-experience__panel figure {
    min-height: 690px;
    margin: 0;
}

.oe-experience__panel figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.08) saturate(0.9) brightness(1.03);
}

.oe-experience__panel > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 6vw, 78px);
}

.oe-experience__panel h3 {
    margin: 0 0 28px;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.oe-experience__panel ol {
    margin: 0;
    padding: 0;
    counter-reset: oishi-step;
    list-style: none;
}

.oe-experience__panel li {
    position: relative;
    min-height: 54px;
    padding: 12px 0 12px 56px;
    color: var(--oe-ink-soft);
    border-top: 1px solid var(--oe-line);
    counter-increment: oishi-step;
}

.oe-experience__panel li::before {
    position: absolute;
    top: 12px;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    content: counter(oishi-step);
    color: var(--oe-gold-dark);
    border: 1px solid var(--oe-gold);
    transform: rotate(45deg);
    font-size: 0.78rem;
}

.oe-experience__panel li::after {
    position: absolute;
    top: 18px;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    content: counter(oishi-step);
    color: var(--oe-gold-dark);
    transform: rotate(0deg);
    font-size: 0.78rem;
}

.oe-experience__panel li::before {
    content: "";
}

.oe-experience__panel blockquote {
    margin: 30px 0 0;
    padding: 22px 24px;
    color: var(--oe-gold-dark);
    background: var(--oe-cream-deep);
    border: 1px solid var(--oe-gold);
    font-family: var(--oe-serif);
    font-size: 1.16rem;
    font-style: italic;
    line-height: 1.55;
}

.oe-table .oe-framed-image img {
    object-position: center;
}

.oe-pairings {
    margin: 34px 0 0;
    border-top: 1px solid var(--oe-line);
}

.oe-pairings > div {
    display: grid;
    align-items: start;
    padding: 17px 0;
    gap: 24px;
    border-bottom: 1px solid var(--oe-line);
    grid-template-columns: 100px 1fr;
}

.oe-pairings dt {
    color: var(--oe-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.oe-pairings dd {
    margin: 0;
    color: var(--oe-ink-soft);
}

.oe-trust {
    padding: 46px 0;
    background: linear-gradient(135deg, var(--oe-gold-dark), #b78d45 50%, var(--oe-gold));
    border-top: 1px solid rgba(255, 253, 246, 0.42);
    border-bottom: 1px solid rgba(255, 253, 246, 0.42);
}

.oe-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.oe-trust__grid > div {
    padding: 14px 22px;
    text-align: center;
}

.oe-trust__grid > div + div {
    border-left: 1px solid rgba(255, 253, 246, 0.42);
}

.oe-trust strong,
.oe-trust span {
    display: block;
}

.oe-trust strong {
    color: var(--oe-cream-soft);
    font-family: var(--oe-serif);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 400;
}

.oe-trust span {
    margin-top: 4px;
    color: rgba(255, 253, 246, 0.82);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.oe-enquire {
    background:
        radial-gradient(circle at 85% 15%, rgba(216, 184, 111, 0.2), transparent 28%),
        var(--oe-cream);
}

.oe-enquire__grid {
    align-items: start;
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
}

.oe-contact-link {
    display: block;
    width: fit-content;
    margin: 13px 0;
    color: var(--oe-gold-dark);
    border-bottom: 1px solid var(--oe-gold);
    font-family: var(--oe-serif);
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.oe-form-card {
    padding: clamp(28px, 5vw, 52px);
    background: var(--oe-cream-soft);
    border: 1px solid var(--oe-gold);
    box-shadow: var(--oe-shadow);
}

.oe-form {
    display: grid;
    gap: 18px;
}

.oe-form__row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.oe-form label {
    display: grid;
    gap: 8px;
}

.oe-form label > span {
    color: var(--oe-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.oe-form input,
.oe-form select,
.oe-form textarea {
    width: 100%;
    color: var(--oe-ink);
    background: var(--oe-cream);
    border: 1px solid var(--oe-line);
    border-radius: 0;
    outline: 0;
}

.oe-form input,
.oe-form select {
    min-height: 50px;
    padding: 10px 13px;
}

.oe-form textarea {
    min-height: 145px;
    padding: 13px;
    resize: vertical;
}

.oe-form input:focus,
.oe-form select:focus,
.oe-form textarea:focus {
    border-color: var(--oe-gold-dark);
    box-shadow: 0 0 0 3px rgba(200, 161, 92, 0.17);
}

.oe-form .oe-button {
    width: 100%;
    margin-top: 2px;
}

.oe-form__note {
    margin: 0;
    color: var(--oe-ink-soft);
    font-size: 0.78rem;
    text-align: center;
}

.oe-honeypot {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.oe-alert {
    margin-bottom: 20px;
    padding: 13px 15px;
    border: 1px solid var(--oe-gold);
}

.oe-alert--success {
    color: #37572f;
    background: #edf5e8;
    border-color: #8fac82;
}

.oe-alert--error {
    color: #743c32;
    background: #faece8;
    border-color: #c28d82;
}

.oe-footer {
    padding: 60px 0 38px;
    background: var(--oe-cream-deep);
    border-top: 1px solid var(--oe-gold);
}

.oe-footer__grid {
    display: grid;
    align-items: center;
    gap: 38px;
    grid-template-columns: 1fr auto 1fr;
}

.oe-footer__grid > div:first-child > img {
    width: 142px;
}

.oe-footer p {
    margin: 13px 0 0;
    color: var(--oe-ink-soft);
    font-size: 0.86rem;
}

.oe-footer__presented {
    display: grid;
    justify-items: center;
}

.oe-footer__presented span {
    color: var(--oe-ink-soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.oe-footer__presented img {
    width: 118px;
    margin-top: 8px;
}

.oe-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.oe-footer__links a {
    color: var(--oe-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.oe-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.oe-reveal.is-visible {
    opacity: 1;
    transform: none;
}

:focus-visible {
    outline: 2px solid var(--oe-gold-dark);
    outline-offset: 4px;
}

.oe-simple-header {
    display: flex;
    min-height: 130px;
    align-items: center;
    justify-content: center;
    background: var(--oe-cream-deep);
    border-bottom: 1px solid var(--oe-gold);
}

.oe-simple-header img {
    width: 120px;
}

.oe-basic {
    min-height: 60vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

.oe-basic h1 {
    font-family: var(--oe-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
}

@media (max-width: 1080px) {
    .oe-nav__menu {
        gap: 18px;
    }

    .oe-story__grid,
    .oe-welfare__grid,
    .oe-marbling__grid,
    .oe-table__grid,
    .oe-enquire__grid {
        gap: 56px;
        grid-template-columns: 1fr 1fr;
    }

    .oe-products {
        grid-auto-columns: minmax(290px, 42%);
    }

    .oe-experience__panel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 76px;
    }

    .admin-bar .oe-nav,
    .admin-bar .oe-progress {
        top: 46px;
    }

    .oe-nav {
        min-height: 72px;
        padding: 8px 20px;
        background: rgba(251, 247, 235, 0.94);
        border-bottom: 1px solid var(--oe-line);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .oe-nav__brand img,
    .oe-nav.is-scrolled .oe-nav__brand img {
        width: 66px;
        height: 50px;
    }

    .oe-nav__toggle {
        display: block;
    }

    .oe-nav__menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 18px 22px 24px;
        gap: 0;
        background: var(--oe-cream-soft);
        border-bottom: 1px solid var(--oe-gold);
        box-shadow: 0 18px 35px rgba(84, 60, 25, 0.12);
    }

    .oe-nav__menu.is-open {
        display: grid;
    }

    .oe-nav__menu > a {
        padding: 13px 5px;
        border-bottom: 1px solid rgba(149, 109, 44, 0.16);
    }

    .oe-nav__menu > a::after {
        display: none;
    }

    .oe-nav__button {
        margin-top: 12px;
        text-align: center;
    }

    .oe-hero__wash {
        background:
            linear-gradient(90deg, rgba(251, 247, 235, 0.97) 0%, rgba(251, 247, 235, 0.88) 62%, rgba(251, 247, 235, 0.5) 100%),
            linear-gradient(0deg, rgba(239, 227, 200, 0.9) 0%, transparent 36%);
    }

    .oe-hero__content {
        padding-top: 118px;
        padding-bottom: 170px;
    }

    .oe-hero__facts {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 16px;
    }

    .oe-hero__facts span:nth-child(3)::before {
        display: none;
    }

    .oe-scroll {
        display: none;
    }

    .oe-story__grid,
    .oe-welfare__grid,
    .oe-marbling__grid,
    .oe-table__grid,
    .oe-enquire__grid,
    .oe-section-intro,
    .oe-range__head {
        grid-template-columns: 1fr;
    }

    .oe-story__grid,
    .oe-welfare__grid,
    .oe-marbling__grid,
    .oe-table__grid,
    .oe-enquire__grid {
        gap: 64px;
    }

    .oe-section-intro,
    .oe-range__head {
        gap: 28px;
    }

    .oe-welfare .oe-framed-image,
    .oe-table .oe-framed-image {
        order: 2;
    }

    .oe-story .oe-framed-image img,
    .oe-welfare .oe-framed-image img,
    .oe-table .oe-framed-image img,
    .oe-marbling__image img {
        min-height: 520px;
    }

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

    .oe-stat:nth-child(3) {
        border-top: 1px solid var(--oe-line);
        border-left: 0;
    }

    .oe-stat:nth-child(4) {
        border-top: 1px solid var(--oe-line);
    }

    .oe-products {
        grid-auto-columns: minmax(280px, 64%);
    }

    .oe-experience__panel {
        grid-template-columns: 1fr;
    }

    .oe-experience__panel figure {
        min-height: 520px;
    }

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

    .oe-trust__grid > div:nth-child(3) {
        border-top: 1px solid rgba(255, 253, 246, 0.42);
        border-left: 0;
    }

    .oe-trust__grid > div:nth-child(4) {
        border-top: 1px solid rgba(255, 253, 246, 0.42);
    }

    .oe-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .oe-footer__presented {
        justify-items: end;
    }

    .oe-footer__links {
        justify-content: flex-start;
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    body.oishi-easy-site {
        font-size: 16px;
    }

    .oe-shell {
        width: min(100% - 30px, 1180px);
    }

    .oe-hero::before {
        inset: 10px;
    }

    .oe-hero::after {
        inset: 15px;
    }

    .oe-hero__photo {
        background-position: 64% center;
    }

    .oe-hero__wash {
        background:
            linear-gradient(90deg, rgba(251, 247, 235, 0.96) 0%, rgba(251, 247, 235, 0.84) 100%),
            linear-gradient(0deg, rgba(239, 227, 200, 0.94) 0%, transparent 48%);
    }

    .oe-hero__content {
        padding-top: 106px;
        padding-bottom: 186px;
    }

    .oe-kicker {
        max-width: 310px;
        flex-wrap: wrap;
        gap: 7px 12px;
    }

    .oe-kicker span {
        display: none;
    }

    .oe-hero__logo {
        width: 132px;
        margin-bottom: 24px;
    }

    .oe-hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .oe-actions {
        display: grid;
    }

    .oe-actions .oe-button {
        width: 100%;
    }

    .oe-hero__facts {
        padding: 17px 15px;
    }

    .oe-hero__facts span {
        padding: 0 8px;
        font-size: 8px;
        letter-spacing: 0.13em;
    }

    .oe-section {
        padding: 82px 0;
    }

    .oe-heading {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .oe-framed-image::after,
    .oe-landscape::after,
    .oe-marbling__image::after {
        top: 14px;
        right: -8px;
        bottom: -14px;
        left: 14px;
    }

    .oe-story .oe-framed-image img,
    .oe-welfare .oe-framed-image img,
    .oe-table .oe-framed-image img,
    .oe-marbling__image img {
        min-height: 430px;
    }

    .oe-framed-image figcaption,
    .oe-marbling__image figcaption {
        right: -4px;
        bottom: 18px;
        min-width: 190px;
        padding: 15px 18px;
    }

    .oe-stats {
        margin-top: 64px;
    }

    .oe-stat {
        padding: 25px 10px;
    }

    .oe-stat span {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .oe-landscape img {
        height: 410px;
    }

    .oe-landscape figcaption {
        top: auto;
        right: 18px;
        bottom: 20px;
    }

    .oe-three {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .oe-feature {
        padding: 0;
    }

    .oe-feature + .oe-feature {
        padding-top: 28px;
        border-top: 1px solid var(--oe-line);
        border-left: 0;
    }

    .oe-lineage__tabs {
        gap: 8px;
    }

    .oe-lineage__tabs button {
        min-height: 112px;
        padding: 15px 8px;
    }

    .oe-lineage__tabs strong {
        font-size: 1.75rem;
    }

    .oe-lineage__tabs span {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .oe-lineage__panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .oe-lineage__seal {
        width: 140px;
        height: 140px;
        margin-inline: auto;
    }

    .oe-timeline {
        display: grid;
        gap: 0;
        grid-template-columns: 1fr;
    }

    .oe-timeline::before {
        top: 8px;
        bottom: 8px;
        left: 7px;
        width: 1px;
        height: auto;
    }

    .oe-timeline > div {
        display: grid;
        min-height: 68px;
        align-items: start;
        padding: 0 0 22px 38px;
        text-align: left;
        grid-template-columns: 90px 1fr;
    }

    .oe-timeline i {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }

    .oe-timeline span {
        margin-top: 0;
    }

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

    .oe-marble-scale button:nth-child(3) {
        border-right: 1px solid var(--oe-line);
    }

    .oe-marble-scale button:nth-child(n+4) {
        border-top: 0;
    }

    .oe-products {
        margin-right: -15px;
        margin-left: -4px;
        grid-auto-columns: 84%;
    }

    .oe-carousel-buttons button {
        width: 48px;
        height: 48px;
    }

    .oe-experience__tabs {
        width: 100%;
    }

    .oe-experience__tabs button {
        min-width: 0;
        flex: 1;
        padding: 12px 8px;
        font-size: 8px;
    }

    .oe-experience__panel figure {
        min-height: 390px;
    }

    .oe-experience__panel > div {
        padding: 34px 24px 38px;
    }

    .oe-pairings > div {
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .oe-trust {
        padding: 32px 0;
    }

    .oe-trust__grid {
        width: calc(100% - 30px);
    }

    .oe-trust__grid > div {
        padding: 17px 8px;
    }

    .oe-trust span {
        font-size: 7px;
        letter-spacing: 0.1em;
    }

    .oe-form-card {
        padding: 25px 19px;
    }

    .oe-form__row {
        grid-template-columns: 1fr;
    }

    .oe-footer__grid {
        justify-items: center;
        text-align: center;
        grid-template-columns: 1fr;
    }

    .oe-footer__presented {
        justify-items: center;
    }

    .oe-footer__links {
        justify-content: center;
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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