:root {
  --primary: #0f5f66; /* deep teal */
  --primary-dark: #084147;
  --accent: #e86454; /* warm coral */
  --highlight: #f4c347; /* sunshine */
  --highlight-soft: #fdf4d6;
  --sunset-orange: #ff8c42; /* sunset orange */
  --sunset-pink: #ff6b6b; /* sunset pink */
  --sunset-purple: #9b59b6; /* sunset purple */
  --light-teal: #4ecdc4; /* light teal */
  --warm-beige: #f7f3e9; /* warm beige */
  --midnight: #1c2b3a;
  --canvas: #f8f5f2;
  --art-1: rgba(232, 100, 84, 0.06);
  --art-2: rgba(244, 195, 71, 0.04);
  --art-3: rgba(15, 95, 102, 0.03);
  --sunset-1: rgba(255, 140, 66, 0.08);
  --sunset-2: rgba(255, 107, 107, 0.06);
  --sunset-3: rgba(155, 89, 182, 0.04);
  --pattern-opacity: 0.06;
  --gray: #5a6975;
  --radius: 6px;
  --transition: 150ms ease;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  /* Artistic base: sunset-inspired gradient with subtle patterns */
  background: linear-gradient(
    135deg,
    var(--warm-beige) 0%,
    rgba(255, 140, 66, 0.05) 25%,
    rgba(255, 107, 107, 0.03) 50%,
    rgba(155, 89, 182, 0.02) 75%,
    var(--light-teal) 100%
  );
  background-image: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, var(--pattern-opacity)) 0 2px,
      transparent 2px 28px
    ),
    linear-gradient(120deg, var(--sunset-1), var(--sunset-2), var(--sunset-3));
  background-blend-mode: overlay, normal;
  color: var(--midnight);
  -webkit-font-smoothing: antialiased;
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Cart Modal Styles */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.cart-modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cart-modal-header {
  padding: 1.5rem;
  border-bottom: 2px solid #2c5530;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-modal-header h2 {
  margin: 0;
  color: #2c5530;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

.cart-items {
  padding: 1.5rem;
}

.cart-summary {
  padding: 1.5rem;
  border-top: 1px solid #eee;
}

.cart-total {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  padding: 0.75rem;
  background: #2c5530;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.checkout-btn:hover {
  background: #1e3a22;
}

/* Cart item styles */
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #2c5530;
}

.cart-item-meta {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  color: #666;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cart-item-controls button:hover {
  background: #f5f5f5;
}

.cart-item-controls .remove-btn {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  width: auto;
  height: auto;
}

.cart-item-controls .remove-btn:hover {
  background: #c82333;
}

.cart-item-price {
  font-weight: 600;
  color: #2c5530;
  font-size: 1.1rem;
  min-width: 80px;
  text-align: right;
}

.empty-cart {
  text-align: center;
  color: #666;
  padding: 2rem;
  font-style: italic;
}

/* Cart breakdown styles */
.cart-breakdown {
  margin-bottom: 1rem;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cart-line.cart-total {
  font-weight: 600;
  font-size: 1.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #ddd;
  margin-top: 0.5rem;
}

/* Pagination styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

.pagination-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
  background: #1a3d1f;
  transform: translateY(-1px);
}

.pagination-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.page-number {
  background: white;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.page-number:hover {
  background: var(--accent);
  color: white;
}

.page-number.active {
  background: var(--accent);
  color: white;
}

.pagination-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pagination-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .page-number {
    padding: 0.4rem 0.6rem;
    min-width: 35px;
    font-size: 0.9rem;
  }
}

/* Cart count styles */
#cart-count {
  display: none;
}

#cart-count.show {
  display: inline;
}

/* Payment inquiry section */
.payment-inquiry {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2c5530;
}

.payment-inquiry.show {
  display: block;
}

.payment-details {
  margin: 1rem 0;
}

.payment-details p {
  margin: 0.5rem 0;
}

/* Enhanced image quality for all images */
img {
  image-rendering: -webkit-optimize-contrast; /* Edge support */
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast; /* Edge support for crisp-edges */
  image-rendering: crisp-edges;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p {
  line-height: 1.6;
  margin: 0 0 1em;
}
.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  /* translucent header to let the site-wide pattern peek through */
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.brand a {
  text-decoration: none;
  color: var(--midnight);
  font-weight: 600;
  font-size: 1.15rem;
}

/* site logo sizing */
.site-logo {
  width: 108px; /* Increased by 50% from 72px */
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

/* Hide hamburger on desktop by default; show only on small screens */
.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-logo {
    width: 90px; /* Increased by 50% from 60px */
  }
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-family: "Georgia", "Times New Roman", serif; /* New elegant font for header menu */
  font-weight: 500;
  letter-spacing: 0.5px;
}
.main-nav a {
  text-decoration: none;
  color: var(--midnight);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0.1rem;
  transition: color var(--transition);
}
.main-nav a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--highlight),
    var(--primary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.main-nav a:hover {
  color: var(--accent);
}
.main-nav a:hover:before,
.main-nav a[aria-current="page"]:before {
  transform: scaleX(1);
}
.main-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}
.hero {
  position: relative;
  min-height: 56vh;
  display: block;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 50%,
    var(--accent) 100%
  );
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 56vh;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

.hero-logo-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 56vh;
}

.hero-content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 56vh;
}

.hero-logo {
  max-width: 400px;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}

.hero-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.decorative-line {
  position: absolute;
  background: linear-gradient(45deg, var(--highlight), var(--accent));
  opacity: 0.3;
}

.line-1 {
  width: 200px;
  height: 2px;
  top: 30%;
  right: 20%;
  transform: rotate(45deg);
  animation: slideIn 8s ease-in-out infinite;
}

.line-2 {
  width: 150px;
  height: 2px;
  bottom: 30%;
  left: 15%;
  transform: rotate(-30deg);
  animation: slideIn 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes slideIn {
  0%,
  100% {
    opacity: 0.1;
    transform: translateX(-50px) rotate(45deg);
  }
  50% {
    opacity: 0.4;
    transform: translateX(0px) rotate(45deg);
  }
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  text-align: left;
  color: white;
  max-width: 600px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content .tagline {
  font-size: 1.6rem;
  font-style: italic;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.5px;
}

.hero-content p {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}
.hero-search {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px;
}
.hero-search input[type="search"] {
  flex: 1 1 auto;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.hero-search .btn {
  padding: 10px 14px;
}
/* Hero actions: position call-to-action buttons at bottom-right of the hero */
.hero-actions {
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-actions .btn-row {
  display: flex;
  gap: 12px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-size: 0.95rem;
}
.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.25);
}
.btn.primary:hover {
  background: var(--primary-dark);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-color: var(--primary);
}
.btn.secondary:hover {
  background: var(--primary);
  color: #fff;
}
.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn.ghost:hover {
  background: var(--accent);
  color: #fff;
}
.cred-bar {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.cred-bar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.grid.cards-3 {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 16px 0;
}
.card {
  /* keep cards readable but let background show through slightly */
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  padding: 8px 0 48px;
}
.product-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 12px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--highlight);
  color: #3a2a00;
  font-size: 0.6rem;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}
.price {
  font-weight: 600;
  margin: 0.4em 0 0.2em;
}
.meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}
.story-teaser {
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-dark) 55%,
    #062c30 100%
  );
  color: #fff;
  padding: 72px 0;
  margin-top: 32px;
}
.story-teaser .inner {
  max-width: 760px;
}
.email-optin {
  background: rgba(255, 255, 255, 0.9);
  padding: 64px 0;
  text-align: center;
  margin-top: 64px;
}
.inline-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.inline-form input {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  min-width: 260px;
}
.site-footer {
  /* darker footer with textured overlay to echo header/artsy theme */
  background: linear-gradient(180deg, #14222b 0%, #0b1417 100%);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 64px;
  position: relative;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 32px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--highlight);
}
.legal {
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.8;
  margin: 0;
}
.center {
  text-align: center;
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 760px) {
  .hero {
    min-height: 70vh;
  }
  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .tagline {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .tagline {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 1rem;
  }
  /* On narrow screens, move hero actions into the flow and center them */
  .hero-actions {
    position: static;
    margin-top: 12px;
    justify-content: center;
    width: 100%;
    padding: 0 18px;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  }
  .main-nav ul[aria-expanded="true"] {
    display: flex;
  }
  .nav-toggle {
    background: none;
    border: 0;
    font-size: 1.4rem;
    cursor: pointer;
  }
}
.section-band {
  background: var(--highlight-soft);
  padding: 56px 0;
  margin: 64px 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.accent-text {
  color: var(--accent);
}
.sun-text {
  color: var(--highlight);
}
.teal-bg {
  background: var(--primary);
  color: #fff;
}
.coral-bg {
  background: var(--accent);
  color: #fff;
}
.sun-bg {
  background: var(--highlight);
  color: #3a2a00;
}
.gradient-border {
  position: relative;
}
.gradient-border:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    var(--accent),
    var(--highlight),
    var(--primary)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.focus-ring:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.badge-special {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.55rem;
  padding: 4px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.badge-print {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #2c5530;
  color: #fff;
  font-size: 0.55rem;
  padding: 4px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/* Fallback removal of legacy gallery price/meta blocks (no pricing now) */
body[data-page="gallery"] .product-card .price,
body[data-page="gallery"] .product-card .meta {
  display: none !important;
}

/* Artistic background for gallery page */
body[data-page="gallery"] {
  background: linear-gradient(120deg, #f4faf9 0%, #e86454 40%, #f4c347 100%);
  background-size: 100% 100%;
  position: relative;
}
body[data-page="gallery"]:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  /* Keep only the fade effect, remove pattern */
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0 2px,
    transparent 2px 24px
  );
  background-size: 32px 32px;
  background-repeat: repeat;
  z-index: 0;
}
/* Footer patterned overlay */
.site-footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0 4px,
    transparent 4px 20px
  );
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
/* Make wrapper and grids transparent so the global background shows */
.wrapper,
.product-grid,
.footer-grid {
  background: transparent;
}
body[data-page="gallery"] .wrapper,
body[data-page="gallery"] .product-grid {
  position: relative;
  z-index: 1;
}

/* Gallery Header Styles */
body[data-page="gallery"] .wrapper > h1 {
  text-align: center;
  margin-top: 0.25in; /* 0.25 inches spacing from header */
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--midnight);
}

body[data-page="gallery"] .wrapper > p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Collection Header Styles */
.collection-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(
    135deg,
    var(--warm-beige) 0%,
    rgba(255, 140, 66, 0.1) 100%
  );
  border-radius: 12px;
}

.collection-header h1 {
  font-size: 2.5rem;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.collection-header p {
  font-size: 1.1rem;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.collection-count {
  font-weight: 600;
  color: var(--sunset-orange) !important;
}

.collection-header .btn {
  margin-top: 1rem;
}

/* === Block-style layout for an artsy, immaculate site === */
/* Wrapper and block sections */
.block-section {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: 14px;
  margin: 32px 0;
  box-shadow: 0 10px 30px rgba(12, 18, 23, 0.06);
  overflow: hidden;
}

.block-section.reverse {
  grid-template-columns: 520px 1fr;
}

.block-section .block-body {
  padding: 8px 2rem 8px 2rem;
}

.block-section .block-image {
  width: 100%;
  height: 100%;
  display: block;
}

/* Image slot for editorial blocks (keeps space for pictures) */
.image-slot {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: #f3f2f1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(12, 18, 23, 0.08) inset;
  position: relative;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-slot .placeholder {
  color: rgba(28, 43, 58, 0.45);
  font-size: 0.95rem;
  text-align: center;
  padding: 16px;
}

/* Make content blocks feel elevated and readable */
.content-block {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(12, 18, 23, 0.06);
  border: 1px solid rgba(15, 95, 102, 0.03);
}

/* Tweak product grid to show large block cards */
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: 0 12px 30px rgba(12, 18, 23, 0.06);
}

.product-card img {
  aspect-ratio: 3/4;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.product-card .caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* Accent stripe to give an artsy frame to blocks */
.block-accent {
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--highlight),
    var(--primary)
  );
  border-radius: 6px;
  margin-bottom: 18px;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .block-section,
  .block-section.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .block-section .block-body {
    padding: 0 1rem;
  }
  .product-grid {
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 16px;
  }
  .wrapper {
    padding: 0 18px;
  }
  .site-logo {
    width: 81px; /* Increased by 50% from 54px */
  }
}

/* Subtle entrance */
.block-section,
.content-block,
.product-card {
  /* show hamburger on mobile */
  .nav-toggle {
    display: inline-block;
    background: none;
    border: 0;
    font-size: 1.4rem;
    cursor: pointer;
  }
  transform: translateY(0);
  transition: transform 300ms var(--transition),
    box-shadow 300ms var(--transition);
}
.block-section:hover,
.content-block:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(12, 18, 23, 0.08);
}

/* Make headings more editorial */
h1,
h2 {
  letter-spacing: -0.5px;
  color: var(--midnight);
}

/* Ensure gallery page still hides prices but uses block styling */
body[data-page="gallery"] .product-card .price,
body[data-page="gallery"] .product-card .meta {
  display: none !important;
}

/* Remove text overlays on top of images site-wide (hero, badges, etc.) */
.product-card .badge,
.badge-special {
  display: none !important;
}

/* small utility */
.centered-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Collections page styles */
.collections-hero {
  text-align: center;
  padding: 48px 0 64px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(244, 195, 71, 0.1)
  );
  border-radius: 16px;
  margin: 32px 0 48px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.08);
}

.collections-intro {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.collection-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 95, 102, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15, 95, 102, 0.18);
}

.collection-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.05);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-overlay {
  transform: translateY(0);
}

.collection-overlay h2 {
  color: white;
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 600;
}

.collection-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.collection-stats {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.collections-cta {
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 20px;
  margin: 64px 0;
  box-shadow: 0 16px 48px rgba(15, 95, 102, 0.2);
}

.collections-cta h2 {
  color: white;
  margin: 0 0 16px;
  font-size: 2rem;
}

.collections-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0 0 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

/* Gallery controls styling */
.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 95, 102, 0.1);
}

.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.gallery-controls.top-controls {
  border-bottom: 1px solid rgba(15, 95, 102, 0.1);
}

.gallery-controls.bottom-controls {
  border-top: 1px solid rgba(15, 95, 102, 0.1);
  border-bottom: none;
}

.view-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--gray);
}

.view-select select {
  padding: 8px 12px;
  border: 1px solid rgba(15, 95, 102, 0.2);
  border-radius: 6px;
  background: white;
  color: var(--midnight);
  font-weight: 500;
}

.page-info {
  color: var(--gray);
  font-size: 0.9rem;
}

.pager {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pager button {
  padding: 8px 12px;
  border: 1px solid rgba(15, 95, 102, 0.2);
  background: white;
  color: var(--midnight);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.pager button:hover:not(:disabled) {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pager button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pager button[aria-current="true"] {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pager-pages {
  display: flex;
  gap: 4px;
}

/* Responsive collections */
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collection-overlay {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--midnight);
    padding: 20px;
  }

  .collection-overlay h2 {
    color: var(--midnight);
  }

  .collection-overlay p {
    color: var(--gray);
  }

  .stat {
    background: rgba(15, 95, 102, 0.1);
    color: var(--midnight);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    min-width: 250px;
  }

  .gallery-controls {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pager {
    justify-content: center;
  }
}

/* Commissions page styles */
.commissions-hero {
  text-align: center;
  padding: 64px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(15, 95, 102, 0.1),
    rgba(232, 100, 84, 0.1)
  );
  border-radius: 20px;
  margin: 32px 0 64px;
  box-shadow: 0 12px 40px rgba(15, 95, 102, 0.1);
}

.commissions-hero h1 {
  font-size: 3rem;
  margin: 0 0 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.commissions-content {
  max-width: 1000px;
  margin: 0 auto;
}

.process-section {
  margin: 64px 0;
  padding: 48px 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.08);
}

.process-section h2 {
  text-align: center;
  margin: 0 0 48px;
  font-size: 2.2rem;
  color: var(--primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 95, 102, 0.06);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 20px;
  box-shadow: 0 4px 16px rgba(15, 95, 102, 0.2);
}

.step-content h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 1.2rem;
}

.step-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.commission-types {
  margin: 64px 0;
}

.commission-types h2 {
  text-align: center;
  margin: 0 0 48px;
  font-size: 2.2rem;
  color: var(--primary);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.type-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(15, 95, 102, 0.15);
  border-color: var(--accent);
}

.type-icon {
  font-size: 3rem;
  margin: 0 0 20px;
}

.type-card h3 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 1.4rem;
}

.type-card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 24px;
}

.type-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail {
  background: rgba(15, 95, 102, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.commission-form-section {
  margin: 64px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(244, 195, 71, 0.05)
  );
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(15, 95, 102, 0.1);
}

.form-container h2 {
  text-align: center;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 2.2rem;
}

.form-intro {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.commission-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin: 0 0 24px;
}

.form-group label {
  font-weight: 600;
  color: var(--midnight);
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(15, 95, 102, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 95, 102, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  margin: 32px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--gray);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  box-shadow: 0 8px 24px rgba(15, 95, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 95, 102, 0.4);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.testimonial-section {
  margin: 64px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 48px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.08);
}

.testimonial-section h2 {
  margin: 0 0 32px;
  color: var(--primary);
  font-size: 2.2rem;
}

.testimonial blockquote {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray);
  font-style: italic;
  margin: 0 0 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial cite {
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
}

/* Responsive commissions */
@media (max-width: 768px) {
  .commissions-hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .commission-form-section {
    padding: 32px 24px;
  }

  .testimonial-section {
    padding: 32px 24px;
  }
}

/* Alternating Left/Right Layout for Home Page */
.alternating-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 3rem 0;
}

.alternating-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 400px;
}

.alternating-item:nth-child(even) {
  direction: rtl;
}

.alternating-item:nth-child(even) > * {
  direction: ltr;
}

.alternating-content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.alternating-content h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--sunset-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alternating-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--midnight);
  margin-bottom: 1.5rem;
}

.alternating-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.alternating-image:hover {
  transform: translateY(-8px);
}

.alternating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alternating-image:hover img {
  transform: scale(1.05);
}

.alternating-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.1) 0%,
    rgba(255, 107, 107, 0.05) 50%,
    rgba(155, 89, 182, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.alternating-image:hover::before {
  opacity: 1;
}

/* Pinterest-style Masonry Layout for Service Pages */
.masonry-grid {
  columns: 5;
  column-gap: 1rem;
  margin: 2rem 0;
  column-fill: balance;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  width: 100%;
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Varied heights for gallery items to create dynamic layout */
.masonry-item:nth-child(3n + 1) {
  height: 250px;
}

.masonry-item:nth-child(3n + 2) {
  height: 320px;
}

.masonry-item:nth-child(3n + 3) {
  height: 280px;
}

.masonry-item:nth-child(5n + 1) {
  height: 300px;
}

.masonry-item:nth-child(7n + 1) {
  height: 200px;
}

.masonry-item:nth-child(11n + 1) {
  height: 350px;
}

/* Ensure images fill their containers properly */
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry-content {
  padding: 1.5rem;
}

.masonry-content h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.masonry-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.masonry-content .price {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.masonry-content .gallery-note {
  color: var(--sunset-orange);
  font-style: italic;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.masonry-content .size {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .alternating-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .alternating-item:nth-child(even) {
    direction: ltr;
  }

  .alternating-content h2 {
    font-size: 2rem;
  }

  .masonry-grid {
    columns: 3;
    column-gap: 1rem;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    columns: 1;
  }

  .alternating-layout {
    gap: 2rem;
  }

  .alternating-content {
    padding: 1.5rem;
  }
}

/* Healing Page Styles */
.healing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--warm-beige),
    rgba(255, 140, 66, 0.05)
  );
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.1);
}

.healing-hero-content h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--sunset-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.healing-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--midnight);
  margin-bottom: 0;
}

.healing-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.healing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healing-journey {
  margin: 4rem 0;
}

.journey-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.journey-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.journey-card:nth-child(even) {
  direction: rtl;
}

.journey-card:nth-child(even) > * {
  direction: ltr;
}

.journey-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.journey-image:hover img {
  transform: scale(1.05);
}

.journey-content h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.journey-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--midnight);
  margin-bottom: 1.5rem;
}

.journey-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.healing-gallery {
  margin: 4rem 0;
  text-align: center;
}

.gallery-intro {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.healing-benefits {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.05),
    rgba(255, 107, 107, 0.03)
  );
  border-radius: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--gray);
  line-height: 1.6;
}

.healing-cta {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--sunset-orange));
  color: white;
  border-radius: 20px;
}

.healing-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.healing-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

/* Responsive Design for Healing Page */
@media (max-width: 768px) {
  .healing-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .healing-hero-content h1 {
    font-size: 2.5rem;
  }

  .journey-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journey-card:nth-child(even) {
    direction: ltr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    min-width: 250px;
  }
}

/* Contact Page Styles */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--warm-beige),
    rgba(255, 140, 66, 0.05)
  );
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(15, 95, 102, 0.1);
}

.contact-hero-content h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--sunset-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--midnight);
  margin-bottom: 0;
}

.contact-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  margin: 4rem 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-method h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-method p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--sunset-orange));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  transform: scale(1.05);
}

.contact-detail {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-form-section {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.05),
    rgba(255, 107, 107, 0.03)
  );
  border-radius: 20px;
}

.form-container h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--gray);
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: auto;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-faq {
  margin: 4rem 0;
  text-align: center;
}

.contact-faq h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  text-align: left;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

.faq-item a {
  color: var(--sunset-orange);
  text-decoration: none;
  font-weight: bold;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Photo Sections */
.about-photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem 0;
}

.about-photo-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.about-photo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  image-rendering: -webkit-optimize-contrast; /* Edge support */
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast; /* Edge support for crisp-edges */
  image-rendering: crisp-edges;
}

.about-photo img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive about photo sections */
@media (max-width: 768px) {
  .about-photo-section,
  .about-photo-section.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo img {
    height: 300px;
  }
}

/* Basement Studio Slideshow Styles */
.basement-studio {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.05),
    rgba(255, 107, 107, 0.03)
  );
  border-radius: 20px;
  text-align: center;
}

.basement-studio h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--sunset-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.basement-intro {
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.basement-slideshow-container {
  position: relative;
  max-width: 900px; /* Increased for better visibility */
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.basement-slideshow {
  position: relative;
  width: 100%;
  height: 600px; /* Increased for better visibility */
  overflow: hidden;
}

.basement-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basement-slide.active {
  opacity: 1;
}

.basement-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  /* High definition image rendering */
  image-rendering: -webkit-optimize-contrast; /* Edge support */
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast; /* Edge support for crisp-edges */
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
  /* Prevent blur on scaling */
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Smooth scaling */
  image-rendering: -webkit-optimize-contrast; /* Better browser support */
  image-rendering: auto;
}

.slideshow-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.slideshow-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slideshow-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.slideshow-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

.basement-description {
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.basement-description p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
}

/* Responsive Design for Basement Slideshow */
@media (max-width: 768px) {
  .basement-studio {
    padding: 2rem 1rem;
  }

  .basement-studio h2 {
    font-size: 2rem;
  }

  .basement-slideshow {
    height: 400px; /* Increased for better mobile visibility */
  }

  .slideshow-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slideshow-controls {
    padding: 0 0.5rem;
  }
}

/* Hero Mobile Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-logo-section {
    min-height: 40vh;
    order: 1;
  }

  .hero-content-section {
    min-height: 30vh;
    order: 2;
  }

  .hero-logo {
    max-width: 300px;
    max-height: 250px;
  }

  .circle-1 {
    width: 80px;
    height: 80px;
  }

  .circle-2 {
    width: 60px;
    height: 60px;
  }

  .circle-3 {
    width: 40px;
    height: 40px;
  }

  .line-1,
  .line-2 {
    width: 120px;
  }

  .hero-content {
    text-align: center;
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .tagline {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 250px;
    max-height: 200px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .tagline {
    font-size: 1.1rem;
  }

  .hero-content {
    text-align: center;
    padding: 1rem;
  }
}

/* end block-style additions */
