* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--charcoal: #2b2b2b;
--midnight: #1a2332;
--gold: #c9a961;
--blush: #d4a5a5;
--teal: #4a7c7e;
--white: #ffffff;
--light-gray: #f5f5f5;
--medium-gray: #e0e0e0;
--text-dark: #333333;
--text-light: #666666;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 400;
line-height: 1.3;
color: var(--charcoal);
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.container-narrow {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--midnight);
color: var(--white);
padding: 15px 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 250px;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-link {
color: var(--gold);
font-size: 13px;
text-decoration: underline;
}

.privacy-btn {
background: var(--gold);
color: var(--charcoal);
border: none;
padding: 8px 20px;
font-size: 13px;
cursor: pointer;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
transition: all 0.3s ease;
}

.privacy-btn:hover {
background: var(--white);
}

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--medium-gray);
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

.header.scrolled {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--charcoal);
letter-spacing: 0.5px;
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.8rem;
color: var(--charcoal);
cursor: pointer;
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav-link {
font-size: 13px;
font-weight: 400;
color: var(--text-dark);
position: relative;
padding: 5px 0;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: var(--gold);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.hero {
min-height: 90vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
position: relative;
background: var(--charcoal);
overflow: hidden;
padding: 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(43, 43, 43, 0.95) 0%, rgba(26, 35, 50, 0.85) 100%);
z-index: 1;
pointer-events: none;
}

.hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 55%;
height: 100%;
background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?w=1600&q=80');
background-size: cover;
background-position: center;
clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 55%;
height: 100%;
background: linear-gradient(90deg, rgba(43, 43, 43, 1) 0%, transparent 40%);
z-index: 1;
}

.hero-content {
z-index: 2;
max-width: 600px;
padding: 60px 80px;
position: relative;
animation: fadeInUp 1s ease;
}

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

.hero-title {
font-size: 4rem;
margin-bottom: 25px;
color: var(--white);
line-height: 1.1;
letter-spacing: -1px;
position: relative;
}

.hero-title::before {
content: '';
position: absolute;
top: -20px;
left: 0;
width: 60px;
height: 3px;
background: var(--gold);
}

.hero-subtitle {
font-size: 1.15rem;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 40px;
line-height: 1.8;
font-weight: 300;
}

.service-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.btn-primary,
.btn-secondary,
.btn-outline {
display: inline-block;
padding: 12px 30px;
font-size: 13px;
font-weight: 500;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
border: none;
font-family: 'Montserrat', sans-serif;
}

.btn-primary {
background: var(--charcoal);
color: var(--white);
}

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

.btn-secondary {
background: var(--gold);
color: var(--charcoal);
}

.btn-secondary:hover {
background: var(--midnight);
color: var(--white);
transform: translateY(-2px);
}

.btn-outline {
background: transparent;
color: var(--charcoal);
border: 1px solid var(--charcoal);
}

.btn-outline:hover {
background: var(--charcoal);
color: var(--white);
}

section {
padding: 70px 0;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-label {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--gold);
margin-bottom: 10px;
font-weight: 500;
}

.section-header h2 {
font-size: 2.5rem;
}

.philosophy {
background: var(--light-gray);
}

.philosophy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

.philosophy-item {
text-align: center;
}

.philosophy-icon {
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 20px;
display: block;
}

.philosophy-item h3 {
margin-bottom: 15px;
font-size: 1.3rem;
}

.philosophy-item p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.service-card {
background: var(--white);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid var(--medium-gray);
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-info {
padding: 25px;
}

.service-info h3 {
margin-bottom: 12px;
font-size: 1.4rem;
}

.service-info p {
color: var(--text-light);
margin-bottom: 20px;
font-size: 14px;
}

.service-link {
color: var(--gold);
font-weight: 500;
font-size: 13px;
display: inline-flex;
align-items: center;
gap: 5px;
}

.service-link:hover {
color: var(--charcoal);
}

.process {
background: var(--light-gray);
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
}

.process-step {
text-align: center;
padding: 30px 20px;
background: var(--white);
border-top: 3px solid var(--gold);
}

.step-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 15px;
}

.process-step h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.process-step p {
color: var(--text-light);
font-size: 13px;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--light-gray);
padding: 30px;
border-left: 3px solid var(--gold);
}

.testimonial-text {
font-size: 14px;
line-height: 1.8;
color: var(--text-dark);
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.testimonial-author strong {
color: var(--charcoal);
font-size: 14px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 12px;
}

.cta {
background: var(--midnight);
color: var(--white);
text-align: center;
}

.cta-content h2 {
color: var(--white);
margin-bottom: 15px;
}

.cta-content p {
font-size: 1rem;
margin-bottom: 30px;
color: rgba(255,255,255,0.9);
}

.page-hero {
background: var(--light-gray);
padding: 60px 20px;
text-align: center;
}

.page-hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}

.page-intro {
font-size: 1.1rem;
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

.service-details {
padding: 70px 0;
}

.details-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.details-grid.reverse {
direction: rtl;
}

.details-grid.reverse > * {
direction: ltr;
}

.details-content h2 {
margin-bottom: 20px;
}

.details-content p {
color: var(--text-light);
margin-bottom: 15px;
line-height: 1.8;
}

.details-features {
margin-top: 30px;
display: grid;
gap: 12px;
}

.feature-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

.feature-item .ph-check-circle {
color: var(--gold);
font-size: 1.2rem;
}

.details-image {
width: 100%;
height: 450px;
background-size: cover;
background-position: center;
}

.pricing {
background: var(--light-gray);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.pricing-card {
background: var(--white);
padding: 35px 25px;
text-align: center;
border: 1px solid var(--medium-gray);
position: relative;
transition: transform 0.3s ease;
}

.pricing-card:hover {
transform: translateY(-5px);
}

.pricing-card.featured {
border: 2px solid var(--gold);
}

.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--gold);
color: var(--charcoal);
padding: 4px 15px;
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}

.pricing-card h3 {
margin-bottom: 15px;
font-size: 1.5rem;
}

.price {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 25px;
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.pricing-features li {
padding: 10px 0;
border-bottom: 1px solid var(--medium-gray);
font-size: 13px;
color: var(--text-light);
}

.pricing-features li:last-child {
border-bottom: none;
}

.interactive-benefits {
padding: 70px 0;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.benefit-card {
text-align: center;
padding: 30px 20px;
transition: transform 0.3s ease;
}

.benefit-card:hover {
transform: translateY(-5px);
}

.benefit-icon {
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 20px;
}

.benefit-card h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.benefit-card p {
color: var(--text-light);
font-size: 13px;
line-height: 1.7;
}

.occasions {
background: var(--light-gray);
}

.occasions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.occasion-card {
background: var(--white);
padding: 30px;
text-align: center;
transition: transform 0.3s ease;
}

.occasion-card:hover {
transform: translateY(-5px);
}

.occasion-icon {
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 15px;
display: block;
}

.occasion-card h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.occasion-card p {
color: var(--text-light);
font-size: 13px;
line-height: 1.7;
}

.mood-board {
padding: 70px 0;
}

.mood-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.mood-card {
height: 300px;
background: var(--light-gray);
position: relative;
overflow: hidden;
cursor: pointer;
}

.mood-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding: 30px 20px;
color: var(--white);
transform: translateY(60%);
transition: transform 0.3s ease;
}

.mood-card:hover .mood-overlay {
transform: translateY(0);
}

.mood-overlay h3 {
color: var(--white);
margin-bottom: 8px;
font-size: 1.3rem;
}

.mood-overlay p {
font-size: 13px;
opacity: 0.9;
}

.contact-hero {
background: var(--light-gray);
padding: 60px 20px;
text-align: center;
}

.contact-main {
padding: 70px 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
}

.contact-form-wrapper h2 {
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-size: 13px;
font-weight: 500;
color: var(--charcoal);
}

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid var(--medium-gray);
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--gold);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
font-size: 13px;
color: var(--text-light);
cursor: pointer;
align-items: flex-start;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--gold);
text-decoration: underline;
}

.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-info-card {
background: var(--light-gray);
padding: 30px;
}

.contact-info-card h3 {
margin-bottom: 25px;
font-size: 1.5rem;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.info-item:last-child {
margin-bottom: 0;
}

.info-item .ph {
font-size: 1.5rem;
color: var(--gold);
flex-shrink: 0;
}

.info-item strong {
display: block;
margin-bottom: 5px;
font-size: 13px;
color: var(--charcoal);
}

.info-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.6;
margin: 0;
}

.map-section {
padding: 0;
}

.map-container {
width: 100%;
height: 450px;
}

.map-container iframe {
width: 100%;
height: 100%;
display: block;
}

.thank-you-main,
.error-main {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 20px;
}

.thank-you-content,
.error-content {
text-align: center;
max-width: 600px;
}

.thank-you-icon {
font-size: 4rem;
color: var(--gold);
margin-bottom: 25px;
}

.thank-you-content h1,
.error-content h1 {
margin-bottom: 20px;
}

.thank-you-content p,
.error-content p {
font-size: 1rem;
color: var(--text-light);
margin-bottom: 35px;
line-height: 1.7;
}

.thank-you-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 8rem;
color: var(--gold);
line-height: 1;
margin-bottom: 20px;
}

.policy-page {
padding: 70px 0;
}

.policy-date {
font-size: 13px;
color: var(--text-light);
margin-bottom: 40px;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 20px;
font-size: 1.8rem;
}

.policy-content h3 {
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.3rem;
}

.policy-content p {
margin-bottom: 15px;
line-height: 1.8;
color: var(--text-light);
}

.footer {
background: var(--charcoal);
color: var(--white);
padding: 30px 0;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 12px;
margin: 0;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 12px;
color: var(--white);
opacity: 0.8;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
}

@media (max-width: 968px) {
.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
gap: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.nav.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.menu-toggle {
display: block;
}

.hero-title {
font-size: 3rem;
}

.hero-content {
padding: 60px 40px;
}

.hero::before {
width: 100%;
clip-path: none;
}

.hero {
grid-template-columns: 1fr;
min-height: 70vh;
}

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

.details-grid.reverse {
direction: ltr;
}

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

.section-header h2 {
font-size: 2rem;
}
}

@media (max-width: 640px) {
h1 {
font-size: 2rem;
}

h2 {
font-size: 1.6rem;
}

.hero-title {
font-size: 2rem;
}

.hero-subtitle {
font-size: 1rem;
}

.page-hero h1 {
font-size: 2.2rem;
}

.error-number {
font-size: 5rem;
}

.footer-container {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

section {
padding: 50px 0;
}
}

@media (max-width: 480px) {
.services-grid,
.pricing-grid,
.occasions-grid,
.mood-grid {
grid-template-columns: 1fr;
}

.process-timeline {
grid-template-columns: 1fr;
}
}
