@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --color-cream: #faf7f2;
    --color-sand: #e8dfd4;
    --color-honey: #d4a853;
    --color-amber: #c4913a;
    --color-terracotta: #c17f59;
    --color-charcoal: #2d2926;
    --color-warm-gray: #6b635c;
    --color-soft-white: #fffcf8;
    --color-overlay: rgba(45, 41, 38, 0.85);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(45, 41, 38, 0.05);
    --shadow-md: 0 4px 12px rgba(45, 41, 38, 0.08);
    --shadow-lg: 0 8px 24px rgba(45, 41, 38, 0.12);
    --shadow-xl: 0 16px 48px rgba(45, 41, 38, 0.16);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --max-width: 75rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header-wrapper {
    position: relative;
    padding: var(--space-lg) 0;
    background: linear-gradient(135deg, var(--color-soft-white) 0%, var(--color-cream) 100%);
    border-bottom: 1px solid var(--color-sand);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.logo-text:hover {
    color: var(--color-honey);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-warm-gray);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-honey);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-charcoal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-base);
    transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-soft-white);
    padding: var(--space-4xl) var(--space-xl);
    transition: right var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-size: var(--text-lg);
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-sand);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-honey);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-tagline {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-honey);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.hero-desc {
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--color-honey);
    color: var(--color-soft-white);
}

.btn-primary:hover {
    background: var(--color-amber);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
}

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-soft-white);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-alt {
    background: var(--color-soft-white);
}

.section-header {
    text-align: center;
    max-width: 50ch;
    margin: 0 auto var(--space-2xl);
}

.section-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-honey);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--color-warm-gray);
}

.features-grid {
    display: grid;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-soft-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-sand);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-honey), var(--color-terracotta));
    border-radius: var(--radius-md);
    color: var(--color-soft-white);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
}

.products-grid {
    display: grid;
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-soft-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-sand);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    aspect-ratio: 1;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--space-md);
}

.product-name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.product-desc {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.product-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-honey);
}

.testimonials-wrapper {
    display: grid;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-soft-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-sand);
}

.testimonial-quote {
    font-size: var(--text-base);
    font-style: italic;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-honey), var(--color-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-white);
    font-weight: 600;
    font-size: var(--text-sm);
}

.testimonial-name {
    font-weight: 600;
    font-size: var(--text-sm);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #3d3632 100%);
    color: var(--color-soft-white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-title {
    color: var(--color-soft-white);
    margin-bottom: var(--space-md);
}

.cta-desc {
    opacity: 0.8;
    margin-bottom: var(--space-lg);
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    background: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    gap: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-honey);
    border-radius: var(--radius-md);
    color: var(--color-soft-white);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.contact-text p,
.contact-text a {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
}

.contact-text a:hover {
    color: var(--color-honey);
}

.contact-form {
    background: var(--color-soft-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-charcoal);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-honey);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: var(--text-xs);
    color: var(--color-warm-gray);
}

.form-checkbox input {
    margin-top: 3px;
    accent-color: var(--color-honey);
}

.form-checkbox a {
    color: var(--color-honey);
    text-decoration: underline;
}

.map-wrapper {
    margin-top: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.footer {
    background: var(--color-charcoal);
    color: var(--color-soft-white);
    padding: var(--space-xl) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    justify-content: center;
}

.footer-link {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-honey);
}

.footer-copy {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    color: var(--color-soft-white);
    padding: var(--space-md);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.cookie-text {
    font-size: var(--text-xs);
}

.cookie-text a {
    color: var(--color-honey);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.cookie-btn-accept {
    background: var(--color-honey);
    color: var(--color-soft-white);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-soft-white);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-soft-white) 0%, var(--color-cream) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.page-hero-title {
    margin-bottom: var(--space-sm);
}

.page-hero-desc {
    color: var(--color-warm-gray);
    max-width: 50ch;
    margin: 0 auto;
}

.legal-content {
    max-width: 65ch;
    margin: 0 auto;
    padding: var(--space-md) 0;
}

.legal-updated {
    font-size: var(--text-xs);
    color: var(--color-warm-gray);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-sand);
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-sand);
}

.legal-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    font-size: var(--text-2xl);
}

.legal-section h2:first-child {
    padding-top: 0;
}

.legal-section h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-section p {
    margin-bottom: var(--space-md);
    color: var(--color-warm-gray);
    line-height: 1.7;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: var(--space-md) 0 var(--space-lg);
    padding-left: var(--space-xl);
    color: var(--color-warm-gray);
}

.legal-section ul li {
    list-style: disc;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.legal-section ul.contact-list {
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.legal-section ul.contact-list li {
    margin-bottom: var(--space-xs);
}

.legal-section a {
    color: var(--color-honey);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.legal-section a:hover {
    color: var(--color-amber);
}

.content-section {
    padding: var(--space-3xl) 0;
}

.content-section .container {
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.content-block {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-sand);
}

.content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-block h3 {
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
}

.content-block p {
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    padding-left: var(--space-xl);
    color: var(--color-warm-gray);
    margin: var(--space-md) 0;
}

.content-block ul li {
    list-style: disc;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-soft-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-sand);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    text-align: left;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-honey);
}

.faq-icon {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-warm-gray);
}

.faq-answer p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 0.75em;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.trends-grid {
    display: grid;
    gap: var(--space-lg);
}

.trend-card {
    background: var(--color-soft-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-sand);
}

.trend-content {
    padding: var(--space-md);
}

.trend-date {
    font-size: var(--text-xs);
    color: var(--color-honey);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.trend-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.trend-desc {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
}

.about-story {
    display: grid;
    gap: var(--space-xl);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: grid;
    gap: var(--space-md);
}

.value-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-soft-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-sand);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-honey);
    border-radius: var(--radius-md);
    color: var(--color-soft-white);
    flex-shrink: 0;
}

.value-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.value-content p {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
}

.team-grid {
    display: grid;
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-soft-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-sand);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-honey), var(--color-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-white);
    font-size: var(--text-2xl);
    font-family: var(--font-heading);
    margin: 0 auto var(--space-md);
}

.team-name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--color-honey);
    font-size: var(--text-sm);
    font-weight: 600;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-honey), var(--color-terracotta));
    border-radius: var(--radius-full);
    color: var(--color-soft-white);
    font-size: var(--text-3xl);
    margin: 0 auto var(--space-lg);
}

.thank-you-title {
    margin-bottom: var(--space-md);
}

.thank-you-message {
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.error-code {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    color: var(--color-honey);
    margin-bottom: var(--space-md);
}

.error-title {
    margin-bottom: var(--space-sm);
}

.error-desc {
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
}

.process-steps {
    display: grid;
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    display: flex;
    gap: var(--space-md);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-honey);
    color: var(--color-soft-white);
    border-radius: var(--radius-full);
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
}

.schedule-grid {
    display: grid;
    gap: var(--space-md);
}

.schedule-card {
    background: var(--color-soft-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.schedule-info h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.schedule-info p {
    color: var(--color-warm-gray);
    font-size: var(--text-sm);
}

.schedule-time {
    font-weight: 600;
    color: var(--color-honey);
    font-size: var(--text-sm);
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--text-5xl);
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text {
        text-align: left;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-desc {
        margin-left: 0;
        margin-right: 0;
    }

    .nav-desktop {
        display: block;
    }

    .burger-btn {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-story {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .trends-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 479px) {
    :root {
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
    }

    .hero-section {
        padding: var(--space-2xl) 0;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .legal-content {
        padding: 0;
    }

    .legal-section {
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .legal-section h2 {
        margin-bottom: var(--space-md);
    }

    .content-section {
        padding: var(--space-2xl) 0;
    }

    .content-block {
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-xl);
    }
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-honey);
    color: var(--color-soft-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

.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;
}

.gallery-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
