/* ================================
   Oak Tree Antiques Home Page
   Elegant modern rework
   Prefix: ota-
================================ */

.ota-home {
    --ota-ink: #061d15;
    --ota-green: #0e2a1e;
    --ota-green-2: #123828;
    --ota-green-3: #062017;
    --ota-gold: #b88645;
    --ota-gold-soft: #d9c49a;
    --ota-brass: #cfa260;
    --ota-parchment: #f1e4c8;
    --ota-vellum: #efe0c2;
    --ota-ivory: #f8eed8;
    --ota-stone: #bcb297;
    --ota-mahogany: #4a230b;
    --ota-walnut: #6f3c16;
    --ota-text: #221107;
    --ota-muted: #5a5041;
    --ota-border: rgba(184, 134, 69, 0.34);
    --ota-green-border: rgba(14, 42, 30, 0.16);
    --ota-shadow-soft: 0 18px 50px rgba(6, 29, 21, 0.10);
    --ota-shadow-deep: 0 28px 80px rgba(6, 29, 21, 0.24);
    --ota-radius: 0;
    --ota-font-heading: var(--site-font-heading, "Cinzel", Georgia, "Times New Roman", serif);
    --ota-font-body: var(--site-font-body, "Cormorant Garamond", Georgia, "Times New Roman", serif);

    position: relative;
    overflow: hidden;
    color: var(--ota-text);
    font-family: var(--ota-font-body);
    background:
        radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.62), transparent 24rem),
        radial-gradient(circle at 84% 14%, rgba(184, 134, 69, 0.12), transparent 24rem),
        linear-gradient(180deg, #fbf5e7 0%, #f1e4c8 46%, #ead8b6 100%);
}





.ota-shell {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ota-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ota-gold);
    font-family: var(--ota-font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ota-eyebrow::before,
.ota-eyebrow::after {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ota-gold), transparent);
}

.ota-title,
.ota-home h1,
.ota-home h2,
.ota-home h3,
.ota-button,
.ota-section__link,
.ota-pill {
    font-family: var(--ota-font-heading);
}

.ota-title {
    margin: 10px 0 0;
    color: var(--ota-green);
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ota-copy {
    color: var(--ota-muted);
    line-height: 1.75;
    font-size: 17px;
}

.ota-button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.ota-button-row--center {
    justify-content: center;
}

.ota-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 30px;
    border: 1px solid var(--ota-gold);
    background: linear-gradient(135deg, var(--ota-green), var(--ota-green-2));
    color: var(--ota-ivory);
    box-shadow: 0 12px 26px rgba(6, 29, 21, 0.16);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    font-weight: bold;
}

.ota-button::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(248, 238, 216, 0.14);
    pointer-events: none;
}

.ota-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--ota-green-3), var(--ota-mahogany));
    color: var(--ota-ivory);
    box-shadow: 0 18px 36px rgba(6, 29, 21, 0.24);
}

.ota-button--ghost,
.ota-button--ghost-dark {
    background: rgba(248, 238, 216, 0.08);
    color: var(--ota-green);
    border-color: var(--ota-green);
    box-shadow: none;
}

.ota-button--ghost-dark {
    color: var(--ota-green);
    border-color: rgba(184, 134, 69, 0.58);
    background: rgba(248, 238, 216, 0.5);
}

.ota-button--ghost:hover,
.ota-button--ghost-dark:hover {
    color: var(--ota-ivory);
    border-color: var(--ota-gold);
    background: var(--ota-green);
}

.ota-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border: 1px solid rgba(184, 134, 69, 0.46);
    padding: 6px 11px;
    color: var(--ota-green);
    background: rgba(248, 238, 216, 0.74);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Hero */

.ota-hero {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    border-top: 1px solid rgba(184, 134, 69, 0.34);
    border-bottom: 1px solid rgba(184, 134, 69, 0.34);
    background:
        linear-gradient(45deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.90)),
        url("/assets/images/parchment_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ota-hero::before {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: -1;
    border: 1px solid rgba(207, 162, 96, 0.42);
    pointer-events: none;
}

.ota-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    z-index: -1;
    background: linear-gradient(0deg, rgba(6, 29, 21, 0.74), transparent);
    pointer-events: none;
}

.ota-hero__grid {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    padding: 58px 0;
}

.ota-hero__content {
    max-width: 610px;
    text-align: left;
}

.ota-hero__content .ota-eyebrow {
    color: var(--ota-gold);
}

.ota-hero__content h1 {
    margin: 16px 0 18px;
    font-size: clamp(42px, 5.8vw, 78px);
    line-height: 1.02;
    letter-spacing: 0.08em;
}

.ota-hero__content p {
    max-width: 560px;
    margin: 0 0 30px;
    color: var(--ota-green);
    font-size: clamp(17px, 1.7vw, 21px);
}

.ota-hero__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ota-hero__frame {
    position: relative;
    width: min(590px, 100%);
    min-height: 510px;
}

.ota-hero__frame::before {
    content: "";
    position: absolute;
    inset: -18px 32px 38px -28px;
    z-index: -1;
    border: 1px solid rgba(207, 162, 96, 0.40);
    background: rgba(248, 238, 216, 0.05);
}

.ota-hero__media {
    width: min(560px, 100%);
    height: 470px;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(207, 162, 96, 0.52);
    background:
        radial-gradient(circle at 50% 45%, rgba(184, 134, 69, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(74, 35, 11, 0.38), rgba(248, 238, 216, 0.16));
    box-shadow: var(--ota-shadow-deep);
}

.ota-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(0.12) contrast(1.05) saturate(0.92);
    transform: scale(1.01);
}

.ota-hero__placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 28%, rgba(184, 134, 69, 0.28), transparent 34%),
        linear-gradient(145deg, rgba(74, 35, 11, 0.32), rgba(239, 224, 194, 0.24));
}

.ota-hero__feature-card {
    position: absolute;
    left: 0;
    bottom: 6px;
    max-width: 390px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(248, 238, 216, 0.96), rgba(241, 228, 200, 0.94));
    border: 1px solid rgba(184, 134, 69, 0.48);
    box-shadow: var(--ota-shadow-soft);
    backdrop-filter: blur(8px);
}

.ota-hero__feature-card h2 {
    margin: 14px 0 10px;
    color: var(--ota-green);
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ota-hero__feature-card p {
    margin: 0;
    color: var(--ota-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Trust strip */

.ota-trust {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(184, 134, 69, 0.34);
    background: linear-gradient(90deg, var(--ota-green-3), var(--ota-green));
    color: var(--ota-ivory);
}

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

.ota-trust__item {
    display: flex;
    gap: 16px;
    align-items: center;
    min-height: 108px;
    padding: 22px 18px;
}

.ota-trust__item:first-child {
    border-left: 0;
}

.ota-trust__icon {
    --ota-trust-icon-color: var(--ota-brass);
    --ota-trust-icon-scale: 1;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: grid;
    place-items: center;
    color: var(--ota-trust-icon-color);
    font-size: 26px;
    font-size: -webkit-xxx-large;
}

.ota-trust__icon > svg,
.ota-trust__svg-mask,
.ota-trust__icon img {
    display: block;
    max-height: 72px;
    max-width: 72px;
    object-fit: contain;
    transform: scale(var(--ota-trust-icon-scale));
    transform-origin: center;
}

.ota-trust__svg-mask {
    width: 72px;
    height: 72px;
    background: var(--ota-trust-icon-color);
    mask: var(--ota-trust-icon-url) center / contain no-repeat;
    -webkit-mask: var(--ota-trust-icon-url) center / contain no-repeat;
}

.ota-trust__icon > svg {
    width: 72px;
    height: 72px;
    color: var(--ota-trust-icon-color);
    fill: none;
    stroke: currentColor;
}

.ota-trust__icon > svg [stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.ota-trust__icon > svg [fill]:not([fill="none"]) {
    fill: currentColor;
}

.ota-trust__icon > svg [fill="none"] {
    fill: none !important;
}

.ota-trust__item strong {
    display: block;
    color: var(--ota-ivory);
    font-family: var(--ota-font-heading);
    font-size: 13px;
    letter-spacing: 0.13em;
    line-height: 1.25;
    text-transform: uppercase;
}

.ota-trust__item span {
    display: block;
    margin-top: 5px;
    color: rgba(248, 238, 216, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

/* Sections */

.ota-section {
    position: relative;
    z-index: 1;
    padding: 72px 0;
    border-bottom: 1px solid rgba(184, 134, 69, 0.22);
}

.ota-section--collections,
.ota-section--products {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.52), transparent 22rem),
        linear-gradient(180deg, rgba(248, 238, 216, 0.72), rgba(239, 224, 194, 0.54));
}

.ota-section--story {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.90)),
        url(/assets/images/parchment_background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ota-section--recent {
    background:
        linear-gradient(180deg, rgba(14, 42, 30, 0.06), rgba(248, 238, 216, 0.58));
}

.ota-section__heading {
    display: block;
    text-align: center;
    margin-bottom: 34px;
}

.ota-section__heading h2,
.ota-section__heading .ota-title {
    margin-top: 12px;
    font-size: clamp(28px, 3.3vw, 42px);
    line-height: 1.15;
}

.ota-section__heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.ota-section__heading--split .ota-eyebrow {
    justify-content: flex-start;
}

.ota-section__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: var(--ota-green);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 134, 69, 0.5);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.ota-section__link::after {
    content: "→";
    color: var(--ota-gold);
    transition: transform 0.25s ease;
}

.ota-section__link:hover {
    color: var(--ota-mahogany);
    border-color: var(--ota-mahogany);
}

.ota-section__link:hover::after {
    transform: translateX(3px);
}

/* Collections */

.ota-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.ota-collection-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 305px;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 69, 0.32);
    background: rgba(248, 238, 216, 0.62);
    color: var(--ota-green);
    box-shadow: 0 10px 26px rgba(6, 29, 21, 0.06);
    text-align: left;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ota-collection-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(248, 238, 216, 0.34);
    pointer-events: none;
}

.ota-collection-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 134, 69, 0.68);
    box-shadow: 0 22px 50px rgba(6, 29, 21, 0.16);
}

.ota-collection-card__image {
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(184, 134, 69, 0.28), transparent 34%),
        linear-gradient(145deg, rgba(74, 35, 11, 0.28), rgba(248, 238, 216, 0.42));
    display: grid;
    place-items: center;
    color: rgba(14, 42, 30, 0.48);
    font-size: 48px;
}

.ota-collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(0.12) saturate(0.95);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.ota-collection-card:hover .ota-collection-card__image img {
    transform: scale(1.06);
    filter: sepia(0.08) saturate(1.02);
}

.ota-collection-card__body {
    position: relative;
    min-height: 92px;
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(248, 238, 216, 0.92), rgba(239, 224, 194, 0.92));
}

.ota-collection-card h3 {
    margin: 0;
    color: var(--ota-green);
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ota-collection-card span:not(.ota-collection-card__image span) {
    display: inline-block;
    margin-top: 9px;
    color: var(--ota-gold);
    font-family: var(--ota-font-heading);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* About */

.ota-about-panel,
.ota-story-panel {
    border: 1px solid rgba(184, 134, 69, 0.36);
    background:
        linear-gradient(135deg, rgba(248, 238, 216, 0.86), rgba(241, 228, 200, 0.72));
    box-shadow: var(--ota-shadow-soft);
}

.ota-about-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.45fr 0.7fr;
    align-items: center;
    gap: 36px;
    min-height: 230px;
    padding: clamp(24px, 4vw, 42px);
}

.ota-about__image {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(184, 134, 69, 0.28);
    min-height: 150px;
}

.ota-about__image img {
    width: min(190px, 100%);
    max-height: 190px;
    object-fit: contain;
    opacity: 0.88;
    filter: sepia(0.14) saturate(0.9);
}

.ota-about__content h2,
.ota-story-panel h2 {
    margin: 12px 0 14px;
    color: var(--ota-green);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.18;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wax-stamp {
    width: min(168px, 100%);
    justify-self: center;
    filter: drop-shadow(0 16px 26px rgba(74, 35, 11, 0.22));
}

.ota-story-panel--centered {
    max-width: 780px;
    padding: clamp(34px, 5vw, 62px);
    text-align: center;
}

.ota-story-panel--centered .ota-copy {
    margin: 0 auto 28px;
    max-width: 660px;
}

/* Product Cards */

.ota-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.ota-product-grid--minimal {
    grid-template-columns: repeat(4, 1fr);
}

.ota-product-card {
    position: relative;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 69, 0.30);
    background: rgba(248, 238, 216, 0.70);
    box-shadow: 0 12px 34px rgba(6, 29, 21, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ota-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 134, 69, 0.68);
    box-shadow: 0 24px 56px rgba(6, 29, 21, 0.16);
}

.ota-product-card__media-link {
    position: relative;
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: var(--ota-green-3);
}

.ota-product-card__media,
.ota-product-card__placeholder {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    display: block;
    border-bottom: 1px solid rgba(184, 134, 69, 0.28);
}

.ota-product-card__media {
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.12) saturate(0.92) contrast(1.02);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.ota-product-card:hover .ota-product-card__media {
    transform: scale(1.06);
    filter: sepia(0.05) saturate(1.02) contrast(1.04);
}

.ota-product-card__placeholder {
    background:
        radial-gradient(circle at 50% 48%, rgba(184, 134, 69, 0.32), transparent 32%),
        linear-gradient(145deg, rgba(74, 35, 11, 0.30), rgba(248, 238, 216, 0.34));
}

.ota-product-card__float-label {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    padding: 7px 10px;
    border: 1px solid rgba(207, 162, 96, 0.58);
    background: rgba(6, 29, 21, 0.84);
    color: var(--ota-ivory);
    font-family: var(--ota-font-heading);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.ota-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
    text-align: left;
}

.ota-product-card__topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    margin-bottom: 12px;
}

.ota-product-card__type {
    color: var(--ota-gold);
    font-family: var(--ota-font-heading);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ota-product-card h3 {
    margin: 0;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    color: var(--ota-green);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: 0.02em;
}

.ota-product-card__price {
    display: block;
    margin-top: 10px;
    color: var(--ota-mahogany);
    font-family: var(--ota-font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ota-negotiable-badge {
    display: inline-flex;
    margin-left: 6px;
    padding: 3px 6px;
    border: 1px solid rgba(184, 134, 69, 0.25);
    background: rgba(184, 134, 69, 0.10);
    color: var(--ota-muted);
    font-family: var(--ota-font-heading);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.ota-product-card p {
    display: none;
}

.ota-product-card__meta {
    min-height: 58px;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.ota-product-card__meta span {
    border: 1px solid rgba(184, 134, 69, 0.24);
    background: rgba(248, 238, 216, 0.64);
    padding: 5px 8px;
    color: var(--ota-muted);
    font-size: 12px;
    line-height: 1.2;
}

.ota-product-card__action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 18px 18px;
    min-height: 42px;
    border: 1px solid rgba(14, 42, 30, 0.76);
    color: var(--ota-green);
    font-family: var(--ota-font-heading);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 11px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ota-product-card__action:hover {
    background: var(--ota-green);
    color: var(--ota-ivory);
}

.ota-empty {
    border: 1px solid rgba(184, 134, 69, 0.32);
    background: rgba(248, 238, 216, 0.68);
    padding: 34px;
    text-align: center;
    color: var(--ota-muted);
    font-size: 17px;
}

/* Minimal layout */

.ota-home--minimal {
    font-family: var(--ota-font-body);
}

.ota-hero-minimal {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 132px) 20px;
    text-align: center;
    border-bottom: 1px solid rgba(184, 134, 69, 0.34);
    background:
        linear-gradient(180deg, rgba(248, 238, 216, 0.78), rgba(239, 224, 194, 0.68)),
        url("/assets/images/parchment_background.png");
    background-size: cover;
    background-position: center;
}

.ota-hero-minimal::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(184, 134, 69, 0.34);
    pointer-events: none;
}

.ota-hero-minimal__inner {
    max-width: 850px;
}

.ota-hero-minimal .ota-title {
    font-size: clamp(38px, 6vw, 72px);
    margin: 14px 0 18px;
    line-height: 1.04;
}

.ota-hero-minimal .ota-copy {
    margin: 0 auto 34px;
    max-width: 690px;
    color: var(--ota-muted);
    font-size: clamp(17px, 2vw, 21px);
}

.ota-section--showcase {
    padding-top: 76px;
}

/* Responsive */

@media (max-width: 1180px) {
    .ota-product-grid,
    .ota-product-grid--minimal {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1050px) {
    .ota-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ota-hero__content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .ota-hero__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ota-hero__content .ota-button-row {
        justify-content: center;
    }

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

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

    .ota-trust__item:nth-child(odd) {
        border-left: 0;
    }

    .ota-about-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ota-about__image {
        border-right: 0;
        border-bottom: 1px solid rgba(184, 134, 69, 0.28);
        padding-bottom: 22px;
    }
}

@media (max-width: 820px) {
    .ota-hero {
        min-height: auto;
    }

    .ota-hero::before {
        inset: 12px;
    }

    .ota-hero__grid {
        min-height: auto;
        padding: 64px 0 46px;
    }

    .ota-hero__content h1 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .ota-hero__visual {
        min-height: auto;
    }

    .ota-hero__frame {
        width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ota-hero__frame::before {
        display: none;
    }

    .ota-hero__media {
        width: 100%;
        height: clamp(260px, 62vw, 420px);
    }

    .ota-hero__feature-card {
        position: static;
        max-width: 100%;
        text-align: left;
    }

    .ota-section {
        padding: 56px 0;
    }

    .ota-section__heading--split {
        display: block;
        text-align: center;
    }

    .ota-section__heading--split .ota-eyebrow {
        justify-content: center;
    }

    .ota-collection-grid,
    .ota-product-grid,
    .ota-product-grid--minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ota-trust__grid {
        grid-template-columns: 1fr;
    }

    .ota-trust__item {
        min-height: 92px;
        border-left: 0;
        border-bottom: 1px solid rgba(207, 162, 96, 0.22);
    }

    .ota-button-row {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .ota-shell {
        width: min(100% - 24px, 1220px);
    }

    .ota-eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .ota-eyebrow::before,
    .ota-eyebrow::after {
        width: 22px;
    }

    .ota-button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ota-button {
        width: 100%;
        padding: 0 20px;
    }

    .ota-collection-grid,
    .ota-product-grid,
    .ota-product-grid--minimal {
        grid-template-columns: 1fr;
    }

    .ota-product-card__media,
    .ota-product-card__placeholder {
        aspect-ratio: 1 / 0.70;
    }

    .ota-product-card h3 {
        min-height: auto;
    }

    .ota-product-card__meta {
        min-height: auto;
    }

    .ota-about-panel,
    .ota-story-panel--centered {
        padding: 24px;
    }
}

@media (max-width: 430px) {
    .ota-hero__grid {
        padding-top: 48px;
    }

    .ota-hero__content p,
    .ota-copy {
        font-size: 16px;
    }

    .ota-hero__feature-card {
        padding: 18px;
    }

    .ota-hero__feature-card h2 {
        font-size: 20px;
    }

    .ota-product-card__body {
        padding: 15px;
    }

    .ota-product-card__action {
        margin: auto 15px 15px;
    }
}
