@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --color-amber: #C9956B;
    --color-amber-dark: #A67B5B;
    --color-cream: #F5E6D3;
    --color-cream-light: #FBF7F2;
    --color-clay: #D4A574;
    --color-taupe: #8B7355;
    --color-taupe-dark: #6B5344;
    --color-white: #FFFFFF;
    --color-black: #2D2420;
    --color-overlay: rgba(45, 36, 32, 0.85);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 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(107, 83, 68, 0.1);
    --shadow-md: 0 4px 12px rgba(107, 83, 68, 0.15);
    --shadow-lg: 0 8px 24px rgba(107, 83, 68, 0.2);
    --shadow-xl: 0 16px 48px rgba(107, 83, 68, 0.25);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 75rem;
}

*,
*::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;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-cream-light);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-amber-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-taupe-dark);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-taupe-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: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background-color: var(--color-amber);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-amber-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-taupe-dark);
    border: 1px solid var(--color-taupe);
}

.btn-secondary:hover {
    background-color: var(--color-taupe-dark);
    color: var(--color-white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    padding: var(--space-md) 0;
    background-color: var(--color-cream-light);
    transition: all var(--transition-base);
}

.header.scrolled {
    background-color: var(--color-cream-light);
    box-shadow: var(--shadow-sm);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-taupe-dark);
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--color-amber);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-taupe-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-amber);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--color-taupe-dark);
    margin: 3px 0;
    transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-cream-light);
    padding: 0 var(--space-xl) var(--space-xl);
    padding-top: 5rem;
    transition: max-height var(--transition-base);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
}

.mobile-nav.active {
    max-height: 100vh;
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-taupe-dark);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.88) 0%, rgba(251, 247, 242, 0.82) 50%, rgba(212, 165, 116, 0.78) 100%), url('../visuals/bg-image-1.webp') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, var(--color-amber) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: var(--radius-full);
}

.hero-content {
    max-width: 45rem;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-amber-dark);
    margin-bottom: var(--space-md);
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero p {
    font-size: 1.0625rem;
    color: var(--color-taupe);
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto var(--space-2xl);
}

.section-header p {
    color: var(--color-taupe);
    margin-top: var(--space-sm);
}

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.card-body {
    padding: var(--space-lg);
}

.card-title {
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--color-taupe);
    font-size: 0.875rem;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-amber-dark);
    margin: var(--space-md) 0;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

.about-section {
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.features-grid {
    display: grid;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cream);
    border-radius: var(--radius-full);
    color: var(--color-amber);
    font-size: 1.25rem;
}

.feature-content h4 {
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--color-taupe);
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-taupe-dark) 0%, var(--color-taupe) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
}

.cta-section p {
    color: var(--color-cream);
    max-width: 35rem;
    margin: var(--space-md) auto var(--space-xl);
}

.contact-section {
    background: linear-gradient(180deg, var(--color-cream-light) 0%, var(--color-cream) 100%);
}

.contact-wrapper {
    display: grid;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-amber);
    border-radius: var(--radius-full);
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.contact-details p {
    font-size: 0.875rem;
    color: var(--color-taupe);
    margin: 0;
}

.contact-form {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-taupe-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid var(--color-clay);
    border-radius: var(--radius-md);
    background-color: var(--color-cream-light);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-amber);
    box-shadow: 0 0 0 3px rgba(201, 149, 107, 0.2);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: auto;
    margin-top: 0.2rem;
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--color-taupe);
    margin: 0;
}

.form-checkbox a {
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
}

.map-container iframe {
    width: 100%;
    height: 18rem;
    border: none;
}

.footer {
    background-color: var(--color-taupe-dark);
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--color-cream);
}

.footer-links a:hover {
    color: var(--color-amber);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-taupe);
    font-size: 0.75rem;
    color: var(--color-clay);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.8125rem;
    margin: 0;
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.page-header {
    padding: calc(var(--space-3xl) + 4rem) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
    text-align: center;
}

.page-header p {
    color: var(--color-taupe);
    max-width: 35rem;
    margin: var(--space-md) auto 0;
}

.page-header-note {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    opacity: 0.9;
}

.page-header-note a {
    color: var(--color-taupe-dark);
    text-decoration: underline;
}

.packages-grid {
    display: grid;
    gap: var(--space-xl);
}

.package-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.package-card.featured {
    border-color: var(--color-amber);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-amber);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-amber-dark);
    margin: var(--space-md) 0;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-taupe);
}

.package-features {
    text-align: left;
    margin: var(--space-lg) 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-cream);
}

.package-features li:last-child {
    border: none;
}

.package-features i {
    color: var(--color-amber);
}

.products-grid {
    display: grid;
    gap: var(--space-lg);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-body {
    padding: var(--space-lg);
    text-align: center;
}

.product-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.product-desc {
    font-size: 0.8125rem;
    color: var(--color-taupe);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-amber-dark);
    margin: var(--space-md) 0;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.thank-you-content {
    max-width: 35rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cream);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-xl);
    font-size: 2.5rem;
    color: var(--color-amber);
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.error-content {
    max-width: 35rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--color-cream);
    text-shadow: 2px 2px 0 var(--color-amber);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.policy-content {
    max-width: 50rem;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
}

.policy-content h2 {
    margin: var(--space-xl) 0 var(--space-md);
}

.policy-content h3 {
    margin: var(--space-lg) 0 var(--space-md);
}

.policy-content p {
    color: var(--color-taupe-dark);
}

.policy-content ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.policy-content li {
    list-style: disc;
    margin-bottom: var(--space-sm);
    color: var(--color-taupe-dark);
}

.testimonials-section {
    background-color: var(--color-cream);
}

.testimonial-card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-taupe-dark);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-taupe-dark);
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--color-taupe);
}

.process-section {
    background-color: var(--color-white);
}

.process-steps {
    display: grid;
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-amber);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.process-content h4 {
    margin-bottom: var(--space-xs);
}

.process-content p {
    font-size: 0.875rem;
    color: var(--color-taupe);
    margin: 0;
}

.faq-section {
    background-color: var(--color-cream-light);
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-taupe-dark);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--color-cream);
}

.faq-question i {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 0.875rem;
    color: var(--color-taupe);
    margin: 0;
}

.stats-section {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.stat-item p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (min-width: 480px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .burger {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}
