@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-sage: #9CAF88;
    --color-sage-light: #B8C9A9;
    --color-sage-dark: #7A8F6C;
    --color-terracotta: #C4896C;
    --color-terracotta-light: #D9A78F;
    --color-terracotta-dark: #A66B4F;
    --color-cream: #F7F3ED;
    --color-cream-dark: #EDE5D8;
    --color-slate: #5A6670;
    --color-slate-light: #7A8690;
    --color-slate-dark: #3E4850;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.15);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
    --max-width: 75rem;
    --header-height: 4.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-slate-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-slate-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
    background-color: var(--color-white);
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-slate-dark);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--color-terracotta);
}

.nav-toggle {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    z-index: 110;
}

.nav-toggle span {
    width: 1.25rem;
    height: 2px;
    background: var(--color-slate-dark);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 99;
    display: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 20rem;
    height: 100%;
    background: var(--color-white);
    padding: var(--space-3xl) var(--space-xl);
    transition: right var(--transition-slow);
    z-index: 105;
    overflow-y: auto;
    display: none;
}

.nav-menu.active {
    right: 0;
    display: block;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-slate-dark);
    border-bottom: 1px solid var(--color-cream-dark);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-terracotta);
    padding-left: var(--space-sm);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-3xl) 0;
    background-image: linear-gradient(135deg, rgba(247, 243, 237, 0.82) 0%, rgba(184, 201, 169, 0.75) 50%, rgba(247, 243, 237, 0.82) 100%),
                      url('../visuals/bg-image-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 70% 50%, var(--color-terracotta-light) 0%, transparent 60%);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
    padding: var(--space-xl);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-text {
    color: var(--color-slate);
    margin-bottom: var(--space-xl);
    font-size: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-slate-dark);
    border: 1px solid var(--color-slate-light);
}

.btn-secondary:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 35rem;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--color-slate);
    font-size: 0.9375rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-size: 0.8125rem;
    color: var(--color-slate);
    line-height: 1.5;
}

.about-section {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    margin-bottom: var(--space-lg);
    color: var(--color-slate);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-slate-dark);
}

.about-list-item i {
    color: var(--color-sage);
    font-size: 0.75rem;
}

.products-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-terracotta);
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.product-body {
    padding: var(--space-md);
}

.product-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.product-desc {
    font-size: 0.75rem;
    color: var(--color-slate);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-sage-dark);
}

.product-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
}

.testimonials-section {
    background: var(--color-sage);
    color: var(--color-white);
}

.testimonials-section .section-tag {
    color: var(--color-cream);
}

.testimonials-section .section-title {
    color: var(--color-white);
}

.testimonials-section .section-desc {
    color: var(--color-cream);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    color: var(--color-slate-dark);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-sage-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage-dark);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--color-slate);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    color: var(--color-cream);
    margin-bottom: var(--space-xl);
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: var(--color-white);
    color: var(--color-terracotta-dark);
}

.cta-btn:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.gallery-section {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.contact-section {
    background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-intro h3 {
    margin-bottom: var(--space-sm);
}

.contact-intro p {
    color: var(--color-slate);
    font-size: 0.875rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.contact-text p,
.contact-text a {
    font-size: 0.8125rem;
    color: var(--color-slate);
}

.contact-text a:hover {
    color: var(--color-terracotta);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-slate-dark);
}

.form-input,
.form-textarea {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--color-cream);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.2);
}

.form-textarea {
    min-height: 7rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: var(--color-terracotta);
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--color-slate);
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.map-wrapper {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 15rem;
    border: none;
}

.footer {
    background: var(--color-slate-dark);
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.footer-link {
    font-size: 0.75rem;
    color: var(--color-cream);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-terracotta-light);
}

.footer-copy {
    font-size: 0.6875rem;
    color: var(--color-slate-light);
}

.footer-copy span {
    color: var(--color-cream);
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sage-light) 100%);
    text-align: center;
}

.page-hero-title {
    margin-bottom: var(--space-md);
}

.page-hero-text {
    color: var(--color-slate);
    max-width: 35rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: var(--color-terracotta);
}

.breadcrumb span {
    color: var(--color-slate);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.content-block {
    margin-bottom: var(--space-xl);
}

.content-block h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.content-block h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.content-block p {
    color: var(--color-slate);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.content-block ul {
    list-style: disc;
    padding-left: var(--space-lg);
    color: var(--color-slate);
    margin-bottom: var(--space-md);
}

.content-block li {
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sage-light) 50%, var(--color-cream) 100%);
}

.thank-you-content {
    max-width: 30rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto var(--space-xl);
    background: var(--color-sage);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.thank-you-title {
    margin-bottom: var(--space-md);
}

.thank-you-text {
    color: var(--color-slate);
    margin-bottom: var(--space-xl);
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-terracotta-light) 50%, var(--color-cream) 100%);
}

.error-content {
    max-width: 30rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-terracotta);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-title {
    margin-bottom: var(--space-md);
}

.error-text {
    color: var(--color-slate);
    margin-bottom: var(--space-xl);
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    max-width: 25rem;
}

.cookie-popup.active {
    display: block;
}

.cookie-text {
    font-size: 0.8125rem;
    color: var(--color-slate);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    border-radius: var(--radius-md);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: var(--space-lg);
}

.info-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
}

.info-title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.info-text {
    font-size: 0.8125rem;
    color: var(--color-slate);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    gap: var(--space-md);
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: 0.8125rem;
    color: var(--color-slate);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: var(--space-lg);
}

.tip-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tip-image {
    height: 10rem;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-body {
    padding: var(--space-md);
}

.tip-title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.tip-text {
    font-size: 0.8125rem;
    color: var(--color-slate);
    margin-bottom: var(--space-md);
}

.quote-block {
    background: var(--color-sage-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-sage);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-slate-dark);
    margin-bottom: var(--space-sm);
}

.quote-author {
    font-size: 0.875rem;
    color: var(--color-sage-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-slate-dark);
    text-align: left;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-cream);
}

.faq-question i {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 20rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--color-slate);
    line-height: 1.6;
}

@media (min-width: 48rem) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-slider {
        flex-direction: row;
    }
    
    .testimonial-card {
        flex: 1;
    }
    
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .cookie-popup {
        left: var(--space-lg);
        right: auto;
    }
}

@media (min-width: 48rem) {
    .nav-toggle {
        display: none;
    }
    
    .nav-overlay {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        background: transparent;
        overflow: visible;
        display: block;
    }
    
    .nav-list {
        flex-direction: row;
        gap: var(--space-lg);
    }
    
    .nav-link {
        padding: var(--space-xs) 0;
        font-size: 0.875rem;
        border-bottom: none;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-terracotta);
        transition: width var(--transition-fast);
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-link:hover {
        padding-left: 0;
    }
    
    .header-inner {
        justify-content: space-between;
    }
}


@media (max-width: 30rem) {
    .logo {
        font-size: 1.25rem;
    }
}

@media (max-width: 20rem) {
    html {
        font-size: 87.5%;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-content {
        padding: var(--space-md);
    }
    
    .feature-card,
    .product-body,
    .contact-form-wrapper {
        padding: var(--space-md);
    }
}
