:root {
  --color-primary: #A3B18A;
  --color-secondary: #E7B7A0;
  --color-accent: #7C9EB2;
  --bg-soft-white: #FCFBF7;
  --bg-light-gray: #ECE8E0;
  --text-charcoal: #2B2B2B;
  --text-gray: #6D6D6D;
  --font-headline: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.06);
  --shadow-md: 0 4px 16px rgba(43, 43, 43, 0.1);
  --shadow-lg: 0 12px 32px rgba(43, 43, 43, 0.15);
  --shadow-xl: 0 16px 48px rgba(43, 43, 43, 0.2);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-charcoal);
  background-color: var(--bg-soft-white);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-lg);
  color: var(--text-charcoal);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-lg);
  color: var(--text-gray);
  max-width: 65ch;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.3;
}

.section:first-of-type {
  padding-top: calc(var(--space-xxl) * 1.5);
}

.section > .container > h2,
.section > .container > h3,
.feature-section > .container > h2,
.feature-section > .container > h3,
.section h2:first-child,
.section h3:first-child,
.feature-section h2:first-child,
.feature-section h3:first-child {
  text-align: center;
  position: relative;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
}

.section > .container > h2::after,
.feature-section > .container > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.product-title,
.step-title,
.testimonial-author strong,
.story-title {
  text-align: left;
}

.header-wrapper {
  background-color: var(--bg-soft-white);
  border-bottom: 1px solid var(--bg-light-gray);
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.brand-text {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-charcoal);
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition-fast);
}

.brand-text:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.nav-toggle-icon span {
  width: 100%;
  height: 2px;
  background-color: var(--text-charcoal);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-charcoal);
  font-size: 0.95rem;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-light-gray);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform var(--transition-slow);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-charcoal);
  padding: var(--space-xxl) var(--space-xl);
  background: linear-gradient(135deg, rgba(252, 251, 247, 0.95), rgba(252, 251, 247, 0.85));
  border-radius: var(--radius-lg);
  max-width: 650px;
  margin: 0 var(--space-md);
  backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 8px 32px rgba(43, 43, 43, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  margin-bottom: var(--space-md);
  color: var(--text-charcoal);
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: var(--space-lg);
  color: var(--text-gray);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--bg-soft-white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary), #D4A690);
  color: var(--text-charcoal);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #D4A690, var(--color-secondary));
  color: var(--text-charcoal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

.product-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(43, 43, 43, 0.08);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(163, 177, 138, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--bg-light-gray);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-charcoal);
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.product-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  font-family: var(--font-headline);
  letter-spacing: -0.02em;
  position: relative;
  padding-top: var(--space-md);
}

.product-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.feature-section {
  background-color: var(--bg-light-gray);
  padding: calc(var(--space-xxl) * 1.2) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(43, 43, 43, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 177, 138, 0.15);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(163, 177, 138, 0.08);
  border-radius: 50%;
  font-size: 1.75rem;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(163, 177, 138, 0.15);
  color: var(--color-accent);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  font-weight: 500;
  transition: color var(--transition-base);
  text-align: center;
}

.feature-item:hover .feature-title {
  color: var(--color-primary);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background-color: var(--bg-light-gray);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(43, 43, 43, 0.05);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(163, 177, 138, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(43, 43, 43, 0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--bg-soft-white);
  font-size: 0.9rem;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: var(--space-xxl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--text-charcoal);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--bg-light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: white;
  color: var(--text-charcoal);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.1);
  transform: translateY(-1px);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-input {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.form-error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.active {
  display: block;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.contact-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--bg-soft-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
}

.contact-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.contact-text {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-wrapper {
  background-color: var(--text-charcoal);
  color: var(--bg-soft-white);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-section {
  margin-bottom: var(--space-md);
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--bg-soft-white);
}

.footer-menu {
  list-style: none;
}

.footer-menu-item {
  margin-bottom: var(--space-sm);
}

.footer-link {
  color: rgba(252, 251, 247, 0.8);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--bg-soft-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(252, 251, 247, 0.2);
  font-size: 0.875rem;
  color: rgba(252, 251, 247, 0.6);
}

.privacy-popup {
  display: none;
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  max-width: 400px;
  background-color: var(--bg-soft-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  border: 1px solid var(--bg-light-gray);
}

.privacy-popup.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-popup-content {
  margin-bottom: var(--space-md);
}

.privacy-popup-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.privacy-popup-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: var(--space-md);
}

.privacy-popup-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.privacy-popup-link:hover {
  color: var(--color-accent);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.btn-accept {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-primary);
  color: var(--bg-soft-white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color var(--transition-fast);
}

.btn-accept:hover {
  background-color: var(--color-accent);
}

.btn-decline {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background-color: transparent;
  color: var(--text-charcoal);
  border: 1px solid var(--bg-light-gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.btn-decline:hover {
  border-color: var(--color-primary);
}

.thankyou-content {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
}

.thankyou-title {
  margin-bottom: var(--space-md);
}

.thankyou-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
}

.error-page {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

.error-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.text-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.text-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.text-content p {
  margin-bottom: var(--space-md);
}

.text-content ul,
.text-content ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--text-gray);
}

.text-content li {
  margin-bottom: var(--space-sm);
}

.material-swatch {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: var(--space-sm);
  cursor: pointer;
  transition: transform var(--transition-base);
  border: 2px solid var(--bg-light-gray);
}

.material-swatch:hover {
  transform: scale(1.1);
}

.collection-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-secondary);
  color: var(--text-charcoal);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-soft-white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xxl) var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--bg-light-gray);
  }

  .hero-section {
    min-height: 50vh;
  }

  .hero-content {
    padding: var(--space-lg);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .privacy-popup {
    right: var(--space-sm);
    left: var(--space-sm);
    max-width: none;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .hero-content {
    padding: var(--space-md);
  }
}

.testimonials-section {
  background-color: var(--bg-light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  font-family: var(--font-headline);
  color: var(--color-primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 177, 138, 0.2);
}

.testimonial-rating {
  color: #FFB800;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.testimonial-rating i {
  margin-right: 0.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--text-charcoal);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.testimonials-stacked {
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-stacked-item {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-stacked-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
}

.testimonial-stacked-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.testimonial-stacked-rating {
  color: #FFB800;
  font-size: 1rem;
}

.testimonial-stacked-rating i {
  margin-right: 0.2rem;
}

.testimonial-stacked-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.testimonial-stacked-author strong {
  color: var(--text-charcoal);
  font-weight: 600;
}

.testimonial-stacked-author span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.testimonial-stacked-item .testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.products-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.products-details-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-details-main:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.products-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.products-details-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.products-details-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.products-details-main img,
.products-details-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.products-details-main:hover img,
.products-details-item:hover img {
  transform: scale(1.1);
}

.products-features-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products-features-item {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-features-item:nth-child(even) {
  flex-direction: row-reverse;
}

.products-features-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 177, 138, 0.2);
}

.products-features-item:nth-child(even):hover {
  transform: translateX(-8px);
}

.products-features-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-features-item:hover .products-features-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
}

.products-features-content {
  flex: 1;
  text-align: center;
}

.products-features-content .feature-title {
  text-align: center;
}

.styling-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: start;
}

.styling-showcase-text {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  position: sticky;
  top: var(--space-xl);
}

.styling-showcase-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 0;
}

.styling-showcase-images {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.styling-showcase-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 6/5;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.styling-showcase-main:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.styling-showcase-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.styling-showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.styling-showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.styling-showcase-main img,
.styling-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.styling-showcase-main:hover img,
.styling-showcase-item:hover img {
  transform: scale(1.1);
}

.styling-features-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.styling-feature-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.styling-feature-card:nth-child(even) {
  flex-direction: column-reverse;
}

.styling-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 177, 138, 0.2);
}

.styling-feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.styling-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.styling-feature-card:hover .styling-feature-image img {
  transform: scale(1.1);
}

.styling-feature-content {
  padding: var(--space-lg);
  text-align: center;
}

.materials-layout-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.materials-item-alt {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.materials-item-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.materials-item-alt:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.materials-item-alt:hover::before {
  transform: scaleX(1);
}

.materials-swatch-alt {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 3px solid white;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.materials-item-alt:hover .materials-swatch-alt {
  transform: scale(1.1);
}

.collections-layout-alt {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.collection-item-alt {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}

.collection-item-alt:nth-child(even) {
  grid-template-columns: 1.5fr 1fr;
}

.collection-item-alt:nth-child(even) .collection-image-alt {
  order: 2;
}

.collection-item-alt:nth-child(even) .collection-content-alt {
  order: 1;
}

.collection-item-alt:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 177, 138, 0.2);
}

.collection-image-alt {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.collection-image-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collection-item-alt:hover .collection-image-alt img {
  transform: scale(1.05);
}

.collection-content-alt {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .products-details-layout {
    grid-template-columns: 1fr;
  }

  .products-features-item {
    flex-direction: column;
    text-align: center;
  }

  .products-features-item:nth-child(even) {
    flex-direction: column;
  }

  .styling-showcase-layout {
    grid-template-columns: 1fr;
  }

  .styling-showcase-text {
    position: relative;
    top: 0;
  }

  .styling-showcase-secondary {
    grid-template-columns: 1fr;
  }

  .styling-features-layout {
    grid-template-columns: 1fr;
  }

  .materials-layout-alt {
    grid-template-columns: 1fr;
  }

  .collections-layout-alt {
    grid-template-columns: 1fr;
  }

  .collection-item-alt {
    grid-template-columns: 1fr;
  }

  .collection-item-alt:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .collection-item-alt:nth-child(even) .collection-image-alt,
  .collection-item-alt:nth-child(even) .collection-content-alt {
    order: 0;
  }
}

.faq-section {
  background-color: var(--bg-light-gray);
}

.faq-list {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-charcoal);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-light-gray);
}

.faq-question span {
  flex: 1;
  font-weight: 500;
}

.faq-icon {
  transition: transform var(--transition-base);
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 var(--space-lg);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

.guide-section {
  background-color: var(--bg-light-gray);
}

.guide-steps {
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.guide-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-headline);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-charcoal);
}

.step-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.certifications-section {
  background-color: var(--bg-light-gray);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.certification-item {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.certification-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.certification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background-color: var(--bg-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2rem;
}

.certification-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--text-charcoal);
  text-align: center;
}

.certification-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.story-section {
  background-color: var(--bg-light-gray);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.story-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--text-charcoal);
}

.story-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-faq-section {
  background-color: var(--bg-light-gray);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-faq-item {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  text-align: center;
}

.contact-faq-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text-charcoal);
  font-weight: 600;
  text-align: center;
}

.contact-faq-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.features-split-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.features-split-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-split-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.features-split-item:nth-child(even) .features-split-content {
  order: 2;
}

.features-split-item:nth-child(even) .features-split-image {
  order: 1;
}

.features-split-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.features-split-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.features-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.features-split-item:hover .features-split-image img {
  transform: scale(1.05);
}

.features-split-content {
  text-align: left;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(43, 43, 43, 0.05);
  cursor: pointer;
}

.masonry-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(163, 177, 138, 0.2);
}

.masonry-large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.masonry-small {
  grid-column: span 1;
  grid-row: span 1;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.masonry-item:hover img {
  transform: scale(1.1);
}

.featured-gallery-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.featured-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-gallery-main:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.featured-gallery-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.featured-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.featured-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.featured-gallery-item img,
.featured-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-gallery-item:hover img,
.featured-gallery-main:hover img {
  transform: scale(1.1);
}

.craftsmanship-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xxl);
  align-items: start;
  margin-top: var(--space-xl);
}

.craftsmanship-image {
  position: sticky;
  top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
}

.craftsmanship-image img {
  width: 100%;
  height: auto;
  display: block;
}

.craftsmanship-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.craftsmanship-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  text-align: left;
}

.craftsmanship-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.craftsmanship-feature {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.craftsmanship-feature:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 177, 138, 0.2);
}

.craftsmanship-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: rgba(163, 177, 138, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.craftsmanship-feature:hover .craftsmanship-icon-wrapper {
  background-color: rgba(163, 177, 138, 0.2);
  transform: scale(1.1);
}

.craftsmanship-text {
  flex: 1;
}

.craftsmanship-text .feature-title {
  text-align: center;
}

.cta-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  background: linear-gradient(135deg, rgba(163, 177, 138, 0.05), rgba(124, 158, 178, 0.05));
  padding: var(--space-xxl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(163, 177, 138, 0.1);
}

.cta-banner-text {
  text-align: left;
}

.cta-banner-text h2 {
  text-align: left;
  margin-bottom: var(--space-md);
}

.cta-banner-text p {
  margin-bottom: var(--space-xl);
  color: var(--text-gray);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-banner-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.05);
}

.cta-banner-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.cta-banner-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .guide-steps {
    gap: var(--space-lg);
  }

  .guide-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

  .story-image-wrapper {
    order: -1;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .features-split-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-split-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .features-split-item:nth-child(even) .features-split-content,
  .features-split-item:nth-child(even) .features-split-image {
    order: 0;
  }

  .features-split-content {
    text-align: center;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .masonry-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .masonry-medium {
    grid-column: span 2;
  }

  .featured-gallery-layout {
    grid-template-columns: 1fr;
  }

  .craftsmanship-layout {
    grid-template-columns: 1fr;
  }

  .craftsmanship-image {
    position: relative;
    top: 0;
  }

  .cta-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner-text {
    text-align: center;
  }

  .cta-banner-text h2 {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }
}

