/*
Theme Name: Crafted Designs by KJ
Theme URI: https://crafteddesignsbykj.com
Author: Crafted Designs by KJ
Author URI: https://crafteddesignsbykj.com
Description: A warm, handcrafted theme for Crafted Designs by KJ — featuring custom apparel, hand-painted signs, seasonal wreaths, sublimation business products, and motivational quote designs.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crafted-designs-kj
Tags: custom, handmade, crafts, shop, elegant, warm
*/

/* =====================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ===================================================== */
:root {
  --cream: #f5ede3;
  --blush: #d4a5a5;
  --rose: #c17f7f;
  --sage: #8a9e7e;
  --sage-light: #b5c4a8;
  --dark: #2c2416;
  --warm-brown: #6b4c3b;
  --off-white: #faf6f0;
  --accent-gold: #b89b6e;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --font-script: 'Cormorant Garamond', serif;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--off-white);
  color: var(--dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
p { font-family: var(--font-script); font-size: 1.05rem; font-weight: 300; line-height: 1.7; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em { color: var(--rose); font-style: italic; }

.section-desc {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--warm-brown);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(193,127,127,0.35);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,76,59,0.3);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(44,36,22,0.3);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

.btn-sage {
  display: inline-block;
  background: #fff;
  color: var(--sage);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-sage:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--warm-brown);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(245,237,227,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,150,120,0.2);
  transition: all 0.3s ease;
}

.site-branding .site-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-brown);
  letter-spacing: 0.03em;
}
.site-branding .site-title em { color: var(--rose); font-style: italic; }

#primary-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
#primary-menu li a {
  font-family: var(--font-body);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}
#primary-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width 0.3s ease;
}
#primary-menu li a:hover { color: var(--rose); }
#primary-menu li a:hover::after { width: 100%; }

#primary-menu .menu-cta a {
  background: var(--rose);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
}
#primary-menu .menu-cta a::after { display: none; }
#primary-menu .menu-cta a:hover { background: var(--warm-brown); color: #fff; }

/* =====================================================
   MAIN CONTENT WRAPPER
   ===================================================== */
#page { padding-top: 72px; }
.site-main { min-height: 60vh; }

/* =====================================================
   HERO — FRONT PAGE
   ===================================================== */
.hero-section {
  min-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45; }
.blob-1 { width: 500px; height: 500px; background: var(--blush); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: var(--sage-light); bottom: -80px; left: -80px; animation: float 10s ease-in-out infinite reverse; }
.blob-3 { width: 300px; height: 300px; background: #e8d5b0; top: 50%; left: 30%; animation: float 7s ease-in-out infinite 2s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.05); }
}
.hero-content { position: relative; text-align: center; max-width: 820px; animation: fadeUp 1s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--sage-light);
  padding: 5px 18px;
  border-radius: 30px;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--warm-brown);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  font-style: italic;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
  padding: 100px 60px;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; height: 420px; }
.about-card { position: absolute; border-radius: 20px; overflow: hidden; }
.about-card-main {
  width: 70%; height: 360px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 60%, var(--sage-light) 100%);
  top: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-card-main blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--warm-brown);
  text-align: center;
  padding: 30px;
  line-height: 1.6;
}
.about-card-accent {
  width: 55%; height: 200px;
  background: var(--sage);
  bottom: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.about-card-accent p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  line-height: 2.2;
}
.about-stats { display: flex; gap: 32px; margin-top: 40px; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--rose); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-brown); font-weight: 500; }

/* =====================================================
   PRODUCTS GRID — HOME PAGE
   ===================================================== */
.products-section { padding: 100px 60px; background: var(--cream); }
.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-desc { margin: 0 auto; text-align: center; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  color: inherit;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blush);
  transition: height 0.3s ease, background 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); color: inherit; }
.product-card:hover::before { height: 6px; background: var(--rose); }
.product-card.sage-card::before { background: var(--sage); }
.product-card.sage-card:hover::before { background: var(--sage); }
.product-card.gold-card::before { background: var(--accent-gold); }
.product-card.gold-card:hover::before { background: var(--accent-gold); }

.product-card-arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}
.product-card:hover .product-card-arrow { opacity: 1; transform: translateX(0); }

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.product-icon.rose-icon { background: rgba(212,165,165,0.25); }
.product-icon.sage-icon { background: rgba(138,158,126,0.2); }
.product-icon.gold-icon { background: rgba(184,155,110,0.2); }

.product-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.product-card p { font-family: var(--font-script); font-size: 1.05rem; color: var(--warm-brown); line-height: 1.65; font-weight: 300; }

.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 600;
  background: rgba(193,127,127,0.12); color: var(--rose); border: 1px solid rgba(193,127,127,0.2);
}
.tag.sage-tag { background: rgba(138,158,126,0.12); color: var(--sage); border-color: rgba(138,158,126,0.2); }
.tag.gold-tag { background: rgba(184,155,110,0.12); color: var(--accent-gold); border-color: rgba(184,155,110,0.2); }

/* =====================================================
   QUOTE BANNER
   ===================================================== */
.quote-banner {
  background: var(--dark);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  top: -60px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.quote-banner blockquote {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
  position: relative;
}
.quote-banner cite { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); font-style: normal; font-weight: 500; }

/* =====================================================
   MOTIVATIONAL QUOTES SECTION
   ===================================================== */
.quotes-section { padding: 100px 60px; background: var(--off-white); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.quote-card {
  background: var(--cream); border-radius: 16px; padding: 32px 26px;
  border: 1px solid rgba(180,150,120,0.15);
  transition: transform 0.3s ease;
}
.quote-card:hover { transform: translateY(-4px); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--blush); line-height: 1; margin-bottom: -10px; }
.quote-card p { font-family: var(--font-script); font-size: 1.15rem; font-style: italic; color: var(--warm-brown); line-height: 1.65; margin-bottom: 16px; }
.quote-badge { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); font-weight: 600; font-family: var(--font-body); }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-section { padding: 100px 60px; background: var(--cream); }
.how-header { text-align: center; margin-bottom: 60px; }
.how-header .section-desc { margin: 0 auto; text-align: center; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 40px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: linear-gradient(to right, var(--blush), var(--sage-light));
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--off-white); border: 2px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--rose);
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: all 0.3s ease;
}
.step:hover .step-num { background: var(--rose); color: #fff; border-color: var(--rose); transform: scale(1.1); }
.step h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-family: var(--font-script); font-size: 1rem; color: var(--warm-brown); line-height: 1.6; font-weight: 300; }

/* =====================================================
   BUSINESS LINE SECTION
   ===================================================== */
.biz-section {
  background: linear-gradient(135deg, var(--sage) 0%, #6b8560 100%);
  padding: 100px 60px; position: relative; overflow: hidden;
}
.biz-section::after {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none;
}
.biz-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.biz-text .section-label { color: rgba(255,255,255,0.65); }
.biz-text .section-title { color: #fff; }
.biz-text .section-title em { color: rgba(255,255,255,0.75); }
.biz-text .section-desc { color: rgba(255,255,255,0.8); }
.biz-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.biz-item {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 16px 18px; backdrop-filter: blur(10px);
  transition: background 0.3s;
}
.biz-item:hover { background: rgba(255,255,255,0.2); }
.biz-item-icon { font-size: 1.4rem; margin-bottom: 6px; }
.biz-item h5 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: #fff; letter-spacing: 0.05em; margin-bottom: 2px; }
.biz-item p { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; font-weight: 400; line-height: 1.4; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
  padding: 100px 60px; background: var(--off-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-detail {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  font-family: var(--font-script); font-size: 1.05rem; color: var(--warm-brown);
}
.contact-detail-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-form { background: var(--cream); border-radius: 24px; padding: 44px 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.contact-form h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; color: var(--warm-brown);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--off-white); border: 1.5px solid rgba(180,150,120,0.25);
  border-radius: 10px; padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--dark);
  outline: none; transition: border-color 0.3s; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--rose); color: #fff; border: none;
  padding: 15px 30px; border-radius: 50px; font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: all 0.3s ease; margin-top: 8px;
}
.form-submit:hover { background: var(--warm-brown); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,76,59,0.3); }

/* =====================================================
   PRODUCT PAGE STYLES
   ===================================================== */
.page-hero {
  padding: 120px 60px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--warm-brown); margin-bottom: 20px;
  display: flex; gap: 8px; align-items: center; justify-content: center;
}
.breadcrumb a { color: var(--sage); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { color: rgba(107,76,59,0.4); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 16px; }
.page-hero h1 em { color: var(--rose); font-style: italic; }
.page-hero-desc {
  font-family: var(--font-script); font-size: 1.2rem; font-style: italic;
  color: var(--warm-brown); font-weight: 300; line-height: 1.6; margin-bottom: 32px;
}

.product-page-body { padding: 80px 60px; }
.product-page-body.alt-bg { background: var(--cream); }

.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  margin-bottom: 80px;
}
.product-image-placeholder {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--sage-light) 100%);
  height: 400px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
  color: var(--warm-brown); font-family: var(--font-script); font-style: italic;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.product-image-placeholder span { font-size: 3rem; }
.product-image-placeholder p { font-size: 1rem; opacity: 0.7; }

.product-details h2 { font-size: 1.8rem; margin-bottom: 12px; }
.product-details h2 em { color: var(--rose); font-style: italic; }
.product-details .lead {
  font-family: var(--font-script); font-size: 1.15rem; font-style: italic;
  color: var(--warm-brown); line-height: 1.7; margin-bottom: 28px;
}
.product-feature-list { margin: 24px 0; }
.product-feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-script); font-size: 1.05rem; color: var(--warm-brown);
  margin-bottom: 12px; font-weight: 300; line-height: 1.5;
}
.product-feature-list li::before {
  content: '✦'; color: var(--rose); font-size: 0.7rem; margin-top: 5px; flex-shrink: 0;
}

.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.option-card {
  background: var(--cream); border-radius: 14px; padding: 20px 16px; text-align: center;
  border: 1.5px solid rgba(180,150,120,0.15); transition: all 0.3s;
}
.option-card:hover { border-color: var(--rose); transform: translateY(-3px); }
.option-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.option-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.option-card p { font-size: 0.85rem; color: var(--warm-brown); font-weight: 300; line-height: 1.4; }

.gallery-section { padding: 80px 60px; background: var(--off-white); }
.gallery-section h2 { text-align: center; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--blush));
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:nth-child(2n) { background: linear-gradient(135deg, var(--sage-light), var(--cream)); }
.gallery-item:nth-child(3n) { background: linear-gradient(135deg, #e8d5b0, var(--blush)); }

.cta-strip {
  background: var(--dark); padding: 60px; text-align: center;
}
.cta-strip h2 { color: var(--cream); margin-bottom: 12px; }
.cta-strip h2 em { color: var(--blush); font-style: italic; }
.cta-strip p { font-family: var(--font-script); color: rgba(245,237,227,0.65); margin-bottom: 28px; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-strip a { background: var(--rose); }

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
  background: var(--dark);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-brand h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.footer-brand h3 em { color: var(--blush); font-style: italic; }
.footer-brand p { font-family: var(--font-script); font-size: 1.05rem; color: rgba(245,237,227,0.55); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(245,237,227,0.6); font-family: var(--font-body);
  font-weight: 700; letter-spacing: 0; transition: all 0.3s;
}
.social-link:hover { background: var(--rose); border-color: var(--rose); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--cream); margin-bottom: 20px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-family: var(--font-script); font-size: 1rem; color: rgba(245,237,227,0.5); transition: color 0.3s; font-weight: 300; }
.footer-col a:hover { color: var(--blush); }

#footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
#footer-bottom p { font-size: 0.72rem; color: rgba(245,237,227,0.35); letter-spacing: 0.08em; font-family: var(--font-body); }
#footer-bottom span { color: var(--blush); }

/* =====================================================
   COMING SOON BADGE
   ===================================================== */
.badge-new {
  display: inline-block; background: var(--accent-gold); color: #fff;
  font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 2px 9px; border-radius: 20px;
  font-weight: 700; vertical-align: middle; margin-left: 8px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  #site-header { padding: 16px 24px; }
  #primary-menu { display: none; }
  .hero-section, .product-page-body, .gallery-section, .cta-strip { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding: 100px 24px 60px; }
  .about-section, .contact-section { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .about-visual { height: 260px; }
  .products-section, .quotes-section, .how-section { padding: 70px 24px; }
  .biz-section { padding: 70px 24px; }
  .biz-inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-banner { padding: 60px 24px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #site-footer { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px; }
  #footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
