:root {
  --pistachio-green: #9DC183;
  --vanilla-cream: #F9F6EE;
  --raspberry-red: #D6426A;
  --soft-white: #FFFFFF;
  --charcoal: #3D3D3D;
  --light-gray: #E8E4DA;
  --gold-accent: #D4AF37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--charcoal);
  background-color: var(--vanilla-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.main-navigation {
  background: var(--soft-white);
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--pistachio-green);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--raspberry-red);
}

.brand-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--raspberry-red);
  font-family: 'Brush Script MT', cursive;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
  color: var(--raspberry-red);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--raspberry-red);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.nav-active::after {
  width: 100%;
}

.hero-section {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pistachio-green) 0%, var(--vanilla-cream) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--charcoal);
  padding: 2rem;
  background: rgba(249, 246, 238, 0.85);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-width: 700px;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 1.2rem;
  font-family: 'Brush Script MT', cursive;
  color: var(--raspberry-red);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
  font-style: italic;
}

.cta-button-3d {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--raspberry-red);
  color: var(--soft-white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(214, 66, 106, 0.4);
  transform: translateY(0);
  border: none;
  cursor: pointer;
}

.cta-button-3d:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(214, 66, 106, 0.6);
  background: #c43759;
}

.content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.section-heading {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--raspberry-red);
  font-family: 'Brush Script MT', cursive;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: var(--pistachio-green);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.specialty-section {
  background: var(--soft-white);
  padding: 4rem 0;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.specialty-card {
  background: var(--vanilla-cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid var(--pistachio-green);
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.specialty-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.specialty-card h3 {
  font-size: 1.7rem;
  color: var(--raspberry-red);
  margin: 1.5rem 1.5rem 1rem;
  font-family: 'Brush Script MT', cursive;
}

.specialty-card p {
  padding: 0 1.5rem 2rem;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-section {
  background: linear-gradient(135deg, var(--vanilla-cream) 0%, var(--light-gray) 100%);
  padding: 4rem 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--pistachio-green);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
  border-color: var(--raspberry-red);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--raspberry-red);
  color: var(--soft-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(214, 66, 106, 0.3);
}

.process-step h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--charcoal);
  line-height: 1.7;
}

.testimonials-section {
  background: var(--soft-white);
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--vanilla-cream);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 5px solid var(--raspberry-red);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stars {
  color: var(--gold-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--raspberry-red);
}

.newsletter-section {
  background: linear-gradient(135deg, var(--pistachio-green) 0%, var(--raspberry-red) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--soft-white);
}

.newsletter-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--vanilla-cream);
}

.email-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.submit-button-3d {
  padding: 1rem 2.5rem;
  background: var(--soft-white);
  color: var(--raspberry-red);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.submit-button-3d:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.main-footer {
  background: var(--charcoal);
  color: var(--vanilla-cream);
  padding: 3.5rem 2.5rem 1.5rem;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--raspberry-red);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-family: 'Brush Script MT', cursive;
}

.footer-column p {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.footer-column a {
  color: var(--vanilla-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--pistachio-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(249, 246, 238, 0.2);
  color: var(--light-gray);
}

.cookie-banner {
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  background: var(--soft-white);
  padding: 2rem;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: bottom 0.5s ease;
  border-top: 4px solid var(--raspberry-red);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  color: var(--raspberry-red);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cookie-content p {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  line-height: 1.7;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cookie-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept-all {
  background: var(--raspberry-red);
  color: var(--soft-white);
}

.cookie-btn.accept-all:hover {
  background: #c43759;
}

.cookie-btn.customize {
  background: var(--pistachio-green);
  color: var(--soft-white);
}

.cookie-btn.customize:hover {
  background: #8ab06f;
}

.cookie-btn.decline {
  background: var(--light-gray);
  color: var(--charcoal);
}

.cookie-btn.decline:hover {
  background: #d4d0c6;
}

.cookie-link {
  color: var(--raspberry-red);
  text-decoration: underline;
  font-size: 0.95rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--raspberry-red) 0%, var(--pistachio-green) 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--soft-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: 'Brush Script MT', cursive;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
}

.story-section {
  padding: 4rem 0;
  background: var(--vanilla-cream);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 5px solid var(--pistachio-green);
}

.story-text h2 {
  font-size: 2.5rem;
  color: var(--raspberry-red);
  margin-bottom: 1.5rem;
  font-family: 'Brush Script MT', cursive;
}

.story-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.team-section {
  padding: 4rem 0;
  background: var(--soft-white);
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 3rem;
  font-style: italic;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--vanilla-cream);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 3px solid var(--pistachio-green);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 5px solid var(--raspberry-red);
}

.team-card h3 {
  font-size: 1.8rem;
  color: var(--raspberry-red);
  margin-bottom: 0.5rem;
  font-family: 'Brush Script MT', cursive;
}

.team-role {
  font-weight: 600;
  color: var(--pistachio-green);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-card p:last-child {
  color: var(--charcoal);
  line-height: 1.7;
}

.values-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--vanilla-cream) 0%, var(--light-gray) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.value-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--pistachio-green);
}

.value-item:hover {
  transform: scale(1.05);
  border-color: var(--raspberry-red);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-size: 1.6rem;
  color: var(--raspberry-red);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--charcoal);
  line-height: 1.7;
}

.blog-section {
  padding: 4rem 0;
  background: var(--vanilla-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.blog-card {
  background: var(--soft-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid var(--pistachio-green);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--raspberry-red);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 2rem;
}

.blog-date {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--pistachio-green);
  color: var(--soft-white);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-size: 1.8rem;
  color: var(--raspberry-red);
  margin-bottom: 1rem;
  font-family: 'Brush Script MT', cursive;
}

.blog-card p {
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--raspberry-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.read-more:hover {
  color: var(--pistachio-green);
}

.contact-section {
  padding: 4rem 0;
  background: var(--vanilla-cream);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  background: var(--soft-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 3px solid var(--pistachio-green);
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--raspberry-red);
  margin-bottom: 2rem;
  font-family: 'Brush Script MT', cursive;
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h3 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.info-block p {
  color: var(--charcoal);
  line-height: 1.8;
}

.info-block a {
  color: var(--raspberry-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--pistachio-green);
}

.contact-form-wrapper {
  background: var(--soft-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 3px solid var(--raspberry-red);
}

.contact-form-wrapper h2 {
  font-size: 2.2rem;
  color: var(--raspberry-red);
  margin-bottom: 2rem;
  font-family: 'Brush Script MT', cursive;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--vanilla-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--raspberry-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.map-section {
  padding: 4rem 0;
  background: var(--soft-white);
}

.map-placeholder {
  background: var(--vanilla-cream);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  border: 3px solid var(--pistachio-green);
}

.map-placeholder p {
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.post-content {
  background: var(--vanilla-cream);
  padding: 4rem 0;
}

.post-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.post-date,
.post-author {
  padding: 0.5rem 1.2rem;
  background: var(--pistachio-green);
  color: var(--soft-white);
  border-radius: 20px;
}

.post-header h1 {
  font-size: 3.2rem;
  color: var(--raspberry-red);
  line-height: 1.3;
  font-family: 'Brush Script MT', cursive;
}

.post-featured-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 5px solid var(--pistachio-green);
}

.post-body {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.post-body h2 {
  font-size: 2.2rem;
  color: var(--raspberry-red);
  margin: 2.5rem 0 1.5rem;
  font-family: 'Brush Script MT', cursive;
}

.post-body h3 {
  font-size: 1.7rem;
  color: var(--pistachio-green);
  margin: 2rem 0 1rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body strong {
  color: var(--raspberry-red);
  font-weight: 700;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

.back-to-blog {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--pistachio-green);
  color: var(--soft-white);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.back-to-blog:hover {
  background: var(--raspberry-red);
  transform: translateY(-3px);
}

.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thank-you-modal.show {
  opacity: 1;
}

.modal-content {
  background: var(--soft-white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  border: 4px solid var(--raspberry-red);
}

.modal-content h3 {
  font-size: 2.5rem;
  color: var(--raspberry-red);
  margin-bottom: 1.5rem;
  font-family: 'Brush Script MT', cursive;
}

.modal-content p {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.close-modal {
  padding: 0.9rem 2.5rem;
  background: var(--raspberry-red);
  color: var(--soft-white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--pistachio-green);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .specialty-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
