/* ============================================
   WICKEDLY DELIGHTFUL SCENTS
   Gothic Brochure — Styles
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- Theme Variables --- */
:root {
  --background: #0D0D0D;
  --foreground: #E8E8E8;
  --card: #1a1a1a;
  --card-foreground: #E8E8E8;
  --primary: #9B111E;
  --primary-foreground: #E8E8E8;
  --accent: #C41E3A;
  --muted: #999999;
  --border: rgba(155, 17, 30, 0.3);
  --ring: #9B111E;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* --- Utility --- */
.tracking-luxury {
  letter-spacing: 0.15em;
}

.font-serif {
  font-family: 'Cinzel', serif;
}

.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;
}

/* --- Neumorphic Effects --- */
.neumorphic-inset {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.6),
    inset -4px -4px 8px rgba(155, 17, 30, 0.1);
}

.neumorphic-outset {
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.8),
    -6px -6px 12px rgba(155, 17, 30, 0.05);
}

/* --- Glow Effects --- */
.glow-red {
  box-shadow: 0 0 20px rgba(155, 17, 30, 0.5);
}

.glow-red-strong {
  box-shadow:
    0 0 20px rgba(155, 17, 30, 0.8),
    0 0 40px rgba(155, 17, 30, 0.5),
    0 0 60px rgba(155, 17, 30, 0.3);
}

.text-glow-red {
  text-shadow:
    0 0 10px rgba(155, 17, 30, 0.8),
    0 0 20px rgba(155, 17, 30, 0.5);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow:
    0 0 15px rgba(155, 17, 30, 0.6),
    0 0 30px rgba(155, 17, 30, 0.4),
    inset 0 0 10px rgba(155, 17, 30, 0.2);
}

/* --- Debossed / Embossed Text --- */
.debossed-text {
  text-shadow:
    1px 1px 2px rgba(255, 255, 255, 0.05),
    -1px -1px 2px rgba(0, 0, 0, 0.8);
}

.embossed {
  box-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    -2px -2px 4px rgba(155, 17, 30, 0.1),
    inset 1px 1px 2px rgba(155, 17, 30, 0.1);
}

/* --- Buttons --- */
.btn-neumorphic {
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.7),
    -2px -2px 6px rgba(155, 17, 30, 0.05);
  transition: all 0.2s ease;
}

.btn-neumorphic:hover {
  box-shadow:
    inset 3px 3px 6px rgba(0, 0, 0, 0.8),
    inset -2px -2px 4px rgba(155, 17, 30, 0.1),
    0 0 20px rgba(155, 17, 30, 0.5);
}

.btn-neumorphic:active {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.9),
    inset -2px -2px 4px rgba(155, 17, 30, 0.05);
}

/* --- Ornate Card --- */
.ornate-card {
  position: relative;
  background: var(--card);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(155, 17, 30, 0.1);
  transition: all 0.3s ease;
}

.ornate-card:hover {
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(155, 17, 30, 0.3),
    inset 0 1px 0 rgba(155, 17, 30, 0.2);
  transform: translateY(-4px);
}

/* Corner decorations for ornate cards */
.ornate-corners::before,
.ornate-corners::after,
.ornate-corners > .corner-bl,
.ornate-corners > .corner-br {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: var(--primary);
  opacity: 0.6;
  pointer-events: none;
}

.ornate-corners::before {
  top: 0.5rem; left: 0.5rem;
  border-top: 2px solid; border-left: 2px solid;
}

.ornate-corners::after {
  top: 0.5rem; right: 0.5rem;
  border-top: 2px solid; border-right: 2px solid;
}

.ornate-corners > .corner-bl {
  bottom: 0.5rem; left: 0.5rem;
  border-bottom: 2px solid; border-left: 2px solid;
}

.ornate-corners > .corner-br {
  bottom: 0.5rem; right: 0.5rem;
  border-bottom: 2px solid; border-right: 2px solid;
}

/* --- Input Neumorphic --- */
.input-neumorphic {
  box-shadow:
    inset 3px 3px 6px rgba(0, 0, 0, 0.8),
    inset -2px -2px 4px rgba(155, 17, 30, 0.05);
  transition: all 0.2s ease;
}

.input-neumorphic:focus {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.9),
    inset -2px -2px 4px rgba(155, 17, 30, 0.1),
    0 0 10px rgba(155, 17, 30, 0.3);
  outline: none;
}

/* --- Animations --- */
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(155, 17, 30, 0.5)) drop-shadow(0 0 40px rgba(155, 17, 30, 0.2)); }
  50% { filter: drop-shadow(0 0 20px rgba(155, 17, 30, 0.8)) drop-shadow(0 0 60px rgba(155, 17, 30, 0.35)); }
}

.pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.pulse-glow.mouse-near {
  animation: none;
}

@keyframes draw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.draw-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s ease-in-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Scroll-reveal: hidden by default, revealed by JS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Gradient Divider --- */
.gradient-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.6;
}

.gradient-line-subtle {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(155, 17, 30, 0.3), transparent);
}

/* ============================================
   SCROLLWORK & LACE — Business Card Style
   ============================================ */

/* --- Section Divider: Ornate scrollwork band --- */
.scrollwork-divider {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.scrollwork-divider svg {
  display: block;
  width: 100%;
  max-width: 64rem;
  height: 5rem;
  color: var(--primary);
}

/* --- Lace Edge Border (top/bottom of sections) --- */
.lace-edge {
  position: relative;
  width: 100%;
  height: 2.5rem;
  overflow: hidden;
  pointer-events: none;
}

.lace-edge svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--primary);
  opacity: 0.5;
}

.lace-edge--flip {
  transform: rotate(180deg);
}

/* --- Ornate Frame (business-card style border) --- */
.ornate-frame {
  position: absolute;
  inset: 1.5rem;
  pointer-events: none;
  z-index: 5;
}

.ornate-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(155, 17, 30, 0.25);
}

.ornate-frame-border-inner {
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(155, 17, 30, 0.15);
}

/* Scrollwork corner ornaments — positioned in each corner */
.scroll-corner {
  position: absolute;
  width: 5rem;
  height: 5rem;
  color: var(--primary);
  opacity: 0.7;
}

.scroll-corner--tl { top: -0.25rem; left: -0.25rem; }
.scroll-corner--tr { top: -0.25rem; right: -0.25rem; transform: scaleX(-1); }
.scroll-corner--bl { bottom: -0.25rem; left: -0.25rem; transform: scaleY(-1); }
.scroll-corner--br { bottom: -0.25rem; right: -0.25rem; transform: scale(-1, -1); }

/* Larger corners for hero */
.ornate-frame--hero .scroll-corner {
  width: 7rem;
  height: 7rem;
  opacity: 0.55;
}

/* Subtle scroll animation on corners */
@keyframes cornerGlow {
  0%, 100% { opacity: 0.55; filter: drop-shadow(0 0 4px rgba(155,17,30,0.2)); }
  50% { opacity: 0.75; filter: drop-shadow(0 0 8px rgba(155,17,30,0.5)); }
}

.ornate-frame--hero .scroll-corner {
  animation: cornerGlow 4s ease-in-out infinite;
}

.ornate-frame--hero .scroll-corner--tr { animation-delay: 1s; }
.ornate-frame--hero .scroll-corner--bl { animation-delay: 2s; }
.ornate-frame--hero .scroll-corner--br { animation-delay: 3s; }

/* -- Edge scrollwork lines along frame sides -- */
.frame-edge {
  position: absolute;
  color: var(--primary);
  opacity: 0.3;
}

.frame-edge--top,
.frame-edge--bottom {
  left: 5rem;
  right: 5rem;
  height: 1.5rem;
}

.frame-edge--top { top: -0.125rem; }
.frame-edge--bottom { bottom: -0.125rem; transform: rotate(180deg); }

.frame-edge--left,
.frame-edge--right {
  top: 5rem;
  bottom: 5rem;
  width: 1.5rem;
}

.frame-edge--left { left: -0.125rem; }
.frame-edge--right { right: -0.125rem; transform: scaleX(-1); }

.frame-edge svg {
  width: 100%;
  height: 100%;
}

/* --- Grain Texture Overlay --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.015;
}

/* --- Leather Texture Background --- */
.leather-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leather-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background:
    radial-gradient(circle at 20% 30%, rgba(155, 17, 30, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(155, 17, 30, 0.3) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(155, 17, 30, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 15px rgba(155, 17, 30, 0.6));
}

.nav-logo-img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(232, 232, 232, 0.8);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.nav-toggle:hover {
  color: var(--primary);
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile .nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.nav-mobile .nav-link:hover {
  background: rgba(155, 17, 30, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--background), #0D0D0D, var(--background));
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 50rem;
  margin: 0 auto;
}

.hero-logo {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 2rem;
  animation: fadeIn 1s ease-out;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--foreground);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(232, 232, 232, 0.9);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(232, 232, 232, 0.7);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--card);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta:hover {
  background: var(--primary);
  color: var(--foreground);
}

.hero-filigree {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 40rem;
  color: var(--primary);
  opacity: 0.5;
}

.hero-filigree--top {
  top: 6rem;
}

.hero-filigree--bottom {
  bottom: 4rem;
  transform: translateX(-50%) rotate(180deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-title .accent {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: linear-gradient(to bottom, var(--background), var(--card), var(--background));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--foreground);
}

.about-text h2 .accent {
  color: var(--primary);
}

.about-text p {
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.8;
}

.about-accent-line {
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, var(--primary), transparent);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2.5rem 2rem;
  text-align: center;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--primary);
}

.value-icon svg {
  width: 2rem;
  height: 2rem;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  background: linear-gradient(to bottom, var(--background), var(--card), var(--background));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  overflow: hidden;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 22rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
}

.product-info {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.product-info p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.products-cta {
  text-align: center;
}

.products-cta a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--card);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.products-cta a:hover {
  background: var(--primary);
  color: var(--foreground);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: linear-gradient(to bottom, var(--background), var(--card), var(--background));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form-title {
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-form-title .accent {
  color: var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: rgba(232, 232, 232, 0.8);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 232, 232, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--card);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--primary);
  color: var(--foreground);
}

.form-submit svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Contact info side */
.contact-info-card {
  padding: 2.5rem;
}

.contact-info-title {
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-info-title .accent {
  color: var(--primary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--primary);
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info-text h4 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Business hours */
.business-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.business-hours h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.hours-item .day {
  color: rgba(232, 232, 232, 0.8);
}

.hours-item .time {
  color: var(--muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border: 2px solid var(--border);
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--primary);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.footer-bottom svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  fill: var(--primary);
}

/* ============================================
   FILIGREE SVG (inline)
   ============================================ */
.filigree {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: 4rem;
  margin: 0 auto;
  color: var(--primary);
  opacity: 0.6;
}

.filigree--sm {
  max-width: 20rem;
  height: 3rem;
  opacity: 0.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-image {
    height: 20rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-logo {
    width: 8rem;
    height: 8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 18rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .nav-logo-text {
    display: none;
  }

  /* Scrollwork responsive */
  .ornate-frame {
    inset: 0.75rem;
  }

  .scroll-corner {
    width: 3rem;
    height: 3rem;
  }

  .ornate-frame--hero .scroll-corner {
    width: 4rem;
    height: 4rem;
  }

  .frame-edge--top,
  .frame-edge--bottom {
    left: 3rem;
    right: 3rem;
  }

  .frame-edge--left,
  .frame-edge--right {
    top: 3rem;
    bottom: 3rem;
  }

  .scrollwork-divider svg {
    height: 3.5rem;
  }

  .lace-edge {
    height: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 6rem;
    height: 6rem;
  }

  .products-grid {
    max-width: 100%;
  }

  .ornate-frame {
    inset: 0.5rem;
  }

  .scroll-corner {
    width: 2.25rem;
    height: 2.25rem;
  }

  .ornate-frame--hero .scroll-corner {
    width: 3rem;
    height: 3rem;
  }

  .frame-edge {
    display: none;
  }
}
