@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
    --bg-1: #f5f1e8;
    --bg-2: #edf3ec;
    --surface: #fffdf7;
    --surface-soft: #f4f8f2;
    --text: #213126;
    --muted: #5f7062;
    --primary: #3f6a4f;
    --primary-strong: #2f5440;
    --accent: #bc8a4d;
    --line: #d5ddd3;
    --line-strong: #b9c6ba;
    --shadow-soft: 0 14px 34px rgba(31, 47, 37, 0.08);
    --shadow-card: 0 24px 54px rgba(21, 36, 29, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(900px 540px at 12% 8%, rgba(63, 106, 79, 0.14), transparent 68%),
        radial-gradient(760px 420px at 88% 92%, rgba(188, 138, 77, 0.16), transparent 72%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
    line-height: 1.55;
}

body.dark-mode {
    --bg-1: #111915;
    --bg-2: #15231d;
    --surface: #1f2f27;
    --surface-soft: #24382f;
    --text: #deece2;
    --muted: #afc2b5;
    --primary: #78b88e;
    --primary-strong: #9ad4b0;
    --accent: #d6a877;
    --line: #355042;
    --line-strong: #466858;
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.34);
    --shadow-card: 0 24px 54px rgba(0, 0, 0, 0.42);
    color-scheme: dark;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-main {
    padding-top: 136px;
}

.reveal {
    animation: revealUp 0.65s ease both;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
}

.site-topbar {
    background: var(--primary-strong);
    color: #f5fbf6;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-topbar .container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header-main {
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(84, 112, 93, 0.16);
    box-shadow: 0 8px 24px rgba(30, 45, 36, 0.07);
}

.site-header-row {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.site-brand-logo {
    display: block;
    width: auto;
    height: clamp(68px, 7.2vw, 98px);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}

.site-nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav-link:hover {
    color: var(--primary-strong);
    background: rgba(63, 106, 79, 0.11);
}

.site-nav-link.active {
    color: #f7fcf7;
    background: var(--primary);
}

.site-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-cta-primary {
    background: var(--primary);
    color: #f4faf5;
    padding: 12px 18px;
    box-shadow: 0 8px 18px rgba(63, 106, 79, 0.25);
}

.site-cta-primary:hover {
    background: var(--primary-strong);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(63, 106, 79, 0.28);
}

.site-utility-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.76);
    color: var(--primary-strong);
    padding: 0 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-mini-link {
    text-decoration: none;
}

.site-mini-icon {
    width: 17px;
    height: 17px;
    display: block;
}

.site-mini-btn:hover {
    background: #f8fcf8;
    border-color: var(--primary);
}

.site-mini-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

#site-theme-toggle {
    min-width: 34px;
    padding: 0;
    font-size: 0.94rem;
    letter-spacing: 0;
}

.site-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
    background: #f7fbf7;
    color: var(--primary-strong);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.site-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 16px;
}

.site-nav-mobile .site-nav-link {
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
}

.site-nav-mobile.is-open {
    display: flex;
}

body.dark-mode .site-topbar {
    background: #0d1512;
    color: #d9e8de;
}

body.dark-mode .site-header-main {
    background: rgba(19, 30, 25, 0.92);
    border-bottom-color: rgba(128, 168, 144, 0.26);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

body.dark-mode .site-nav-link.active {
    color: #102117;
}

body.dark-mode .site-nav-mobile .site-nav-link {
    background: rgba(25, 38, 32, 0.94);
}

body.dark-mode .site-cta-primary {
    color: #122119;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

body.dark-mode .btn-primary {
    color: #122119;
}

body.dark-mode .btn-ghost {
    background: rgba(29, 43, 36, 0.78);
    color: #d5e8dc;
    border-color: var(--line-strong);
}

body.dark-mode .site-mini-btn {
    background: rgba(28, 42, 35, 0.92);
    color: #cce4d7;
}

body.dark-mode .site-mini-btn:hover {
    background: rgba(35, 52, 44, 0.96);
}

body.dark-mode .site-nav-toggle {
    background: #21352b;
    color: #d0e4d8;
    border-color: var(--line-strong);
}

.offer-strip {
    padding: 28px 0 0;
}

.offer-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 20px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid #e3d0b2;
    background:
        radial-gradient(120% 180% at 95% 10%, rgba(188, 138, 77, 0.16), transparent 55%),
        linear-gradient(135deg, #fff9ef 0%, #fff3df 100%);
    box-shadow: 0 12px 24px rgba(83, 61, 36, 0.1);
}

body.dark-mode .offer-banner {
    border-color: #6f6048;
    background:
        radial-gradient(120% 180% at 95% 10%, rgba(214, 168, 119, 0.16), transparent 55%),
        linear-gradient(135deg, #2a241a 0%, #221e16 100%);
}

body.dark-mode .offer-kicker {
    color: #d8b48a;
}

body.dark-mode .offer-title {
    color: #f2e6d7;
}

body.dark-mode .offer-title strong {
    color: #112217;
    background: rgba(154, 212, 176, 0.84);
}

.offer-copy {
    display: grid;
    gap: 4px;
}

.offer-kicker {
    margin: 0;
    color: #7f5a32;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.offer-title {
    margin: 0;
    color: #3f2d1b;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    line-height: 1.2;
}

.offer-title strong {
    color: var(--primary-strong);
    background: rgba(63, 106, 79, 0.12);
    border-radius: 999px;
    padding: 2px 8px;
}

.offer-cta {
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(63, 106, 79, 0.22);
}

.page-hero {
    padding: 18px 0 12px;
}

.hero-shell {
    background: linear-gradient(135deg, var(--surface) 0%, #f2f7f0 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: center;
    padding: clamp(26px, 3.6vw, 44px);
}

.hero-kicker {
    margin: 0 0 10px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.hero-title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 4.6vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.hero-text {
    margin: 16px 0 0;
    color: var(--muted);
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #f6fbf6;
    box-shadow: 0 8px 20px rgba(63, 106, 79, 0.25);
}

.btn-primary:hover {
    background: var(--primary-strong);
    transform: translateY(-1px);
}

.btn-ghost {
    border: 1px solid var(--line-strong);
    color: var(--primary-strong);
    background: rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f8fcf7;
}

.hero-media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(87, 115, 95, 0.25);
    box-shadow: 0 14px 30px rgba(39, 57, 45, 0.18);
    aspect-ratio: 4 / 5;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: 64px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(115, 139, 122, 0.16);
    border-bottom: 1px solid rgba(115, 139, 122, 0.16);
}

.section-title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-intro {
    margin: 14px 0 0;
    color: var(--muted);
    max-width: 70ch;
}

.feature-grid,
.process-grid,
.product-grid,
.article-grid,
.routine-grid,
.info-grid {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.feature-grid,
.process-grid,
.routine-grid,
.info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.process-card,
.routine-card,
.info-card,
.product-card,
.article-card,
.contact-card,
.contact-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.feature-card,
.process-card,
.routine-card,
.info-card,
.contact-panel {
    padding: 22px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(63, 106, 79, 0.12);
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

body.dark-mode .card-icon {
    background: rgba(120, 184, 142, 0.22);
    color: #d6eadd;
}

.feature-card h3,
.process-card h3,
.routine-card h3,
.info-card h3,
.contact-panel h3 {
    margin: 0;
    font-size: 1.08rem;
}

.feature-card p,
.process-card p,
.routine-card p,
.info-card p,
.contact-panel p {
    margin: 9px 0 0;
    color: var(--muted);
}

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

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 4.4;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 700;
    color: #f4faf5;
    background: var(--primary);
}

.product-badge.soon {
    color: #4e4438;
    background: #f0ddc5;
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-body h3 {
    margin: 0;
    font-size: 1.18rem;
}

.product-sub {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.product-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.95rem;
}

.product-list li {
    position: relative;
    padding-left: 20px;
}

.product-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--primary);
    font-weight: 700;
}

.product-card.is-muted {
    filter: saturate(0.45);
    opacity: 0.78;
}

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

.blog-filter-wrap {
    margin-top: 24px;
}

.blog-filter-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-filters {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-filter-btn {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.blog-filter-btn:hover {
    border-color: var(--line-strong);
    color: var(--primary-strong);
}

.blog-filter-btn.is-active {
    background: var(--primary);
    color: #f4faf5;
    border-color: var(--primary);
}

body.dark-mode .blog-filter-btn {
    background: rgba(28, 43, 35, 0.92);
}

body.dark-mode .blog-filter-btn.is-active {
    color: #122119;
}

.article-card {
    overflow: hidden;
}

.article-card.is-hidden {
    display: none;
}

.article-card.is-selectable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-card.is-selectable:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(36, 58, 44, 0.16);
    border-color: #b9c8bb;
}

.article-card.is-selectable:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.article-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 18px;
}

.article-meta {
    margin: 0;
    color: var(--primary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.article-body h3 {
    margin: 8px 0 0;
    font-size: 1.15rem;
}

.article-body p {
    margin: 10px 0 0;
    color: var(--muted);
}

.article-link {
    margin-top: 12px;
    display: inline-flex;
    color: var(--primary-strong);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.blog-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.blog-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(21, 34, 27, 0.54);
    border: 0;
}

body.dark-mode .blog-modal-backdrop {
    background: rgba(5, 11, 8, 0.76);
}

.blog-modal-card {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 24px 24px 20px;
}

.blog-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #f7fbf7;
    color: var(--primary-strong);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

body.dark-mode .blog-modal-close {
    background: #21352a;
    color: #d2e7db;
}

.blog-modal-meta {
    margin: 0;
    color: var(--primary);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.blog-modal-title {
    margin: 10px 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.15;
}

.blog-modal-content {
    margin-top: 12px;
    color: var(--muted);
    display: grid;
    gap: 12px;
}

.blog-modal-content p {
    margin: 0;
}

.blog-modal-objective {
    margin: 0;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    font-weight: 600;
}

.blog-modal-section-title {
    margin: 6px 0 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-strong);
}

.blog-modal-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.blog-modal-steps {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

.blog-modal-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-keyword {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #c9d8cc;
    background: #edf4ee;
    color: var(--primary-strong);
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-modal-note {
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e2cfb4;
    background: #fff8ec;
    color: #735b45;
    font-size: 0.92rem;
}

body.dark-mode .blog-modal-note,
body.dark-mode .kef-note {
    border-color: #5c4f3b;
    background: #352b20;
    color: #ecdcc8;
}

.blog-modal-cta {
    margin-top: 16px;
}

body.blog-modal-open {
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
    margin-top: 24px;
}

.contact-card {
    padding: 24px;
}

.contact-item {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}

.contact-item:last-of-type {
    border-bottom: 0;
}

.contact-label {
    margin: 0;
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 700;
}

.contact-value {
    margin: 6px 0 0;
    font-size: 1rem;
}

.contact-help {
    margin-top: 12px;
    color: var(--muted);
}

.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, #223629 0%, #1a2b20 100%);
    color: #e7f0e9;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .site-footer {
    background: linear-gradient(180deg, #18261e 0%, #111b15 100%);
}

.site-footer .container {
    padding: 34px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 16px;
}

.footer-title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
}

.footer-sub {
    margin: 10px 0 0;
    color: rgba(231, 240, 233, 0.82);
    max-width: 40ch;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-list a {
    color: rgba(231, 240, 233, 0.9);
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(231, 240, 233, 0.75);
    font-size: 0.84rem;
}

.kef-note {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e2cfb4;
    background: #fff8ec;
    color: #735b45;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .site-main {
        padding-top: 130px;
    }

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .process-grid,
    .routine-grid,
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .article-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-nav-desktop,
    .site-header-actions .site-cta {
        display: none;
    }

    .site-brand-logo {
        height: 72px;
    }

    .site-nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-header-actions {
        gap: 6px;
    }

    .site-topbar {
        font-size: 0.68rem;
    }

    .site-topbar .container {
        padding: 0 10px;
        text-align: center;
    }

    .offer-banner {
        grid-template-columns: 1fr;
    }

    .offer-cta {
        width: 100%;
    }

    .blog-modal-card {
        padding: 20px 16px 16px;
    }
}

@media (max-width: 680px) {
    .site-main {
        padding-top: 124px;
    }

    .site-brand-logo {
        height: 62px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .feature-grid,
    .process-grid,
    .routine-grid,
    .info-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }
}
