:root {
    --color-background: #f7f5f1;
    --color-surface: #ffffff;
    --color-surface-soft: #f1eee8;
    --color-text: #222222;
    --color-text-muted: #666666;
    --color-primary: #6c8d74;
    --color-primary-soft: #e1ebe4;
    --color-success: #3c8c61;
    --color-warning: #c28a3a;
    --color-danger: #b6493c;
    --color-border: #ded7cc;
    --color-gray-50: #faf7f2;
    --color-gray-100: #f2ede5;
    --color-gray-200: #e2d7c8;
    --color-gray-300: #cdbda8;
    --color-gray-400: #a4937a;
    --color-gray-500: #7b6a54;
    --color-gray-600: #5c4f3e;
    --color-gray-700: #433a2e;
    --color-gray-800: #2e281f;
    --color-gray-900: #18140f;
    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, -system-ui, "Segoe UI", sans-serif;
    --font-heading: "DM Sans", "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.0625rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.875rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --line-height-tight: 1.1;
    --line-height-snug: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 36px;
    --space-10: 40px;
    --space-11: 48px;
    --space-12: 56px;
    --space-13: 64px;
    --space-14: 72px;
    --space-15: 80px;
    --space-16: 96px;
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(15, 14, 10, 0.06), 0 1px 2px rgba(15, 14, 10, 0.04);
    --shadow-sm: 0 4px 12px rgba(15, 14, 10, 0.08);
    --shadow-md: 0 10px 30px rgba(15, 14, 10, 0.12);
    --shadow-lg: 0 18px 50px rgba(15, 14, 10, 0.16);
    --shadow-soft-elevated: 0 24px 70px rgba(15, 14, 10, 0.18);
    --shadow-focus: 0 0 0 2px #ffffff, 0 0 0 4px rgba(108, 141, 116, 0.6);
    --transition-fast: 120ms ease-out;
    --transition-base: 180ms ease-out;
    --transition-slow: 260ms ease-out;
    --container-max: 1120px;
    --header-height: 64px
}

@media (min-width:768px) {
    :root {
        --header-height: 80px
    }
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
    padding: 0;
    margin: 0
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    background-color: var(--color-background);
    color: var(--color-text);
    text-rendering: optimizeLegibility
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit
}

button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer
}

a {
    text-decoration: none;
    color: inherit
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-text);
    line-height: var(--line-height-relaxed)
}

p+p {
    margin-top: var(--space-2)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: var(--line-height-tight);
    color: var(--color-text)
}

h1 {
    font-size: var(--font-size-4xl);
    letter-spacing: -0.04em;
    margin-bottom: var(--space-5)
}

h2 {
    font-size: var(--font-size-3xl);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4)
}

h3 {
    font-size: var(--font-size-2xl);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3)
}

h4 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3)
}

h5 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2)
}

h6 {
    font-size: var(--font-size-md);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-2)
}

a {
    color: var(--color-text);
    transition: color var(--transition-base)
}

a:hover {
    color: var(--color-primary)
}

a:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
    border-radius: var(--radius-xs)
}

body {
    padding: 0;
    margin: 0
}

main {
    display: block
}

::selection {
    background-color: var(--color-primary-soft);
    color: var(--color-text)
}

.container {
    width: 100%;
    max-width: calc(var(--container-max) + 2 * var(--space-6));
    margin: 0 auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5)
}

@media (min-width:768px) {
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6)
    }
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.flex-col {
    flex-direction: column
}

.flex-row {
    flex-direction: row
}

.flex-wrap {
    flex-wrap: wrap
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-end {
    justify-content: flex-end
}

.gap-2 {
    gap: var(--space-2)
}

.gap-3 {
    gap: var(--space-3)
}

.gap-4 {
    gap: var(--space-4)
}

.gap-6 {
    gap: var(--space-6)
}

.grid {
    display: grid
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-gap-4 {
    gap: var(--space-4)
}

.grid-gap-6 {
    gap: var(--space-6)
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: var(--font-size-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), border-color var(--transition-base)
}

.btn:hover {
    background-color: #46624e;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-xs)
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);
    box-shadow: var(--shadow-xs)
}

.btn-secondary:hover {
    background-color: var(--color-surface-soft);
    box-shadow: var(--shadow-sm)
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-text);
    border-color: transparent;
    box-shadow: none
}

.btn-ghost:hover {
    background-color: rgba(0, 0, 0, 0.03)
}

.btn-icon {
    padding: 0.5rem;
    border-radius: var(--radius-pill);
    width: 40px;
    height: 40px
}

.btn-full {
    width: 100%
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base)
}

input::placeholder,
textarea::placeholder {
    color: var(--color-text-muted)
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-focus)
}

input[disabled],
textarea[disabled],
select[disabled] {
    background-color: var(--color-gray-100);
    color: var(--color-text-muted);
    cursor: not-allowed
}

label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted)
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4)
}

.card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-5)
}

.card-soft {
    background-color: var(--color-surface-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-5)
}

.card-elevated {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft-elevated);
    padding: var(--space-6)
}

.card-border {
    border: 1px solid rgba(205, 189, 168, 0.6)
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: var(--color-primary-soft);
    color: var(--color-primary)
}

.tag-muted {
    background-color: var(--color-gray-100);
    color: var(--color-text-muted)
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 189, 168, 0.7);
    font-size: var(--font-size-sm);
    background-color: var(--color-surface)
}

:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus)
}

[data-focus-visible-added] {
    outline: none;
    box-shadow: var(--shadow-focus)
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }
}

.visually-centered-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.visually-centered-page main {
    flex: 1
}

.page-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10)
}

@media (min-width:768px) {
    .page-section {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12)
    }
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-6)
}

.section-heading-eyebrow {
    font-size: var(--font-size-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted)
}

.section-heading-title {
    font-size: var(--font-size-3xl);
    letter-spacing: -0.04em
}

@media (min-width:768px) {
    .section-heading-title {
        font-size: var(--font-size-4xl)
    }
}

.section-heading-copy {
    max-width: 36rem;
    color: var(--color-text-muted)
}

.surface-muted {
    background-color: var(--color-gray-50)
}

.surface-contrast {
    background-color: var(--color-gray-900);
    color: #f8f7f4
}

.surface-contrast a {
    color: #f8f7f4
}

.surface-contrast a:hover {
    color: var(--color-primary-soft)
}

.shadow-soft {
    box-shadow: var(--shadow-soft-elevated)
}

.shadow-none {
    box-shadow: none
}

.rounded-md {
    border-radius: var(--radius-md)
}

.rounded-lg {
    border-radius: var(--radius-lg)
}

.rounded-xl {
    border-radius: var(--radius-xl)
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-muted {
    color: var(--color-text-muted)
}

.text-sm {
    font-size: var(--font-size-sm)
}

.text-xs {
    font-size: var(--font-size-xs)
}

.uppercase {
    letter-spacing: 0.14em;
    text-transform: uppercase
}

.fw-medium {
    font-weight: 500
}

.fw-semibold {
    font-weight: 600
}

.mb-0 {
    margin-bottom: 0
}

.mb-4 {
    margin-bottom: var(--space-4)
}

.mt-4 {
    margin-top: var(--space-4)
}

.mt-6 {
    margin-top: var(--space-6)
}

.pt-header {
    padding-top: var(--header-height)
}

.stack-2>*+* {
    margin-top: var(--space-2)
}

.stack-3>*+* {
    margin-top: var(--space-3)
}

.stack-4>*+* {
    margin-top: var(--space-4)
}

.hero-full {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center
}

.hero-kitchen {
    background: radial-gradient(circle at top left, rgba(246, 241, 232, 0.9), transparent 55%), radial-gradient(circle at bottom right, rgba(225, 235, 228, 0.9), transparent 55%)
}

.hero-content {
    max-width: 32rem
}

.hero-kicker {
    font-size: var(--font-size-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3)
}

.hero-title {
    font-size: var(--font-size-3xl);
    letter-spacing: -0.06em;
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4)
}

@media (min-width:768px) {
    .hero-title {
        font-size: var(--font-size-4xl)
    }
}

.hero-subtitle {
    color: var(--color-text-muted);
    max-width: 28rem;
    margin-bottom: var(--space-6)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3)
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-5);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted)
}

.hero-meta-item strong {
    display: block;
    color: var(--color-text)
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5)
}

@media (min-width:640px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width:1024px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition-base), box-shadow var(--transition-base)
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.product-card-media {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #f6f1e8, #e1ebe4);
    overflow: hidden
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-card-body {
    padding: var(--space-4)
}

.product-card-title {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-1)
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-top: var(--space-3);
    font-size: var(--font-size-sm)
}

.product-price {
    font-weight: 500
}

.product-tagline {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted)
}

.pill-meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    font-size: var(--font-size-xs);
    position: absolute;
    top: var(--space-3);
    left: var(--space-3)
}

.footer-simple {
    border-top: 1px solid rgba(205, 189, 168, 0.7);
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
    background-color: var(--color-background)
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr;
    gap: var(--space-6)
}

@media (min-width:720px) {
    .footer-cols {
        grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr))
    }
}

.footer-heading {
    font-size: var(--font-size-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3)
}

.footer-link {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    padding: 0.25rem 0;
    transition: color var(--transition-base), transform var(--transition-fast)
}

.footer-link:hover {
    color: var(--color-text);
    transform: translateX(2px)
}

.footer-meta {
    margin-top: var(--space-6);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted)
}