/* =========================================================================
   m7 · Botanic 植物商行 · Organic handcrafted earth-palette shop skin
   Sage cream backgrounds, deep forest green text, terracotta CTAs,
   editorial Newsreader serif + Atkinson Hyperlegible body + Dancing Script
   ========================================================================= */

:root {
    --m7-bg: #f0ebe0;
    --m7-bg-2: #e5dec9;
    --m7-card: #fdfaf2;
    --m7-ink: #1a3026;
    --m7-ink-2: #3a4a3e;
    --m7-ink-3: #6b7468;
    --m7-ink-4: #9ca196;
    --m7-line: rgba(26, 48, 38, 0.16);
    --m7-line-2: rgba(26, 48, 38, 0.08);
    --m7-terracotta: #c4561d;
    --m7-terracotta-h: #a3491b;
    --m7-mustard: #c89f3e;

    --m7-display: "Newsreader", "Source Han Serif SC", "Songti SC", serif;
    --m7-body: "Atkinson Hyperlegible", "Source Han Serif SC", "Songti SC", serif;
    --m7-script: "Dancing Script", "Source Han Serif SC", cursive;
    --m7-cn: "Source Han Serif SC", "Songti SC", serif;
}

/* SEO hidden h1 */
.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----- base reset & typography ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--m7-bg);
    color: var(--m7-ink-2);
    font-family: var(--m7-body);
    font-size: 15px;
    line-height: 1.85;
    font-feature-settings: "lnum" 1, "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.005em;
}
img { max-width: 100%; display: block; border: 0; }
a { color: var(--m7-ink); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--m7-terracotta); }
h1, h2, h3, h4, h5 { font-family: var(--m7-display); color: var(--m7-ink); font-weight: 600; line-height: 1.25; margin: 0; }
em, i { font-style: italic; }
button { font-family: inherit; }

/* ----- shell ----- */
.m7-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ----- inline svg leaf decorations (used as background-image) ----- */
.m7-leaf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 64px 0;
    color: var(--m7-terracotta);
    opacity: 0.55;
}
.m7-leaf-divider::before,
.m7-leaf-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--m7-line), transparent);
}
.m7-leaf-divider svg { width: 28px; height: 28px; }

/* ----- header ----- */
.m7-mast {
    background: var(--m7-bg);
    border-bottom: 1px solid var(--m7-line-2);
    position: relative;
}
.m7-mast-top {
    border-bottom: 1px solid var(--m7-line-2);
    background: var(--m7-bg-2);
    font-size: 12.5px;
    color: var(--m7-ink-3);
    letter-spacing: 0.02em;
}
.m7-mast-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.m7-mast-top-row .script {
    font-family: var(--m7-script);
    font-size: 16px;
    color: var(--m7-terracotta);
    font-style: italic;
    transform: rotate(-2deg);
    display: inline-block;
}
.m7-mast-top-row a { color: var(--m7-ink-2); margin: 0 6px; }
.m7-mast-top-row a:hover { color: var(--m7-terracotta); }
.m7-mast-top-row .sep { color: var(--m7-ink-4); margin: 0 4px; }

.m7-mast-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
}

.m7-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--m7-ink);
}
.m7-brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--m7-card);
    border: 1px solid var(--m7-line);
    padding: 4px;
}
.m7-brand-text .h1 {
    display: block;
    font-family: var(--m7-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--m7-ink);
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.m7-brand-text p {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--m7-ink-3);
    letter-spacing: 0.02em;
    max-width: 340px;
}

.m7-mast-cta {
    text-align: right;
    border-left: 1px dashed var(--m7-line);
    padding-left: 32px;
}
.m7-mast-cta small {
    display: block;
    font-family: var(--m7-script);
    font-size: 16px;
    font-style: italic;
    color: var(--m7-terracotta);
    transform: rotate(-2deg);
    transform-origin: left;
}
.m7-mast-cta strong {
    display: block;
    font-family: var(--m7-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--m7-ink);
    margin-top: 2px;
    font-feature-settings: "lnum" 1;
}

/* ----- nav ----- */
.m7-nav {
    border-top: 1px solid var(--m7-line);
    border-bottom: 1px solid var(--m7-line);
    background: var(--m7-card);
}
.m7-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
}
.m7-nav-inner a {
    flex: 1;
    text-align: center;
    padding: 18px 14px;
    font-family: var(--m7-display);
    font-size: 16px;
    color: var(--m7-ink-2);
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    border-right: 1px solid var(--m7-line-2);
}
.m7-nav-inner a:last-child { border-right: 0; }
.m7-nav-inner a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 2px;
    background: var(--m7-terracotta);
    transition: transform .3s ease;
}
.m7-nav-inner a:hover { color: var(--m7-ink); background: var(--m7-bg-2); }
.m7-nav-inner a:hover::before,
.m7-nav-inner a.is-active::before { transform: translateX(-50%) scaleX(1); }
.m7-nav-inner a.is-active { color: var(--m7-ink); font-style: italic; }

/* ----- section ----- */
.m7-section { padding: 112px 0; position: relative; }
.m7-section-sm { padding: 32px 0; }
.m7-section-h {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--m7-line);
    flex-wrap: wrap;
}
.m7-section-h h2 {
    font-family: var(--m7-display);
    font-size: 38px;
    font-weight: 500;
    font-style: italic;
    color: var(--m7-ink);
    letter-spacing: 0.005em;
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}
.m7-section-h h2 .m7-leaf {
    width: 28px;
    height: 28px;
    color: var(--m7-terracotta);
    opacity: 0.7;
    flex-shrink: 0;
}
.m7-section-h h2 small {
    display: block;
    font-family: var(--m7-script);
    font-size: 22px;
    color: var(--m7-terracotta);
    font-style: italic;
    font-weight: 500;
    transform: rotate(-2deg);
    margin-top: 4px;
    letter-spacing: 0;
}
.m7-section-h .more {
    font-family: var(--m7-display);
    font-style: italic;
    color: var(--m7-terracotta);
    font-size: 15px;
    border-bottom: 1px solid var(--m7-terracotta);
    padding-bottom: 2px;
}
.m7-section-h .more:hover { color: var(--m7-terracotta-h); border-bottom-color: var(--m7-terracotta-h); }

/* eyebrow script */
.m7-eyebrow {
    font-family: var(--m7-script);
    font-size: 24px;
    color: var(--m7-terracotta);
    font-style: italic;
    font-weight: 500;
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 12px;
}

/* ----- hero ----- */
.m7-hero {
    padding: 96px 0 112px;
    background: var(--m7-bg);
    position: relative;
    overflow: hidden;
}
.m7-hero::before {
    /* faint botanical motif top-left */
    content: "";
    position: absolute;
    top: 32px;
    left: -20px;
    width: 220px;
    height: 220px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%231a3026' stroke-width='1' stroke-linecap='round' opacity='0.18'%3E%3Cpath d='M50 95 Q50 60 50 10'/%3E%3Cpath d='M50 75 Q35 70 25 55' /%3E%3Cpath d='M50 75 Q65 70 75 55' /%3E%3Cpath d='M50 60 Q35 55 28 42'/%3E%3Cpath d='M50 60 Q65 55 72 42'/%3E%3Cpath d='M50 45 Q38 40 32 30'/%3E%3Cpath d='M50 45 Q62 40 68 30'/%3E%3Cpath d='M50 30 Q42 25 38 18'/%3E%3Cpath d='M50 30 Q58 25 62 18'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
.m7-hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.m7-hero h1 {
    font-family: var(--m7-display);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--m7-ink);
    letter-spacing: -0.005em;
    margin: 0 0 24px;
}
.m7-hero h1 em {
    font-style: italic;
    color: var(--m7-terracotta);
}
.m7-hero .lead {
    font-family: var(--m7-body);
    font-size: 17px;
    line-height: 1.85;
    color: var(--m7-ink-2);
    max-width: 560px;
    margin: 0 0 36px;
}
.m7-hero-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--m7-ink);
    box-shadow: 0 0 0 1px rgba(196, 86, 29, 0.18) inset, 0 24px 60px -20px rgba(26, 48, 38, 0.25);
    aspect-ratio: 4 / 5;
}
.m7-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m7-hero-img::before {
    /* fern at top right */
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cg fill='%23c4561d'%3E%3Cpath d='M30 8 C24 18 20 28 20 40 L23 40 C24 30 27 20 32 12 Z'/%3E%3Cpath d='M30 16 C36 20 40 26 40 36 L37 36 C36 28 33 22 28 18 Z'/%3E%3Cpath d='M22 24 C16 28 14 34 14 42 L17 42 C18 36 20 30 24 26 Z'/%3E%3Cpath d='M38 28 C44 30 46 36 46 44 L43 44 C42 38 40 32 36 30 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
    opacity: 0.95;
    transform: rotate(12deg);
}

/* ----- buttons ----- */
.m7-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.m7-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--m7-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
    line-height: 1;
}
.m7-btn-primary {
    background: var(--m7-terracotta);
    color: var(--m7-card);
    border-color: var(--m7-terracotta);
}
.m7-btn-primary:hover {
    background: var(--m7-terracotta-h);
    border-color: var(--m7-terracotta-h);
    color: var(--m7-card);
    transform: translateY(-1px);
}
.m7-btn-outline {
    background: transparent;
    color: var(--m7-ink);
    border-color: var(--m7-ink);
}
.m7-btn-outline:hover {
    background: var(--m7-ink);
    color: var(--m7-card);
}

/* ----- hero stats ----- */
.m7-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px dashed var(--m7-line);
    max-width: 600px;
}
.m7-hero-stats .stat {
    display: flex;
    flex-direction: column;
}
.m7-hero-stats .stat strong {
    font-family: var(--m7-display);
    font-size: 32px;
    font-weight: 500;
    font-style: italic;
    color: var(--m7-ink);
    line-height: 1;
}
.m7-hero-stats .stat span {
    font-family: var(--m7-script);
    font-size: 16px;
    color: var(--m7-terracotta);
    margin-top: 6px;
    transform: rotate(-1deg);
    display: inline-block;
    transform-origin: left;
}

/* ----- product grid (asymmetric staggered) ----- */
.m7-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}
.m7-grid > a:nth-child(2),
.m7-grid > a:nth-child(5),
.m7-grid > a:nth-child(8),
.m7-grid > a:nth-child(11) {
    margin-top: 24px;
}
.m7-grid-flat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.m7-card {
    display: block;
    background: var(--m7-card);
    border-radius: 14px;
    border: 1px solid var(--m7-line-2);
    overflow: hidden;
    transition: all .35s ease;
    color: inherit;
    position: relative;
}
.m7-card:hover {
    transform: translateY(-4px);
    border-color: var(--m7-terracotta);
    box-shadow: 0 18px 40px -18px rgba(26, 48, 38, 0.25);
    color: inherit;
}
.m7-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--m7-bg-2);
    border-radius: 14px 14px 0 0;
    position: relative;
}
.m7-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.m7-card:hover .m7-card-img img { transform: scale(1.04); }
.m7-card-tag-script {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--m7-script);
    font-size: 18px;
    font-style: italic;
    color: var(--m7-terracotta);
    background: var(--m7-card);
    padding: 2px 12px;
    border-radius: 999px;
    transform: rotate(-2deg);
    border: 1px solid var(--m7-line);
}
.m7-card-body {
    padding: 22px 22px 24px;
}
.m7-card-title {
    margin: 0 0 12px;
    font-family: var(--m7-display);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: var(--m7-ink);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 50px;
}
.m7-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px dashed var(--m7-line-2);
    padding-top: 12px;
}
.m7-card-price {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    color: var(--m7-terracotta);
    font-feature-settings: "lnum" 1;
    line-height: 1;
}
.m7-card-tag {
    font-family: var(--m7-script);
    font-style: italic;
    font-size: 16px;
    color: var(--m7-mustard);
    transform: rotate(-2deg);
    display: inline-block;
}

/* ----- product layout (sidebar + grid) ----- */
.m7-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
}
.m7-side > * + * { margin-top: 24px; }
.m7-side-card {
    background: var(--m7-card);
    border: 1px solid var(--m7-line);
    border-radius: 14px;
    padding: 24px;
}
.m7-side-card h3 {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--m7-ink);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--m7-line-2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.m7-side-card h3 .script {
    font-family: var(--m7-script);
    font-size: 16px;
    color: var(--m7-terracotta);
    transform: rotate(-2deg);
    display: inline-block;
}
.m7-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m7-side-list li {
    padding: 0;
}
.m7-side-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--m7-ink-2);
    border-bottom: 1px dashed var(--m7-line-2);
    transition: all .2s ease;
}
.m7-side-list a::before {
    content: "•";
    color: var(--m7-mustard);
    font-size: 20px;
    line-height: 1;
}
.m7-side-list li:last-child a { border-bottom: 0; }
.m7-side-list a:hover { color: var(--m7-terracotta); padding-left: 4px; }
.m7-side-list a:hover::before { color: var(--m7-terracotta); }

.m7-side-tel {
    font-family: var(--m7-display);
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    color: var(--m7-terracotta);
    font-feature-settings: "lnum" 1;
    margin: 0;
}
.m7-side-tel-label {
    font-family: var(--m7-script);
    font-size: 16px;
    color: var(--m7-ink-3);
    margin: 0 0 4px;
    transform: rotate(-1deg);
    display: inline-block;
}

/* ----- pager ----- */
.m7-pager {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}
.m7-pager .pagination,
.m7-pager ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.m7-pager .pagination li,
.m7-pager ul li { display: inline-block; }
.m7-pager .pagination li a,
.m7-pager .pagination li span,
.m7-pager ul li a,
.m7-pager ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--m7-line);
    color: var(--m7-ink-2);
    font-family: var(--m7-display);
    font-size: 14px;
    background: var(--m7-card);
}
.m7-pager .pagination li.active span,
.m7-pager .pagination li.current span,
.m7-pager .pagination li.is-active a {
    background: var(--m7-terracotta);
    border-color: var(--m7-terracotta);
    color: var(--m7-card);
    font-style: italic;
}
.m7-pager a:hover { border-color: var(--m7-terracotta); color: var(--m7-terracotta); }

/* ----- product detail ----- */
.m7-prod-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.m7-prod-img {
    border-radius: 16px;
    overflow: hidden;
    background: var(--m7-card);
    border: 1px solid var(--m7-line);
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px -24px rgba(26, 48, 38, 0.25);
    position: relative;
}
.m7-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.m7-prod-info h1 {
    font-family: var(--m7-display);
    font-size: 38px;
    font-weight: 500;
    font-style: italic;
    color: var(--m7-ink);
    line-height: 1.2;
    margin: 0 0 16px;
}
.m7-prod-info .eyebrow {
    font-family: var(--m7-script);
    font-size: 22px;
    color: var(--m7-terracotta);
    font-style: italic;
    margin-bottom: 8px;
    transform: rotate(-2deg);
    display: inline-block;
}
.m7-prod-price-box {
    margin: 24px 0 32px;
    padding: 24px 28px;
    background: var(--m7-card);
    border: 1px solid var(--m7-line);
    border-radius: 14px;
    border-left: 4px solid var(--m7-terracotta);
}
.m7-prod-price {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 600;
    font-size: 44px;
    color: var(--m7-terracotta);
    line-height: 1;
    font-feature-settings: "lnum" 1;
}
.m7-prod-price small {
    font-family: var(--m7-body);
    font-style: normal;
    font-weight: 400;
    color: var(--m7-ink-3);
    font-size: 14px;
    margin-left: 10px;
}
.m7-prod-attrs {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px 20px;
    margin: 0 0 32px;
    padding: 24px 0;
    border-top: 1px dashed var(--m7-line);
    border-bottom: 1px dashed var(--m7-line);
}
.m7-prod-attrs dt {
    font-family: var(--m7-script);
    font-size: 17px;
    color: var(--m7-terracotta);
    font-style: italic;
}
.m7-prod-attrs dd {
    margin: 0;
    color: var(--m7-ink);
    font-size: 14.5px;
}
.m7-prod-attrs dd a { color: var(--m7-ink); border-bottom: 1px solid var(--m7-line); }
.m7-prod-attrs dd a:hover { color: var(--m7-terracotta); border-bottom-color: var(--m7-terracotta); }

/* ----- prose (about_us / news content) ----- */
.m7-prose {
    font-family: var(--m7-body);
    font-size: 16px;
    line-height: 1.95;
    color: var(--m7-ink-2);
    max-width: 760px;
    margin: 0 auto;
}
.m7-prose p { margin: 0 0 1.5em; }
.m7-prose h2, .m7-prose h3 {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 500;
    color: var(--m7-ink);
    margin: 1.8em 0 0.6em;
    line-height: 1.3;
}
.m7-prose h2 { font-size: 30px; }
.m7-prose h3 { font-size: 22px; }
.m7-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5em 0;
    border: 1px solid var(--m7-line-2);
}
.m7-prose ul, .m7-prose ol { padding-left: 1.4em; margin: 0 0 1.5em; }
.m7-prose ul li { list-style: none; position: relative; padding-left: 4px; margin-bottom: 0.4em; }
.m7-prose ul li::before {
    content: "•";
    color: var(--m7-mustard);
    position: absolute;
    left: -1.1em;
    font-size: 22px;
    line-height: 1;
}
.m7-prose ol li { margin-bottom: 0.4em; }
.m7-prose a {
    color: var(--m7-terracotta);
    border-bottom: 1px solid var(--m7-line);
}
.m7-prose a:hover { border-bottom-color: var(--m7-terracotta); }
.m7-prose blockquote {
    margin: 1.5em 0;
    padding: 4px 24px;
    border-left: 3px solid var(--m7-terracotta);
    font-family: var(--m7-display);
    font-style: italic;
    font-size: 19px;
    color: var(--m7-ink);
}

/* prose with leaf flourishes between paragraphs */
.m7-prose-leafy > p:not(:last-child)::after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    margin: 28px auto 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cg fill='%23c4561d' opacity='0.55'%3E%3Cpath d='M18 6 C12 12 8 18 8 26 L11 26 C12 20 14 14 18 10 Z' /%3E%3Cpath d='M18 6 C24 12 28 18 28 26 L25 26 C24 20 22 14 18 10 Z' /%3E%3Cpath d='M17 26 L17 32 L19 32 L19 26 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.m7-prose-leafy > p:nth-child(even)::after {
    transform: rotate(180deg);
}

/* ----- news list ----- */
.m7-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.m7-news-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 22px;
    background: var(--m7-card);
    border: 1px solid var(--m7-line-2);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    transition: all .3s ease;
}
.m7-news-card:hover {
    border-color: var(--m7-terracotta);
    box-shadow: 0 18px 40px -18px rgba(26, 48, 38, 0.18);
}
.m7-news-thumb {
    aspect-ratio: 3 / 2;
    background: var(--m7-bg-2);
    overflow: hidden;
}
.m7-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.m7-news-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m7-mustard);
    background: var(--m7-bg-2);
    height: 100%;
}
.m7-news-thumb-empty svg { width: 48px; height: 48px; opacity: 0.7; }
.m7-news-body {
    padding: 22px 24px 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.m7-news-tag {
    font-family: var(--m7-script);
    font-size: 17px;
    color: var(--m7-mustard);
    font-style: italic;
    transform: rotate(-2deg);
    display: inline-block;
    align-self: flex-start;
}
.m7-news-card h3 {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    color: var(--m7-ink);
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.m7-news-card h3 a { color: inherit; }
.m7-news-card h3 a:hover { color: var(--m7-terracotta); }
.m7-news-summary {
    font-size: 13.5px;
    color: var(--m7-ink-3);
    line-height: 1.7;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.m7-news-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: var(--m7-terracotta);
    font-family: var(--m7-display);
    font-style: italic;
    font-feature-settings: "lnum" 1;
}

/* ----- contact ----- */
.m7-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.m7-contact-info {
    background: var(--m7-card);
    border: 1px solid var(--m7-terracotta);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 18px 40px -24px rgba(196, 86, 29, 0.25);
}
.m7-contact-info dl {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px 24px;
    margin: 0;
}
.m7-contact-info dt {
    font-family: var(--m7-script);
    font-size: 18px;
    color: var(--m7-terracotta);
    font-style: italic;
}
.m7-contact-info dd {
    margin: 0;
    color: var(--m7-ink);
    font-size: 14.5px;
    border-bottom: 1px dashed var(--m7-line-2);
    padding-bottom: 12px;
    line-height: 1.7;
}
.m7-contact-info dd:last-of-type { border-bottom: 0; }
.m7-contact-info dd a { color: var(--m7-ink); }
.m7-contact-info dd a:hover { color: var(--m7-terracotta); }

.m7-contact-qr {
    background: var(--m7-card);
    border: 1px solid var(--m7-ink);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    aspect-ratio: 1 / 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.m7-contact-qr img {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--m7-line);
    padding: 14px;
    background: #fff;
}
.m7-contact-qr p {
    margin: 0;
    font-family: var(--m7-script);
    font-size: 22px;
    color: var(--m7-terracotta);
    font-style: italic;
    transform: rotate(-1deg);
    display: inline-block;
}
.m7-contact-qr small {
    font-family: var(--m7-body);
    font-size: 12.5px;
    color: var(--m7-ink-3);
}

/* breadcrumb */
.m7-crumb {
    font-size: 13px;
    color: var(--m7-ink-3);
    padding: 16px 0;
    font-family: var(--m7-body);
}
.m7-crumb a { color: var(--m7-ink-2); }
.m7-crumb a:hover { color: var(--m7-terracotta); }
.m7-crumb .sep { margin: 0 8px; color: var(--m7-mustard); }

/* news header */
.m7-news-header {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--m7-line);
    position: relative;
}
.m7-news-header::after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    margin: 32px auto -18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cg fill='%23c4561d'%3E%3Cpath d='M18 6 C12 12 8 18 8 26 L11 26 C12 20 14 14 18 10 Z' /%3E%3Cpath d='M18 6 C24 12 28 18 28 26 L25 26 C24 20 22 14 18 10 Z' /%3E%3Cpath d='M17 26 L17 32 L19 32 L19 26 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.m7-news-header h1 {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 500;
    font-size: 40px;
    color: var(--m7-ink);
    line-height: 1.25;
    margin: 0 0 18px;
}
.m7-news-header .meta {
    font-family: var(--m7-display);
    font-style: italic;
    font-size: 14px;
    color: var(--m7-terracotta);
    font-feature-settings: "lnum" 1;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.m7-news-header .meta span { color: var(--m7-ink-3); }
.m7-news-header .meta .date { color: var(--m7-terracotta); }

/* info cards */
.m7-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}
.m7-info-card {
    background: var(--m7-card);
    border: 1px solid var(--m7-line);
    border-radius: 14px;
    padding: 28px;
}
.m7-info-card h3 {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    color: var(--m7-ink);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.m7-info-card h3 .script {
    font-family: var(--m7-script);
    font-weight: 500;
    font-size: 14px;
    color: var(--m7-terracotta);
    transform: rotate(-2deg);
    display: inline-block;
}
.m7-info-card p {
    margin: 0;
    color: var(--m7-ink-2);
    font-size: 14.5px;
    line-height: 1.75;
}
.m7-info-card .verified { color: var(--m7-terracotta); font-weight: 600; }

/* sitemap */
.m7-sitemap-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
}
.m7-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    margin: 0;
    padding: 0;
}
.m7-sitemap-grid li {
    list-style: none;
    border-bottom: 1px dashed var(--m7-line-2);
    padding: 10px 0;
}
.m7-sitemap-grid li::before {
    content: "•";
    color: var(--m7-mustard);
    font-size: 18px;
    margin-right: 10px;
}
.m7-sitemap-grid a { color: var(--m7-ink-2); }
.m7-sitemap-grid a:hover { color: var(--m7-terracotta); }

/* empty state */
.m7-empty {
    padding: 80px 0;
    text-align: center;
    color: var(--m7-ink-3);
    font-family: var(--m7-display);
    font-style: italic;
    font-size: 18px;
}
.m7-empty .script {
    display: block;
    font-family: var(--m7-script);
    font-size: 22px;
    color: var(--m7-terracotta);
    margin-bottom: 8px;
}

/* ----- footer ----- */
.m7-footer {
    background: var(--m7-ink);
    color: rgba(240, 235, 224, 0.78);
    padding: 0 0 32px;
    margin-top: 64px;
    position: relative;
}
.m7-footer::before {
    /* leaf-vine top edge */
    content: "";
    display: block;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 28' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23c89f3e' stroke-width='1.2' stroke-linecap='round' opacity='0.7'%3E%3Cpath d='M0 14 Q12 6 24 14 T48 14 T72 14 T96 14 T120 14 T144 14 T168 14 T192 14 T216 14'/%3E%3Cpath d='M12 14 L12 8 M36 14 L36 8 M60 14 L60 8 M84 14 L84 8 M108 14 L108 8 M132 14 L132 8 M156 14 L156 8 M180 14 L180 8'/%3E%3Cellipse cx='12' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='36' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='60' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='84' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='108' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='132' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='156' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3Cellipse cx='180' cy='6' rx='3' ry='2' fill='%23c89f3e'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 200px 28px;
}
.m7-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(240, 235, 224, 0.14);
}
.m7-footer h4 {
    font-family: var(--m7-display);
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: var(--m7-bg);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.m7-footer h4 .script {
    font-family: var(--m7-script);
    font-size: 14px;
    color: var(--m7-mustard);
    transform: rotate(-2deg);
    display: inline-block;
}
.m7-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m7-footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.m7-footer ul li::before {
    content: "•";
    color: var(--m7-mustard);
    margin-right: 10px;
}
.m7-footer a {
    color: rgba(240, 235, 224, 0.78);
}
.m7-footer a:hover {
    color: var(--m7-mustard);
}
.m7-footer-brand p {
    color: rgba(240, 235, 224, 0.65);
    font-size: 13.5px;
    line-height: 1.85;
    margin: 0 0 16px;
    max-width: 320px;
}
.m7-footer-brand .name {
    font-family: var(--m7-display);
    font-style: italic;
    font-size: 24px;
    color: var(--m7-bg);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}
.m7-footer-brand .script {
    font-family: var(--m7-script);
    font-size: 18px;
    color: var(--m7-mustard);
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 8px;
}
.m7-footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(240, 235, 224, 0.55);
}
.m7-footer-bottom .links a {
    margin-left: 18px;
}

/* ----- responsive ----- */
@media (max-width: 1024px) {
    .m7-shell { padding: 0 24px; }
    .m7-mast-row { grid-template-columns: auto 1fr; }
    .m7-mast-cta { display: none; }
    .m7-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .m7-hero h1 { font-size: 48px; }
    .m7-prod-grid { grid-template-columns: 1fr; gap: 40px; }
    .m7-layout { grid-template-columns: 1fr; }
    .m7-grid, .m7-grid-flat { grid-template-columns: repeat(2, 1fr); }
    .m7-grid > a:nth-child(2),
    .m7-grid > a:nth-child(5),
    .m7-grid > a:nth-child(8),
    .m7-grid > a:nth-child(11) { margin-top: 0; }
    .m7-news-grid { grid-template-columns: 1fr; }
    .m7-contact-grid { grid-template-columns: 1fr; }
    .m7-info-cards { grid-template-columns: 1fr; }
    .m7-sitemap-layout { grid-template-columns: 1fr; }
    .m7-footer-grid { grid-template-columns: 1fr 1fr; }
    .m7-section { padding: 80px 0; }
    .m7-section-h h2 { font-size: 30px; }
}
@media (max-width: 768px) {
    .m7-shell { padding: 0 18px; }
    .m7-mast-top-row { flex-direction: column; gap: 4px; }
    .m7-nav-inner { gap: 0; }
    .m7-nav-inner a { flex: 0 0 50%; padding: 14px 8px; font-size: 14px; border-bottom: 1px solid var(--m7-line-2); }
    .m7-hero { padding: 56px 0 72px; }
    .m7-hero h1 { font-size: 36px; }
    .m7-hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .m7-grid, .m7-grid-flat { grid-template-columns: 1fr; gap: 24px; }
    .m7-news-card { grid-template-columns: 1fr; }
    .m7-news-body { padding: 0 22px 22px; }
    .m7-section { padding: 56px 0; }
    .m7-section-h { flex-direction: column; align-items: flex-start; gap: 12px; }
    .m7-section-h h2 { font-size: 26px; }
    .m7-prod-info h1 { font-size: 28px; }
    .m7-prod-price { font-size: 32px; }
    .m7-contact-info { padding: 28px; }
    .m7-contact-info dl { grid-template-columns: 1fr; gap: 4px 0; }
    .m7-contact-info dd { padding-bottom: 8px; margin-bottom: 8px; }
    .m7-sitemap-grid { grid-template-columns: 1fr; }
    .m7-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
    .m7-footer-bottom { flex-direction: column; align-items: flex-start; }
    .m7-footer-bottom .links a { margin: 0 16px 0 0; }
    .m7-news-header h1 { font-size: 28px; }
}
