*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3D3833;
  background-color: #FFFFFF;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: #2C2825;
  margin-bottom: 1.5rem;
}
h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
h4 {
  font-size: 1.25rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: #8B7355;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #6B5344;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
.section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
.text-center {
  text-align: center;
}
.text-accent {
  color: #C9A86C;
}
.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #6B645C;
}
.eyebrow {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B7355;
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 250ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background-color: #8B7355;
  border-color: #8B7355;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #6B5344;
  border-color: #6B5344;
  color: #FFFFFF;
}
.btn-secondary {
  background-color: transparent;
  border-color: #8B7355;
  color: #8B7355;
}
.btn-secondary:hover {
  background-color: #8B7355;
  color: #FFFFFF;
}
.btn-white {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #8B7355;
}
.btn-white:hover {
  background-color: #FAF8F5;
  border-color: #FAF8F5;
}
.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul,
ol {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}
.list-elegant {
  list-style: none;
  padding: 0;
}
.list-elegant li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.list-elegant li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background-color: #C9A86C;
}
.announcement-bar {
  background-color: #8B7355;
  color: #FFFFFF;
  text-align: center;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.announcement-bar p {
  margin: 0;
}
.announcement-bar a {
  color: #E8D5B5;
  text-decoration: underline;
}
.announcement-bar a:hover {
  color: #FFFFFF;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E4DE;
  transition: box-shadow 250ms ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(44, 40, 37, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 1.5rem;
  }
}
.logo {
  flex-shrink: 0;
}
.logo a {
  display: block;
}
.logo img {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}
.logo .site-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #2C2825;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}
.nav-main .nav-list {
  display: flex;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-main .nav-item {
  position: relative;
}
.nav-main .nav-item > a {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3D3833;
  padding: 0.5rem 0;
  transition: color 150ms ease;
}
.nav-main .nav-item > a:hover {
  color: #8B7355;
}
.nav-main .nav-item.active > a {
  color: #8B7355;
}
.nav-main .nav-item .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background-color: #FFFFFF;
  border: 1px solid #E8E4DE;
  box-shadow: 0 4px 12px rgba(44, 40, 37, 0.08);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease;
  list-style: none;
  margin-top: 1rem;
}
.nav-main .nav-item .nav-dropdown li a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #3D3833;
}
.nav-main .nav-item .nav-dropdown li a:hover {
  background-color: #F5F1EB;
  color: #8B7355;
}
.nav-main .nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.header-cta {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }
}
.header-cta .btn {
  padding: 0.5rem 1.5rem;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2C2825;
  position: relative;
  transition: background-color 150ms ease;
}
.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2C2825;
  transition: transform 250ms ease;
}
.mobile-menu-toggle .hamburger::before {
  top: -7px;
}
.mobile-menu-toggle .hamburger::after {
  bottom: -7px;
}
.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  z-index: 999;
  padding: 100px 2rem 3rem;
  overflow-y: auto;
}
.mobile-nav.active {
  display: block;
}
.mobile-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .nav-item {
  border-bottom: 1px solid #E8E4DE;
}
.mobile-nav .nav-item a {
  display: block;
  padding: 1.5rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: #2C2825;
}
.mobile-nav .nav-item.active a {
  color: #8B7355;
}
.mobile-nav .mobile-nav-cta {
  margin-top: 3rem;
  text-align: center;
}
.mobile-nav .mobile-nav-cta .btn {
  width: 100%;
}
.site-main {
  min-height: 60vh;
}
.site-footer {
  background-color: #F5F1EB;
  border-top: 1px solid #E8E4DE;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer-col h4 {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: #8B7355;
}
.footer-brand .footer-logo {
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 480px) {
  .footer-brand .footer-logo img {
    margin: 0 auto;
  }
}
.footer-brand .tagline {
  font-size: 1rem;
  color: #6B645C;
}
.footer-links .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links .footer-nav-list li {
  margin-bottom: 0.5rem;
}
.footer-links .footer-nav-list a {
  font-size: 1rem;
  color: #3D3833;
}
.footer-links .footer-nav-list a:hover {
  color: #8B7355;
}
.footer-contact address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: #3D3833;
  margin-bottom: 1rem;
}
.footer-contact .phone a {
  font-size: 1rem;
  font-weight: 500;
  color: #8B7355;
}
.footer-social .social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .footer-social .social-links {
    justify-content: center;
  }
}
.footer-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #8B7355;
  transition: all 150ms ease;
}
.footer-social .social-links a:hover {
  background-color: #8B7355;
  color: #FFFFFF;
}
.footer-social .social-links a svg {
  width: 18px;
  height: 18px;
}
.footer-social .hours {
  font-size: 0.875rem;
  color: #6B645C;
  line-height: 1.6;
}
.footer-social .hours strong {
  color: #3D3833;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid #E8E4DE;
  font-size: 0.875rem;
  color: #9A958E;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.footer-bottom .award {
  font-style: italic;
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 4rem 1.5rem;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.hero-content {
  max-width: 800px;
  z-index: 1;
}
.hero-eyebrow {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B7355;
  margin-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #2C2825;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #6B645C;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-compact {
  min-height: 40vh;
  background-color: #F5F1EB;
}
.hero-compact .hero-title {
  font-size: 3.5rem;
}
.card {
  background-color: #FFFFFF;
  border: 1px solid #E8E4DE;
  transition: all 250ms ease;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(44, 40, 37, 0.08);
  transform: translateY(-4px);
}
.card-image {
  position: relative;
  padding-top: 66.67%;
  overflow: hidden;
}
.card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-content {
  padding: 2rem;
}
.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.card-text {
  color: #6B645C;
  margin-bottom: 1.5rem;
}
.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B7355;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.card-link::after {
  content: '\2192';
  transition: transform 150ms ease;
}
.card-link:hover::after {
  transform: translateX(4px);
}
.service-card {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #FFFFFF;
  border: 1px solid #E8E4DE;
  transition: all 250ms ease;
}
.service-card:hover {
  border-color: #8B7355;
  box-shadow: 0 4px 12px rgba(44, 40, 37, 0.08);
}
.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #8B7355;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .service-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.service-card .service-text {
  color: #6B645C;
  margin-bottom: 1.5rem;
}
.feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F1EB;
  border-radius: 50%;
  color: #8B7355;
}
.feature-content {
  flex: 1;
}
.feature-title {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2C2825;
}
.feature-text {
  color: #6B645C;
  margin: 0;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 80px;
  padding-bottom: 3rem;
  counter-increment: step;
}
@media (max-width: 480px) {
  .step {
    padding-left: 60px;
  }
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8B7355;
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  border-radius: 50%;
}
@media (max-width: 480px) {
  .step::before {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 55px;
  bottom: 0;
  width: 2px;
  background-color: #E8E4DE;
}
@media (max-width: 480px) {
  .step:not(:last-child)::after {
    left: 19px;
    top: 45px;
  }
}
.step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.step-text {
  color: #6B645C;
  margin: 0;
}
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #3D3833;
}
.testimonial-quote::before {
  content: '\201C';
  color: #C9A86C;
}
.testimonial-quote::after {
  content: '\201D';
  color: #C9A86C;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B7355;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3D3833;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: #3D3833;
  background-color: #FFFFFF;
  border: 1px solid #E8E4DE;
  border-radius: 2px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #8B7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: #9A958E;
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235C5751' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 3rem;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}
.form-checkbox input {
  margin-top: 4px;
}
.form-checkbox .checkbox-label {
  font-size: 1rem;
  color: #3D3833;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(44, 40, 37, 0);
  transition: background-color 250ms ease;
}
.gallery-item:hover::after {
  background-color: rgba(44, 40, 37, 0.2);
}
.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background-color: #E8D5B5;
  border-left: 4px solid #C9A86C;
  font-size: 1rem;
  color: #3D3833;
}
.notice strong {
  color: #8B7355;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #E8E4DE;
}
.divider-icon {
  color: #C9A86C;
  font-size: 1.5rem;
}
.divider-tea::before,
.divider-tea::after {
  max-width: 100px;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B7355;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: #6B645C;
  margin: 0;
}
.cta-section {
  background-color: #F5F1EB;
  padding: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1.5rem;
  }
}
.cta-section-dark {
  background-color: #8B7355;
  color: #FFFFFF;
}
.cta-section-dark .cta-title {
  color: #FFFFFF;
}
.cta-section-dark .cta-text {
  color: #E8D5B5;
}
.cta-section-dark .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.cta-section-dark .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #8B7355;
}
.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-text {
  font-size: 1.125rem;
  color: #6B645C;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-home .hero {
  min-height: 85vh;
}
.page-home .hero-title {
  font-weight: 400;
  letter-spacing: 0.02em;
}
.home-services {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.home-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .home-services .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
.home-social-proof {
  padding: 4rem 0;
  background-color: #F5F1EB;
  text-align: center;
}
.home-social-proof .award-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #FFFFFF;
  border: 2px solid #C9A86C;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #8B7355;
}
.home-social-proof .award-badge .badge-icon {
  color: #C9A86C;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}
.home-social-proof .award-badge .badge-icon svg {
  fill: currentColor;
}
.home-social-proof .social-proof-text {
  max-width: 600px;
  margin: 2rem auto 0;
  color: #6B645C;
}
.home-instagram {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.home-instagram .instagram-header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-instagram .instagram-header .instagram-handle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #6B645C;
}
.home-instagram .instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
@media (max-width: 1024px) {
  .home-instagram .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .home-instagram .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-instagram .instagram-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.home-instagram .instagram-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.home-instagram .instagram-item:hover img {
  transform: scale(1.1);
}
.home-instagram .instagram-cta {
  text-align: center;
  margin-top: 3rem;
}
.page-tea-room .hero-compact {
  background-image: url('/assets/tea-room-hero.jpg');
  background-size: cover;
  background-position: center;
}
.page-tea-room .hero-compact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}
.tea-experience {
  padding: 6rem 0;
}
.tea-experience .experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .tea-experience .experience-grid {
    grid-template-columns: 1fr;
  }
}
.tea-experience .experience-image {
  position: relative;
}
.tea-experience .experience-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.tea-experience .experience-image::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 2px solid #C9A86C;
  z-index: -1;
}
.tea-included {
  padding: 6rem 0;
  background-color: #F5F1EB;
}
.tea-included .included-list {
  max-width: 600px;
  margin: 0 auto;
}
.tea-occasions {
  padding: 6rem 0;
}
.tea-occasions .occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .tea-occasions .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tea-occasions .occasions-grid {
    grid-template-columns: 1fr;
  }
}
.tea-occasions .occasion-card {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #FFFFFF;
  border: 1px solid #E8E4DE;
  transition: all 250ms ease;
}
.tea-occasions .occasion-card:hover {
  border-color: #8B7355;
  box-shadow: 0 4px 12px rgba(44, 40, 37, 0.08);
}
.tea-occasions .occasion-card .occasion-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  color: #8B7355;
}
.tea-occasions .occasion-card .occasion-icon svg {
  fill: currentColor;
}
.tea-occasions .occasion-card .occasion-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.tea-occasions .occasion-card .occasion-text {
  color: #6B645C;
  margin: 0;
}
.tea-booking {
  padding: 6rem 0;
  background-color: #8B7355;
  color: #FFFFFF;
}
.tea-booking .booking-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.tea-booking .booking-title {
  color: #FFFFFF;
}
.tea-booking .booking-text {
  color: #E8D5B5;
  margin-bottom: 3rem;
}
.tea-booking .booking-details {
  text-align: left;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin-bottom: 3rem;
}
.tea-booking .booking-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tea-booking .booking-details ul li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}
.tea-booking .booking-details ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #C9A86C;
}
.tea-booking .booking-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.tea-booking .booking-contact p {
  margin-bottom: 0.5rem;
}
.tea-booking .booking-contact a {
  color: #E8D5B5;
}
.tea-booking .booking-contact a:hover {
  color: #FFFFFF;
}
.page-catering .hero-compact {
  background-color: #F5F1EB;
}
.catering-why {
  padding: 6rem 0;
}
.catering-why .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .catering-why .why-grid {
    grid-template-columns: 1fr;
  }
}
.catering-menu {
  padding: 6rem 0;
  background-color: #F5F1EB;
}
.catering-menu .menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .catering-menu .menu-grid {
    grid-template-columns: 1fr;
  }
}
.catering-menu .menu-item {
  background-color: #FFFFFF;
  padding: 3rem;
  text-align: center;
}
.catering-menu .menu-item .menu-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #8B7355;
}
.catering-menu .menu-item .menu-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.catering-menu .menu-item .menu-description {
  color: #6B645C;
  margin: 0;
}
.catering-menu .menu-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: #6B645C;
}
.catering-events {
  padding: 6rem 0;
}
.catering-events .events-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.catering-events .events-list .event-tag {
  padding: 0.5rem 1.5rem;
  background-color: #F5F1EB;
  border: 1px solid #E8E4DE;
  font-size: 0.875rem;
  color: #3D3833;
}
.catering-process {
  padding: 6rem 0;
  background-color: #F5F1EB;
}
.catering-process .process-steps {
  max-width: 600px;
  margin: 0 auto;
}
.page-wholesale .hero-compact {
  background-color: #F5F1EB;
}
.wholesale-products {
  padding: 6rem 0;
}
.wholesale-products .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .wholesale-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wholesale-products .products-grid {
    grid-template-columns: 1fr;
  }
}
.wholesale-products .product-card {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #FFFFFF;
  border: 1px solid #E8E4DE;
}
.wholesale-products .product-card .product-icon {
  margin-bottom: 1.5rem;
  color: #8B7355;
  display: flex;
  justify-content: center;
}
.wholesale-products .product-card .product-icon svg {
  fill: currentColor;
}
.wholesale-products .product-card .product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.wholesale-products .product-card .product-text {
  color: #6B645C;
  margin: 0;
  font-size: 0.875rem;
}
.wholesale-benefits {
  padding: 6rem 0;
  background-color: #F5F1EB;
}
.wholesale-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .wholesale-benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-item {
  text-align: center;
  padding: 1.5rem;
}
.benefit-item .benefit-icon {
  margin-bottom: 1rem;
  color: #8B7355;
  display: flex;
  justify-content: center;
}
.benefit-item .benefit-icon svg {
  fill: currentColor;
}
.benefit-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.benefit-item p {
  color: #6B645C;
  font-size: 0.9rem;
}
.wholesale-area {
  padding: 6rem 0;
  text-align: center;
}
.wholesale-area .area-map {
  max-width: 600px;
  margin: 3rem auto;
  background-color: #F5F1EB;
  padding: 3rem;
  border: 1px solid #E8E4DE;
}
.page-gallery .hero-compact {
  min-height: 30vh;
}
.gallery-section {
  padding: 3rem 0;
}
.gallery-section:nth-child(even) {
  background-color: #F5F1EB;
}
.gallery-section .gallery-section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
}
.page-about .hero-compact {
  background-color: #F5F1EB;
}
.about-story {
  padding: 6rem 0;
}
.about-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-story .story-grid {
    grid-template-columns: 1fr;
  }
}
.about-story .story-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about-story .story-content .story-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.about-story .story-content p {
  color: #6B645C;
  margin-bottom: 1.5rem;
}
.about-values {
  padding: 6rem 0;
  background-color: #F5F1EB;
}
.about-values .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .about-values .values-grid {
    grid-template-columns: 1fr;
  }
}
.about-values .value-item {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .about-values .value-item {
    flex-direction: column;
    text-align: center;
  }
}
.about-values .value-item .value-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #8B7355;
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .about-values .value-item .value-icon {
    margin: 0 auto;
  }
}
.about-values .value-item .value-content .value-title {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.about-values .value-item .value-content .value-text {
  color: #6B645C;
  margin: 0;
}
.about-recognition {
  padding: 6rem 0;
  text-align: center;
}
.about-recognition .recognition-badge {
  display: inline-block;
  padding: 2rem 4rem;
  background-color: #F5F1EB;
  border: 2px solid #C9A86C;
}
.about-recognition .recognition-badge .badge-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  color: #8B7355;
  margin-bottom: 0.5rem;
}
.about-recognition .recognition-badge .badge-text {
  color: #6B645C;
  margin: 0;
}
.page-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .page-contact .contact-grid {
    grid-template-columns: 1fr;
  }
}
.page-contact .contact-info .info-block {
  margin-bottom: 3rem;
}
.page-contact .contact-info .info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #8B7355;
}
.page-contact .contact-info .info-block address {
  font-style: normal;
  line-height: 1.8;
}
.page-contact .contact-form {
  background-color: #F5F1EB;
  padding: 3rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
}
.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: opacity 150ms ease;
}
.lightbox-close:hover {
  opacity: 0.7;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 3rem;
  cursor: pointer;
  padding: 1.5rem;
  line-height: 1;
  transition: opacity 150ms ease;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}
.lightbox-prev {
  left: -60px;
}
@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
}
.lightbox-next {
  right: -60px;
}
@media (max-width: 768px) {
  .lightbox-next {
    right: 10px;
  }
}
body.lightbox-open {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}

/* ===== ENHANCEMENTS ===== */

/* Parallax Hero */
.hero-parallax .hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}
.hero-parallax .hero-bg img {
  transform: translateY(0);
  will-change: transform;
}

/* Scroll Fade-in Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Service Card Hover */
.service-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(44, 40, 37, 0.15);
}
.service-card .service-image {
  overflow: hidden;
  margin: -3rem -2rem 1.5rem -2rem;
}
.service-card .service-image img {
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Floating Book Now Button */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}
.floating-cta .btn {
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.floating-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.5);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 6rem 0;
  background-color: #F5F1EB;
  overflow: hidden;
}
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid #C9A86C;
}
.testimonial-stars {
  color: #C9A86C;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
.testimonial-stars svg {
  fill: currentColor;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D4C4B5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background-color: #8B7355;
  transform: scale(1.2);
}

/* Menu Preview / Packages */
.packages-section {
  padding: 6rem 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
.package-card {
  background: #FFFFFF;
  border: 2px solid #E8E4DE;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.package-card:hover {
  border-color: #8B7355;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(44, 40, 37, 0.1);
}
.package-card.featured {
  border-color: #C9A86C;
  transform: scale(1.05);
}
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #C9A86C;
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.package-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: #2C2825;
  margin-bottom: 0.5rem;
}
.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8B7355;
  margin-bottom: 0.25rem;
}
.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6B645C;
}
.package-features {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
  border-top: 1px solid #E8E4DE;
  border-bottom: 1px solid #E8E4DE;
  margin: 1.5rem 0;
}
.package-features li {
  padding: 0.75rem 0;
  color: #6B645C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.package-features li::before {
  content: '✓';
  color: #C9A86C;
  font-weight: bold;
}

/* FAQ Accordion */
.faq-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #E8E4DE;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #2C2825;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: #8B7355;
}
.faq-icon {
  font-size: 1.5rem;
  color: #8B7355;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: #6B645C;
  line-height: 1.8;
}

/* Booking Form */
.booking-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F5F1EB 0%, #E8D5B5 100%);
}
.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(44, 40, 37, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Google Maps */
.map-section {
  padding: 0;
}
.map-container {
  position: relative;
  height: 400px;
  background: #E8E4DE;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: #FFFFFF;
  padding: 2rem;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .map-overlay {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
  }
}

/* Instagram Feed Section */
.instagram-section {
  padding: 6rem 0;
  background: #FFFFFF;
}
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
@media (max-width: 768px) {
  .instagram-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}
.instagram-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover img {
  transform: scale(1.1);
}
.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 115, 85, 0);
  transition: background 0.3s ease;
}
.instagram-item:hover::after {
  background: rgba(139, 115, 85, 0.3);
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #E8E4DE 25%, #F5F1EB 50%, #E8E4DE 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Page Transition */
.page-transition {
  animation: pageLoad 0.5s ease-out;
}
@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Image Load */
.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lazy-image.loaded {
  opacity: 1;
}

/* ===========================
   AI CHATBOT WIDGET
   =========================== */

/* Chatbot Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A86C 0%, #8B7355 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
  transition: all 0.3s ease;
  z-index: 9998;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.5);
}
.chatbot-toggle svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
  transition: transform 0.3s ease;
}
.chatbot-toggle.active svg {
  transform: rotate(90deg);
}
.chatbot-toggle .chatbot-icon-close {
  display: none;
}
.chatbot-toggle.active .chatbot-icon-chat {
  display: none;
}
.chatbot-toggle.active .chatbot-icon-close {
  display: block;
}

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 180px;
  right: 30px;
  width: 380px;
  height: 520px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  animation: chatbotSlideIn 0.3s ease;
}
.chatbot-container.active {
  display: flex;
}
@keyframes chatbotSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 480px) {
  .chatbot-container {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: 160px;
    height: 450px;
  }
  .chatbot-toggle {
    right: 20px;
    bottom: 90px;
  }
}

/* Chatbot Header */
.chatbot-header {
  background: linear-gradient(135deg, #C9A86C 0%, #8B7355 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chatbot-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.chatbot-header-info h4 {
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.chatbot-header-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin: 0;
}
.chatbot-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.chatbot-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Chatbot Messages */
.chatbot-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  background: #FAF9F7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chatbot-message {
  max-width: 85%;
  padding: 0.875rem 1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: messageSlideIn 0.3s ease;
}
@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chatbot-message.bot {
  background: #FFFFFF;
  color: #3D3833;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.chatbot-message.user {
  background: linear-gradient(135deg, #C9A86C 0%, #8B7355 100%);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chatbot-message a {
  color: #C9A86C;
  text-decoration: underline;
}
.chatbot-message.user a {
  color: #FFFFFF;
}

/* Quick Action Buttons */
.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.chatbot-quick-btn {
  padding: 0.5rem 1rem;
  background: #F5F3F0;
  border: 1px solid #E5E0D8;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #8B7355;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}
.chatbot-quick-btn:hover {
  background: #C9A86C;
  color: #FFFFFF;
  border-color: #C9A86C;
}

/* Typing Indicator */
.chatbot-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.875rem 1rem;
  background: #FFFFFF;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.chatbot-typing span {
  width: 8px;
  height: 8px;
  background: #C9A86C;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}
.chatbot-typing span:nth-child(1) { animation-delay: 0s; }
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

/* Chatbot Input */
.chatbot-input-container {
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border-top: 1px solid #E5E0D8;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.chatbot-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #E5E0D8;
  border-radius: 25px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}
.chatbot-input:focus {
  border-color: #C9A86C;
}
.chatbot-input::placeholder {
  color: #A39E96;
}
.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A86C 0%, #8B7355 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chatbot-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}
.chatbot-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.chatbot-send svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Chatbot Powered By */
.chatbot-footer {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: #A39E96;
  background: #FFFFFF;
}

/* ===========================
   MOBILE RESPONSIVENESS FIXES
   =========================== */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .header-inner {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  .logo .site-title {
    font-size: 1.4rem;
  }

  /* Add padding to body for fixed header */
  body {
    padding-top: 60px;
  }

  .page-home body,
  body.page-home {
    padding-top: 60px;
  }
}

/* Mobile Navigation Overlay Fix */
@media (max-width: 1024px) {
  .mobile-nav {
    padding-top: 80px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile-nav .nav-item a {
    font-size: 1.5rem;
    padding: 1.25rem 0;
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 2rem;
  }
}

/* Mobile Hero Section Fixes */
@media (max-width: 768px) {
  .hero {
    min-height: calc(70vh - 60px);
    padding: 3rem 1.25rem;
    margin-top: 0;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(60vh - 60px);
    padding: 2.5rem 1rem;
  }

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

  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Section Spacing */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Mobile Cards & Grids */
@media (max-width: 768px) {
  .card-content {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* Mobile Footer Fixes */
@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 0;
    gap: 2rem;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding: 1rem 0;
  }
}

/* Mobile Floating Buttons */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 80px !important;
    right: 15px !important;
    left: auto !important;
    width: auto !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.8rem !important;
  }

  .whatsapp-btn {
    bottom: 15px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

/* Mobile Chatbot Position Fix */
@media (max-width: 768px) {
  .chatbot-toggle {
    bottom: 80px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .chatbot-toggle svg {
    width: 22px;
    height: 22px;
  }

  .chatbot-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 85vh;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
  }

  .chatbot-header {
    padding: 1rem 1.25rem;
  }

  .chatbot-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .chatbot-header-info h4 {
    font-size: 1.1rem;
  }

  .chatbot-messages {
    padding: 1rem;
  }

  .chatbot-message {
    max-width: 90%;
    font-size: 0.875rem;
    padding: 0.75rem;
  }

  .chatbot-input-container {
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .chatbot-input {
    padding: 0.625rem 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .chatbot-send {
    width: 40px;
    height: 40px;
  }
}

/* Mobile Form Fixes */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.875rem;
  }
}

/* Mobile CTA Section */
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section .btn {
    width: 100%;
  }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .btn,
  a,
  button {
    min-height: 44px;
  }

  .nav-item a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* Improve text readability on mobile */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  p {
    margin-bottom: 1rem;
  }
}

/* Fix images on mobile */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .hero-bg img,
  .card-image img {
    object-position: center;
  }
}

/* iOS Safe Area Support */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .chatbot-container {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
