:root {
  --color-primary: #2c6e49;
  --color-bg-ivory: #F9F8F5;
  --color-bg-offwhite: #F5F3EE;
  --color-stone: #CFC8C0;
  --color-driftwood: #D6CBB5;
  --color-taupe: #BFB1A5;
  --color-gold: #D4AF37;
  --color-copper: #B77A57;
  --color-sage: #8E9B8E;
  --color-blush: #F2E9E4;
  --color-text: #3d3935;
  --color-text-muted: #6b6560;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lift: 0 12px 40px rgba(0,0,0,0.08);
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-ivory) linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 25%);
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold);
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

main {
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-offwhite);
  border-bottom: 1px solid var(--color-blush);
  transition: transform var(--transition-smooth);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: var(--space-sm) var(--space-md);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: var(--color-text);
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--color-gold);
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.burger-btn:hover {
  background: var(--color-blush);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-fast);
}

.burger-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61,57,53,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.menu-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-bg-offwhite);
  z-index: 1001;
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}

.menu-drawer.visible {
  transform: translateX(0);
}

.menu-drawer ul {
  list-style: none;
}

.menu-drawer li {
  margin-bottom: var(--space-md);
}

.menu-drawer a {
  font-size: 1.1rem;
  color: var(--color-text);
}

main {
  flex: 1;
  padding-top: 4rem;
}

.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--color-bg-ivory);
  overflow: hidden;
}

.hero-section.has-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-section:not(.has-bg) {
  background: linear-gradient(135deg, var(--color-bg-ivory) 0%, var(--color-blush) 50%, var(--color-bg-offwhite) 100%);
}

.hero-section.has-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249,248,245,0.5) 0%, rgba(245,243,238,0.65) 100%);
}

.hero-section.has-bg.hero-bg-index {
  background-image: url('../images/creation_2391042130.webp');
}

.page-hero.has-bg.hero-bg-collections {
  background-image: url('../images/creation_2391028514.webp');
}

.page-hero.has-bg.hero-bg-materials {
  background-image: url('../images/creation_2391010869.webp');
}

.page-hero.has-bg.hero-bg-custom {
  background-image: url('../images/creation_2391042111.webp');
}

.page-hero.has-bg.hero-bg-contact {
  background-image: url('../images/creation_2390984700.webp');
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-inner-mt {
  margin-top: var(--space-lg);
}

.materials-parallax-linen {
  background-image: url('../images/creation_2391010646.webp');
}

.materials-parallax-paper {
  background-image: url('../images/creation_2391010654.webp');
}

@media (min-width: 640px) {
  .split-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-copper));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-secondary {
  background: var(--color-bg-offwhite);
  color: var(--color-text);
  border: 1px solid var(--color-taupe);
}

.btn-secondary:hover {
  background: var(--color-blush);
  border-color: var(--color-gold);
}

.section-block {
  padding: var(--space-2xl) 0;
}

.section-block-alt {
  background: linear-gradient(180deg, var(--color-bg-offwhite) 0%, var(--color-bg-ivory) 100%);
}

.card-grid-mt {
  margin-top: var(--space-lg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  color: var(--color-text-muted);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.feature-item {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-blush);
  color: var(--color-gold);
  border-radius: 50%;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.delivery-section .section-intro {
  margin-bottom: 0;
}

.occasions-section .section-intro {
  margin-bottom: var(--space-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  justify-content: center;
}

.card-item {
  background: var(--color-bg-offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(212,175,55,0.2);
}

.card-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body {
  padding: var(--space-lg);
  text-align: center;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.card-price {
  font-weight: 600;
  color: var(--color-copper);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.split-section.reverse .split-content {
  order: 1;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-content {
  text-align: center;
}

.split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.split-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.craft-curation-section {
  background: linear-gradient(180deg, var(--color-bg-ivory) 0%, var(--color-blush) 18%, var(--color-bg-offwhite) 100%);
  padding: var(--space-2xl) 0;
}

.craft-curation-section .split-inner {
  gap: var(--space-2xl);
}

.craft-curation-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(212,175,55,0.08);
  position: relative;
}

.craft-curation-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  pointer-events: none;
}

.craft-curation-content {
  padding: var(--space-lg) 0;
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.craft-curation-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.craft-curation-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.craft-curation-content .decorative-line {
  margin: var(--space-md) auto var(--space-lg);
}

.craft-curation-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: center;
}

.craft-curation-content .btn {
  margin-top: var(--space-md);
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

@media (min-width: 640px) {
  .craft-curation-section .split-inner {
    align-items: center;
    justify-items: center;
  }

  .craft-curation-image {
    max-width: 100%;
  }
}

.parallax-wrap {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-inline {
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.parallax-inline .parallax-bg {
  background-attachment: scroll;
}

.parallax-short {
  min-height: 180px;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249,248,245,0.82);
}

.parallax-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
  text-align: center;
  max-width: 720px;
}

.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.gallery-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding: var(--space-md) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: var(--color-blush);
  border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--color-taupe);
  border-radius: 4px;
}

.gallery-item {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--color-driftwood);
  padding: var(--space-2xl) var(--space-md);
}

.page-hero.has-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-hero:not(.has-bg) {
  background: linear-gradient(135deg, var(--color-driftwood) 0%, var(--color-bg-offwhite) 100%);
}

.page-hero.has-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249,248,245,0.55);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-taupe);
  background: var(--color-bg-offwhite);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-blush);
  border-color: var(--color-gold);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.modal-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--color-bg-offwhite);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lift);
}

.modal-box img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-body {
  padding: var(--space-lg);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: background var(--transition-fast);
}

.modal-box {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blush);
  color: var(--color-gold);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  flex: 1;
}

.contact-item-note .contact-icon {
  color: var(--color-sage);
}

.contact-info p,
.contact-info a {
  color: var(--color-text-muted);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.contact-visual {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.policy-img-wrap {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.policy-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: none;
  border-bottom: 2px solid var(--color-taupe);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  text-align: left;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  justify-content: center;
  text-align: left;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-error {
  font-size: 0.85rem;
  color: #b53d3d;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.site-footer {
  background: var(--color-bg-offwhite);
  border-top: 1px solid var(--color-blush);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: auto;
}

.footer-business {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin-bottom: var(--space-lg);
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-offwhite);
  border-top: 2px solid var(--color-gold);
  padding: var(--space-lg);
  z-index: 2001;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.privacy-popup.visible {
  transform: translateY(0);
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--color-text);
}

.privacy-popup a {
  color: var(--color-copper);
}

.privacy-popup .btn {
  margin-right: var(--space-sm);
}

.step-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-blush);
}

.step-section:last-of-type {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.step-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.step-section p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.step-img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

.step-cta-wrap {
  text-align: center;
  padding: var(--space-lg) 0;
}

.thankyou-box {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 560px;
  margin: 0 auto;
}

.thankyou-box h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.thankyou-box p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.error-page p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.policy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: var(--space-lg) 0 var(--space-md);
  color: var(--color-text);
}

.policy-content p,
.policy-content ul {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.policy-content ul {
  padding-left: 0;
  list-style-position: inside;
  display: inline-block;
  text-align: left;
}

.banner-section {
  width: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249,248,245,0.7);
}

.banner-section .wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.product-modal .modal-body .card-title {
  margin-top: 0;
}

@media (min-width: 640px) {
  .nav-desktop {
    display: flex;
  }

  .burger-btn {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-wrap iframe {
    height: 450px;
  }
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
}

@media (max-width: 320px) {
  .wrapper {
    padding: 0 var(--space-sm);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.decorative-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-copper));
  margin: var(--space-md) auto;
  border-radius: 1px;
}

.accent-ribbon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  pointer-events: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-blush);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion-trigger:hover {
  color: var(--color-gold);
}

.accordion-trigger::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-taupe);
  transition: transform var(--transition-fast);
}

.accordion-trigger.open::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.accordion-panel.open {
  max-height: 1000px;
}

.accordion-panel-inner {
  padding: var(--space-md) 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.modal-box .modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
}

.product-list .card-item {
  cursor: pointer;
}

.filter-bar .filter-btn.active {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
