:root {
  --primary-bg: #f9f8f5;
  --text-dark: #1a1a1a;
  --platinum: #e8e6e0;
  --platinum-light: #f5f3f0;
  --halo: #fef9f0;
  --accent-gold: #d4af9e;
  --dark-night: #2a2520;
  --text-light: #ffffff;
}

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

html, body {
  background-color: var(--primary-bg);
  color: var(--text-dark);
  font-family: 'Georgia', serif;
  line-height: 1.6;
}

body {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2.5rem;
  margin: 2rem 0 1.5rem 0;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem 0;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  text-align: justify;
}

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

header {
  background-color: var(--primary-bg);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--platinum);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
  font-family: 'Georgia', serif;
}

.logo:hover {
  color: var(--accent-gold);
  transition: color 200ms ease;
}

nav {
  display: none;
}

nav.active {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 200ms ease;
}

nav a:hover {
  color: var(--accent-gold);
}

.header-button {
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
}

.header-button:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: scale(1.05);
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  nav {
    display: flex !important;
  }
  .menu-toggle {
    display: none;
  }
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
}

.hero {
  background: linear-gradient(135deg, rgba(248, 247, 245, 0.9) 0%, rgba(230, 227, 220, 0.95) 100%),
              url('images/hero-bathroom.jpg') center/cover no-repeat;
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 230, 224, 0.3) 0%, rgba(232, 230, 224, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-paragraph {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
  text-decoration: none;
  display: inline-block;
}

.cta-filled {
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--text-light);
}

.cta-filled:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.cta-outline {
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

.cta-outline:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: scale(1.05);
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--platinum);
}

.section.dark {
  background-color: var(--dark-night);
  color: var(--text-light);
}

.section.dark h2,
.section.dark h3 {
  color: var(--text-light);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.glow-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.glow-point {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--platinum-light);
  border-radius: 4px;
  transition: all 200ms ease;
}

.glow-point:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 158, 0.3);
}

.glow-point strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.tiles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tile {
  background-color: var(--platinum-light);
  padding: 2rem;
  border-radius: 4px;
  transition: all 200ms ease;
}

.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(212, 175, 158, 0.25);
}

.tile h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.tile-quote {
  font-style: italic;
  color: var(--accent-gold);
  margin: 1rem 0;
  font-size: 0.95rem;
}

.tile-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: block;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--platinum-light);
  border-radius: 4px;
  overflow: hidden;
  transition: all 200ms ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 158, 0.3);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 230, 224, 0.1) 0%, rgba(232, 230, 224, 0.4) 100%);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-gold);
  color: var(--text-light);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  text-align: justify;
}

.product-availability {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.product-button {
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  text-align: center;
}

.product-button:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: scale(1.05);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail-image {
  position: relative;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 230, 224, 0.1) 0%, rgba(232, 230, 224, 0.3) 100%);
  border-radius: 4px;
}

.product-detail-content h1 {
  margin-bottom: 1.5rem;
}

.product-specs {
  background-color: var(--platinum-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.product-spec-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--platinum);
}

.product-spec-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-spec-label {
  font-weight: 400;
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.product-spec-value {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.quick-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.note-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--platinum-light);
  border-radius: 4px;
  font-size: 0.9rem;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.ritual-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--platinum-light);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 200ms ease;
}

.ritual-item:hover {
  transform: scale(1.05);
}

.harmony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.harmony-item {
  background-color: var(--platinum-light);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
  transition: all 200ms ease;
}

.harmony-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 158, 0.2);
}

.faq-container {
  max-width: 900px;
  margin: 2rem auto;
}

.faq-item {
  background-color: var(--platinum-light);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 200ms ease;
}

.faq-question:hover {
  background-color: var(--platinum);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 200ms ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item.active .faq-answer {
  display: block;
  max-height: 500px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--platinum);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--halo);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 158, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--platinum-light);
  padding: 2rem;
  border-radius: 4px;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
  font-weight: 400;
}

.submit-button:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}

footer {
  background-color: var(--dark-night);
  color: var(--text-light);
  padding: 3rem 0 1.5rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-block h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-block ul {
  list-style: none;
}

.footer-block ul li {
  margin-bottom: 0.5rem;
}

.footer-block ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-block ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-you-content h1 {
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.back-button {
  display: inline-block;
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
}

.back-button:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.content-text {
  text-align: justify;
  line-height: 1.8;
}

.switcher {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.switcher-btn {
  padding: 0.7rem 1.5rem;
  background-color: var(--platinum-light);
  border: 1px solid var(--platinum);
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 4px;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
}

.switcher-btn.active {
  background-color: var(--accent-gold);
  color: var(--text-light);
  border-color: var(--accent-gold);
}

.switcher-btn:hover {
  transform: scale(1.05);
}

.page-intro {
  background-color: var(--halo);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

.page-intro h1 {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
}
