
:root {
  --terracotta: #C2785C;
  --terracotta-deep: #A35D42;
  --terracotta-light: #D99A7E;
  --blush: #E8C4B8;
  --blush-light: #F2DDD6;
  --rose: #B56576;
  --rose-light: #D4919E;
  --sand: #F5EDE4;
  --sand-dark: #E8DDD0;
  --cream: #FBF7F3;
  --white: #FFFFFF;
  --charcoal: #2D2926;
  --text-dark: #3A3330;
  --text-mid: #6B5E57;
  --text-light: #9A8D85;
  --sage: #8FA68A;
  --sage-deep: #6B8B65;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }

nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0.7rem 2rem; background: rgba(45, 41, 38, 0.92); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--blush); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.3s; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--blush); }
.nav-cta { background: var(--terracotta) !important; color: var(--white) !important; padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 600 !important; transition: transform 0.3s, box-shadow 0.3s !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(194, 120, 92, 0.4); }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

.contact-hero { padding: 8rem 2rem 4rem; background: linear-gradient(135deg, var(--charcoal) 0%, #4A3B34 40%, var(--terracotta-deep) 100%); text-align: center; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(ellipse, rgba(232, 196, 184, 0.1) 0%, transparent 70%); pointer-events: none; }
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 1rem; position: relative; z-index: 2; }
.contact-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; font-weight: 300; max-width: 550px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 2; }

.contact-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info { padding: 2rem 0; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); line-height: 1.8; font-weight: 300; font-size: 0.98rem; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--blush-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-detail-text { display: flex; flex-direction: column; }
.contact-detail-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.contact-detail-value { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
.contact-detail-value a { color: var(--terracotta); text-decoration: none; transition: color 0.3s; }
.contact-detail-value a:hover { color: var(--terracotta-deep); }

.social-section h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link { width: 48px; height: 48px; background: var(--sand); border-radius: 14px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s; }
.social-link:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(194, 120, 92, 0.3); }
.social-link svg { width: 20px; height: 20px; fill: var(--text-mid); transition: fill 0.3s; }
.social-link:hover svg { fill: var(--white); }

.contact-form-wrapper { background: var(--white); border-radius: 24px; padding: 2.5rem; border: 1px solid var(--sand-dark); box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.contact-form-wrapper h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.contact-form-wrapper > p { color: var(--text-light); font-size: 0.88rem; font-weight: 300; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem 1.2rem; border: 1.5px solid var(--sand-dark); border-radius: 12px; background: var(--cream); font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--text-dark); outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(194, 120, 92, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); font-weight: 300; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit { background: var(--terracotta); color: var(--white); padding: 1rem 2.2rem; border: none; border-radius: 50px; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; width: 100%; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(194, 120, 92, 0.35); }

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; background: var(--blush-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1.5rem; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-mid); font-weight: 300; font-size: 0.95rem; }

.contact-faq { max-width: 750px; margin: 0 auto; padding: 0 2rem 4rem; }
.contact-faq h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); text-align: center; margin-bottom: 2rem; }
.mini-faq { border-bottom: 1px solid var(--sand-dark); }
.mini-faq summary { padding: 1.2rem 0; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.mini-faq summary::-webkit-details-marker { display: none; }
.mini-faq summary::after { content: '+'; font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 300; color: var(--terracotta); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.mini-faq[open] summary::after { transform: rotate(45deg); }
.mini-faq summary:hover { color: var(--terracotta); }
.mini-faq p { padding: 0 0 1.2rem 0; color: var(--text-mid); line-height: 1.7; font-weight: 300; font-size: 0.92rem; }

footer { background: var(--charcoal); padding: 3rem 2rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
.footer-logo span { color: var(--blush); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--blush); }
.footer-copy { width: 100%; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .contact-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 2rem 1.5rem; }
}
