/*
Theme Name: Helen Vallery Atelier
Theme URI: https://helenvalery-florals.com/theme
Author: Helen Vallery Studio
Author URI: https://helenvalery-florals.com
Description: Bespoke boutique wedding florist theme representing true light & luxury under Boca Raton banyan gardens.
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: helen-vallery-theme
Tags: custom-background, featured-images, custom-logo, portfolio, one-column, translation-ready, light-luxury
*/

/* Reset & Custom Floristry Theme Adjustments */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');
@import "tailwindcss";

@theme {
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  
  --color-editorial-bg: #f9f7f4;
  --color-editorial-dark: #1a1a1a;
  --color-editorial-muted: #4a4a4a;
  --color-editorial-sand: #e8e4df;
  --color-editorial-rose: #d6c7c2;
  --color-editorial-cream: #f2eae5;

  --color-gold-50: #fbf7ee;
  --color-gold-100: #f5edd4;
  --color-gold-200: #ebd8af;
  --color-gold-300: #ddbf81;
  --color-gold-400: #cea656;
  --color-gold-500: #be8e3d;
  --color-gold-600: #9e712f;
  --color-gold-700: #7d5426;
  --color-gold-800: #5c3e1f;
  --color-gold-900: #3f2a17;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f9f7f4;
  color: #1a1a1a;
}

/* Luxury button and decorative elements */
.luxury-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2620 100%);
}

.luxury-glow {
  box-shadow: 0 10px 40px -15px rgba(26, 26, 26, 0.15);
}

/* Custom scrollbar for high-end editorial feel */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f9f7f4;
}
::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 3px;
}



/* Luxurious botanical highlight and aesthetic margins */
.primary-bloom-border {
    border-left: 2px solid #D3A297;
}

.luxury-glow {
    box-shadow: 0 15px 40px -12px rgba(26, 26, 26, 0.08);
}

/* =========================================================
   Helen Vallery Atelier — Header + Hero
   ========================================================= */

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f7f4;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif  { font-family: 'Playfair Display', serif; }
.font-mono   { font-family: 'JetBrains Mono', monospace; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  opacity: 0.75;
  margin-top: 3px;
  text-transform: uppercase;
}

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-direction: row;
}
.navbar-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #D3A297;
  transition: width 0.3s ease;
}

.navbar-nav a:hover { color: #D3A297; }
.navbar-nav a:hover::after { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}
.btn-cta:hover {
  background: transparent;
  color: #fff;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 140px 24px 80px;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.25) 40%, rgba(20,20,20,0.55) 100%),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}

.badge-icon { font-size: 12px; }

/* Title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}

.hero-title-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #E8D5C4;
  font-size: 0.72em;
  margin-top: 8px;
}

/* Description */
.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 44px;
  color: rgba(255,255,255,0.88);
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-aura {
  background: #E8DDD9;
  color: #1a1a1a;
  border-color: #E8DDD9;
  min-width: 260px;
}
.btn-aura:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  min-width: 260px;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-icon { font-size: 12px; }

/* Testimonial strip */
.hero-testimonial {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.75;
}

.testimonial-names {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.testimonial-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

.scroll-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-aura, .btn-white { min-width: 100%; }
  .logo-title { font-size: 12px; }
  .logo-sub   { font-size: 8px; }
}
/* =========================================================
   Portfolio Page Styles
   ========================================================= */

/* Portfolio Hero */
.portfolio-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
}

.portfolio-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D3A297;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(211, 162, 151, 0.3);
  border-radius: 999px;
}

.portfolio-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #1a1a1a;
}

.portfolio-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}

/* Portfolio Filters */
.portfolio-filters {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 70px;
  z-index: 50;
}

.filter-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid transparent;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #f9f7f4;
  border-color: #D3A297;
  color: #1a1a1a;
}

.filter-btn.active {
  background: #D3A297;
  color: #fff;
  border-color: #D3A297;
}

/* Portfolio Grid */
.portfolio-grid-section {
  padding: 80px 0;
  background: #f9f7f4;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.portfolio-item-inner {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.08);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(26, 26, 26, 0) 0%, 
    rgba(26, 26, 26, 0.4) 50%, 
    rgba(26, 26, 26, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay-content {
  transform: translateY(0);
}

.portfolio-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D3A297;
  display: block;
  margin-bottom: 8px;
}

.portfolio-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 6px;
  line-height: 1.2;
}

.portfolio-location {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* Load More */
.portfolio-load-more {
  padding: 60px 0 80px;
  text-align: center;
  background: #f9f7f4;
}

.btn-load-more {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
}

.btn-load-more:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Portfolio CTA */
.portfolio-cta {
  padding: 120px 0;
  background: linear-gradient(180deg, #f5f0eb 0%, #f9f7f4 100%);
  text-align: center;
}

.portfolio-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.cta-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #D3A297;
  color: #fff;
  border: 1px solid #D3A297;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 999px;
  display: inline-block;
}

.btn-cta-primary:hover {
  background: #c49288;
  border-color: #c49288;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 999px;
  display: inline-block;
}

.btn-cta-secondary:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-filters {
    top: 60px;
  }
  
  .filter-nav {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 10px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 320px;
  }
}

/* Filter Animation */
.portfolio-item.hidden {
  display: none;
}

.portfolio-item {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* =========================================================
   Consultation Builder Page
   ========================================================= */

/* ---------- DARK HERO ---------- */
.consultation-hero {
  background: #1a2020;
  color: #fff;
  padding: 80px 24px 70px;
  text-align: center;
}

.consultation-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- BUILDER LAYOUT ---------- */
.consultation-builder {
  background: #1a2020;
  padding: 0 24px 80px;
}

.builder-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.builder-form,
.builder-preview {
  background: #fff;
  border-radius: 4px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.25);
}

/* ---------- STEPS ---------- */
.builder-step {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.builder-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.step-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
}

/* ---------- AESTHETIC GRID ---------- */
.aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.aesthetic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
}

.aesthetic-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.aesthetic-card:hover {
  border-color: #D3A297;
  transform: translateY(-2px);
}

.aesthetic-card.is-selected {
  border-color: #D3A297;
  background: #fdf9f7;
  box-shadow: 0 8px 24px -12px rgba(211, 162, 151, 0.35);
}

.aesthetic-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #D3A297;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.25s ease;
}

.aesthetic-card.is-selected .aesthetic-check {
  opacity: 1;
  transform: scale(1);
}

.aesthetic-price {
  font-size: 10px;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.aesthetic-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #555;
  font-weight: 300;
}

/* ---------- FIELDS ---------- */
.field-group {
  margin-bottom: 24px;
}

.field-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b5b0a8;
  margin-bottom: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-row .field-group {
  margin-bottom: 0;
}

input[type="text"],
input[type="email"],
input[type="date"],
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #D3A297;
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap input {
  padding-left: 44px;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b5b0a8;
  pointer-events: none;
}

/* ---------- SLIDER ---------- */
.slider-wrap {
  padding: 8px 0;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: #e8e4df;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4A90E2;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(74,144,226,0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4A90E2;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(74,144,226,0.4);
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 10px;
  color: #999;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.slider-value {
  color: #1a1a1a;
  font-weight: 500;
}

/* ---------- INCLUSIONS ---------- */
.inclusions-box {
  border: 1px solid #e8e4df;
  border-radius: 4px;
  padding: 24px;
  margin-top: 8px;
}

.inclusion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0ece7;
  gap: 16px;
}
.inclusion-row:last-child { border-bottom: none; }

.inclusion-name {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
  flex: 1;
}

.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.inclusion-price {
  font-size: 11px;
  color: #999;
  min-width: 60px;
  text-align: right;
}

/* Toggle switch */
.toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle-slider {
  background: #4A90E2;
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

/* ---------- SUBMIT BUTTON ---------- */
.btn-submit {
  width: 100%;
  padding: 20px 24px;
  background: #f5f0eb;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.btn-submit:hover {
  background: #1a1a1a;
  color: #fff;
}

/* =========================================================
   PREVIEW PANEL (RIGHT)
   ========================================================= */
.builder-preview {
  position: sticky;
  top: 90px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.preview-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b5b0a8;
}

.preview-badge {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  color: #1a1a1a;
}

.preview-description {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  font-weight: 300;
  margin: 0 0 32px;
}

.preview-block {
  margin-bottom: 28px;
}

.preview-block-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b5b0a8;
  margin-bottom: 14px;
}

/* Bloom list */
.bloom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bloom-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #1a1a1a;
}

.bloom-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bloom-type {
  margin-left: auto;
  font-size: 9px;
  color: #b5b0a8;
  letter-spacing: 0.1em;
}

/* Palette card */
.palette-card {
  border: 1px solid #e8e4df;
  border-radius: 4px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.palette-name {
  font-size: 11px;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.palette-swatches {
  display: flex;
  gap: 6px;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Investment block */
.preview-investment {
  background: #6b6b6b;
  color: #fff;
  padding: 32px 28px;
  border-radius: 4px;
  text-align: center;
  margin-top: 16px;
}

.investment-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.investment-amount {
  display: block;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.investment-note {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .builder-container {
    grid-template-columns: 1fr;
  }
  .builder-preview {
    position: static;
  }
}

@media (max-width: 600px) {
  .builder-form,
  .builder-preview {
    padding: 32px 24px;
  }
  .aesthetic-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .investment-amount {
    font-size: 34px;
  }
}/* =========================================================
   Testimonials Page Styles
   ========================================================= */

/* Hero Section */
.testimonials-hero {
  padding: 120px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
}

.testimonials-hero .section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b5b0a8;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 24px;
  color: #1a1a1a;
}

.testimonials-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 24px;
  background: #fff;
}

.testimonials-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  display: none;
  background: #f9f4f1;
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}

.testimonial-card.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quote Mark */
.testimonial-quote-mark {
  position: absolute;
  top: 32px;
  left: 32px;
  opacity: 0.15;
  z-index: 1;
}

/* Gallery */
.testimonial-gallery {
  position: relative;
  z-index: 2;
}

.testimonial-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px -12px rgba(26, 26, 26, 0.15);
}

.testimonial-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.testimonial-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-badge svg {
  width: 14px;
  height: 14px;
}

/* Content */
.testimonial-content {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

/* Meta */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-date {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.1em;
}

/* Quote */
.testimonial-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-style: italic;
}

/* Description */
.testimonial-description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 32px;
  font-weight: 300;
}

/* Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}

.testimonial-client {
  flex: 1;
}

.client-names {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 4px;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.client-location {
  font-size: 12px;
  color: #999;
  font-weight: 300;
}

/* Navigation Arrows */
.testimonial-nav {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* Dots Navigation */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(26, 26, 26, 0.2);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: scale(1.2);
}

/* CTA Section */
.testimonials-cta {
  padding: 100px 24px;
  background: linear-gradient(180deg, #f5f0eb 0%, #f9f7f4 100%);
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.cta-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-aura {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #D3A297;
  color: #fff;
  border: 1px solid #D3A297;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-aura:hover {
  background: #c49288;
  border-color: #c49288;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 12px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .testimonial-nav {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .testimonial-quote-mark {
    top: 20px;
    left: 20px;
  }
  
  .testimonial-quote {
    font-size: 18px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-aura,
  .btn-contact {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}/* =========================================================
   About Page Styles
   ========================================================= */

/* Hero Section */
.about-hero {
  padding: 100px 24px 80px;
  background: #f9f7f4;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column - Intro */
.about-intro {
  max-width: 540px;
}

.about-intro .section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b5b0a8;
  margin-bottom: 16px;
}

.about-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: #D3A297;
  margin-bottom: 32px;
}

.about-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text.lead {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 400;
  line-height: 1.7;
}

/* Right Column - Featured */
.about-featured {
  position: relative;
}

.featured-dark-panel {
  background: #1a2020;
  color: #fff;
  padding: 48px 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.featured-dark-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211, 162, 151, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.featured-label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.featured-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 24px;
  color: #fff;
}

.featured-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-weight: 300;
}

/* Stats */
.featured-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.stat-box {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
  border-radius: 4px;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: #D3A297;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  display: block;
}

/* Quote */
.featured-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 24px;
}

.featured-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
}

.featured-quote cite {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

/* Values Section */
.about-values {
  padding: 80px 24px;
  background: #fff;
}

.values-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Accordion Cards */
.value-card {
  border: 1px solid #e8e4df;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #D3A297;
  box-shadow: 0 4px 20px -8px rgba(211, 162, 151, 0.25);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #fdf9f7;
}

.value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D3A297;
  flex-shrink: 0;
}

.value-title {
  flex: 1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.accordion-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: transform 0.3s ease;
}

.accordion-card.is-open .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 28px 28px 84px;
  animation: slideDown 0.3s ease;
}

.accordion-card.is-open .accordion-content {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  font-weight: 300;
}

/* CTA Section */
.about-cta {
  padding: 100px 24px;
  background: linear-gradient(180deg, #f5f0eb 0%, #f9f7f4 100%);
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.cta-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-aura {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #D3A297;
  color: #fff;
  border: 1px solid #D3A297;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-aura:hover {
  background: #c49288;
  border-color: #c49288;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 12px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-intro {
    max-width: 100%;
  }
  
  .featured-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 80px 20px 60px;
  }
  
  .featured-dark-panel {
    padding: 32px 24px;
  }
  
  .accordion-header {
    padding: 20px;
    gap: 12px;
  }
  
  .value-icon {
    width: 36px;
    height: 36px;
  }
  
  .accordion-content {
    padding: 0 20px 20px 68px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-aura,
  .btn-contact {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}/* =========================================================
   Footer Styles — Helen Vallery Atelier
   ========================================================= */

.site-footer {
  background: #1a2020;
  color: #fff;
  padding: 72px 24px 0;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 56px;
}

/* ---------- Brand Column ---------- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 2px;
  padding: 6px;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo .logo-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
}

.footer-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.footer-description {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px;
  font-weight: 300;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #D3A297;
  border-color: #D3A297;
  transform: translateY(-2px);
}

/* ---------- Navigation Column ---------- */
.footer-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.4;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.25s ease;
  position: relative;
  padding-left: 0;
}

.footer-menu a:hover {
  color: #D3A297;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #D3A297;
  transition: width 0.3s ease;
}

.footer-menu a:hover::before {
  width: 10px;
}

.footer-menu a:hover {
  padding-left: 16px;
}

/* ---------- Contact Column ---------- */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.6;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #D3A297;
}

.contact-item address {
  font-style: normal;
}

/* ---------- Bottom Bar ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-tags {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 56px 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-description {
    max-width: 100%;
  }
}

 /* =========================================================
   Standard Page Template Styles
   ========================================================= */

.page-template .site-main {
  min-height: 60vh;
}

/* Page Hero */
.page-hero {
  padding: 140px 24px 60px;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb-trail {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #999;
  margin: 0;
}

.breadcrumb-trail a {
  color: #999;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb-trail a:hover {
  color: #D3A297;
}

.breadcrumb-trail span {
  color: #D3A297;
}

.breadcrumb-trail .separator {
  margin: 0 8px;
  color: #ccc;
}

/* Page Title */
.page-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Content Section */
.page-content-section {
  padding: 80px 24px 100px;
  background: #fff;
}

.page-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Page Article */
.page-article {
  background: #fff;
}

/* Page Content Typography */
.page-content {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  font-weight: 300;
}

.page-content > * {
  margin-bottom: 28px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.25;
  color: #1a1a1a;
  margin-top: 48px;
  margin-bottom: 20px;
}

.page-content h1 {
  font-size: 36px;
}

.page-content h2 {
  font-size: 30px;
}

.page-content h3 {
  font-size: 24px;
}

.page-content h4 {
  font-size: 20px;
}

.page-content h5 {
  font-size: 18px;
}

.page-content h6 {
  font-size: 16px;
}

.page-content p {
  margin-bottom: 24px;
}

.page-content a {
  color: #D3A297;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.page-content a:hover {
  color: #c49288;
}

.page-content strong {
  font-weight: 600;
  color: #1a1a1a;
}

.page-content em {
  font-style: italic;
}

/* Lists */
.page-content ul,
.page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.page-content ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #D3A297;
  border-radius: 50%;
}

.page-content ol li {
  list-style: decimal;
}

/* Blockquote */
.page-content blockquote {
  margin: 40px 0;
  padding: 32px 40px;
  background: #f9f7f4;
  border-left: 3px solid #D3A297;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: #1a1a1a;
}

.page-content blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  color: #666;
  font-weight: 400;
}

/* Images */
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 32px 0;
}

.page-content .wp-caption {
  max-width: 100%;
  margin: 32px 0;
}

.page-content .wp-caption-text {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Tables */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

.page-content th,
.page-content td {
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  text-align: left;
}

.page-content th {
  background: #f9f7f4;
  font-weight: 500;
  color: #1a1a1a;
}

.page-content tr:nth-child(even) {
  background: #faf9f7;
}

/* Code */
.page-content code,
.page-content pre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  background: #f5f0eb;
  padding: 2px 8px;
  border-radius: 3px;
}

.page-content pre {
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
}

.page-content pre code {
  padding: 0;
  background: transparent;
}

/* Horizontal Rule */
.page-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #D3A297 50%, transparent 100%);
  margin: 48px 0;
}

/* Page Links (Pagination) */
.page-links {
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #999;
}

.page-links a {
  color: #D3A297;
  text-decoration: none;
  margin: 0 8px;
  padding: 6px 12px;
  border: 1px solid #e8e4df;
  border-radius: 3px;
  transition: all 0.25s ease;
}

.page-links a:hover {
  background: #D3A297;
  color: #fff;
  border-color: #D3A297;
}

/* Page Footer (Edit Link) */
.page-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e4df;
}

.page-footer a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-footer a:hover {
  color: #D3A297;
}

/* Special Content Blocks */
.page-content .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.page-content .wp-block-column {
  margin-bottom: 0;
}

.page-content .has-3-columns {
  grid-template-columns: repeat(3, 1fr);
}

.page-content .has-4-columns {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 20px 50px;
  }

  .page-content-section {
    padding: 60px 20px 80px;
  }

  .page-content h1 {
    font-size: 30px;
  }

  .page-content h2 {
    font-size: 26px;
  }

  .page-content h3 {
    font-size: 22px;
  }

  .page-content blockquote {
    padding: 24px 28px;
    font-size: 18px;
  }

  .page-content .wp-block-columns,
  .page-content .has-3-columns,
  .page-content .has-4-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}/* =========================================================
   Single Post Template Styles
   ========================================================= */

.single-post-template .site-main {
  min-height: 60vh;
}

/* Post Hero */
.post-hero {
  padding: 140px 24px 60px;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
  text-align: center;
}

.post-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-category {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D3A297;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(211, 162, 151, 0.3);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-category:hover {
  background: #D3A297;
  color: #fff;
}

.post-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 28px;
  color: #1a1a1a;
}

.post-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.post-meta a {
  color: #999;
  text-decoration: none;
  transition: color 0.25s ease;
}

.post-meta a:hover {
  color: #D3A297;
}

.meta-separator {
  color: #ccc;
}

/* Featured Image */
.post-featured-image {
  padding: 0 24px;
  margin-top: -40px; /* Overlap effect */
  position: relative;
  z-index: 2;
}

.featured-figure {
  margin: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(26, 26, 26, 0.15);
}

.featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-caption {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #999;
  text-align: center;
  padding: 16px;
  background: #fff;
  margin: 0;
}

/* =========================================================
   Enhanced Single Post with Sidebar
   ========================================================= */

/* Hero Parallax */
.post-hero-parallax {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 24px 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(249, 247, 244, 0.95) 0%, rgba(249, 247, 244, 0.85) 50%, rgba(249, 247, 244, 0.95) 100%);
  z-index: 1;
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.post-category-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D3A297;
  margin-bottom: 24px;
  padding: 10px 20px;
  background: rgba(211, 162, 151, 0.1);
  border: 1px solid rgba(211, 162, 151, 0.3);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-category-badge:hover {
  background: #D3A297;
  color: #fff;
  transform: translateY(-2px);
}

.post-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 32px;
  color: #1a1a1a;
}

.post-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

.meta-item svg {
  color: #D3A297;
}

/* Main Content Area */
.post-main-area {
  padding: 80px 24px 100px;
  background: #fff;
}

.post-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
}

/* Post Content */
.post-content-main {
  max-width: 720px;
}

.post-content {
  font-size: 17px;
  line-height: 1.95;
  color: #333;
  font-weight: 300;
}

.post-content > * {
  margin-bottom: 32px;
}

.post-content h2 {
  font-size: 30px;
  margin-top: 56px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ece7;
}

.post-content h3 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 20px;
}

.post-content blockquote {
  margin: 48px 0;
  padding: 40px 48px;
  background: linear-gradient(135deg, #f9f7f4 0%, #f5f0eb 100%);
  border-left: 4px solid #D3A297;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  color: #1a1a1a;
  position: relative;
}

.post-content blockquote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 80px;
  color: rgba(211, 162, 151, 0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* Tags Wrapper */
.post-tags-wrapper {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #f0ece7;
}

.tags-title {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  font-size: 12px;
  padding: 8px 18px;
  background: #f9f7f4;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tags-cloud a:hover {
  background: #fff;
  border-color: #D3A297;
  color: #D3A297;
  transform: translateY(-2px);
}

/* Share Section */
.post-share-section {
  margin-top: 48px;
  padding: 32px;
  background: #f9f7f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
  transform: translateY(-3px) rotate(5deg);
}

/* Author Box Enhanced */
.author-box-enhanced {
  margin-top: 64px;
  padding: 48px;
  background: linear-gradient(135deg, #f9f7f4 0%, #f5f0eb 100%);
  border-radius: 4px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  border: 1px solid rgba(211, 162, 151, 0.2);
}

.author-box-image {
  flex-shrink: 0;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px -8px rgba(26, 26, 26, 0.15);
}

.author-box-content {
  flex: 1;
}

.author-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.author-name {
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.author-bio {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 16px;
  font-weight: 300;
}

.author-social {
  display: flex;
  gap: 12px;
}

.author-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
}

.author-social-link:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

/* Post Navigation Enhanced */
.post-nav-enhanced {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #f0ece7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.post-nav-item {
  padding: 24px;
  background: #f9f7f4;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.post-nav-item:hover {
  background: #f5f0eb;
  transform: translateY(-3px);
}

.post-nav-prev {
  text-align: left;
}

.post-nav-next {
  text-align: right;
}

.nav-direction {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.nav-post-title {
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.post-nav-item:hover .nav-post-title {
  color: #D3A297;
}

/* ========== SIDEBAR ========== */
.post-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  margin-bottom: 40px;
  padding: 32px;
  background: #f9f7f4;
  border-radius: 4px;
  border: 1px solid rgba(211, 162, 151, 0.15);
}

.widget-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(211, 162, 151, 0.3);
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 0;
}

.search-field {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  border-radius: 4px 0 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: #fff;
  transition: border-color 0.25s ease;
}

.search-field:focus {
  outline: none;
  border-color: #D3A297;
}

.search-submit {
  padding: 14px 18px;
  background: #D3A297;
  border: 1px solid #D3A297;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-submit:hover {
  background: #c49288;
  border-color: #c49288;
}

/* Categories Widget */
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  margin: 0;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-link:hover {
  background: #fff;
  border-color: #D3A297;
  transform: translateX(4px);
}

.category-name {
  font-size: 13px;
  font-weight: 400;
}

.category-count {
  font-size: 11px;
  color: #999;
  background: #f9f7f4;
  padding: 4px 10px;
  border-radius: 999px;
}

.category-link:hover .category-count {
  background: #D3A297;
  color: #fff;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  margin: 0;
}

.recent-post-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.recent-post-link:hover {
  transform: translateX(4px);
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.recent-post-info {
  flex: 1;
}

.recent-post-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 6px;
  color: #1a1a1a;
  transition: color 0.25s ease;
}

.recent-post-link:hover .recent-post-title {
  color: #D3A297;
}

.recent-post-date {
  font-size: 11px;
  color: #999;
}

/* Tag Cloud Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  font-size: 11px !important;
  padding: 6px 14px;
  background: #fff;
  color: #666;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #e8e4df;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

/* Newsletter Widget */
.newsletter-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: #fff;
  transition: border-color 0.25s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #D3A297;
}

.newsletter-submit {
  padding: 14px 20px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #D3A297;
  border-color: #D3A297;
}

/* Responsive */
@media (max-width: 968px) {
  .post-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .post-sidebar {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .sidebar-sticky {
    position: static;
  }
  
  .post-nav-enhanced {
    grid-template-columns: 1fr;
  }
  
  .post-nav-prev,
  .post-nav-next {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .post-hero-parallax {
    padding: 140px 20px 80px;
    min-height: 400px;
  }
  
  .post-hero-title {
    font-size: 32px;
  }
  
  .post-hero-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .post-main-area {
    padding: 60px 20px 80px;
  }
  
  .author-box-enhanced {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .post-share-section {
    flex-direction: column;
    text-align: center;
  }
}
/* =========================================================
   Archive Template Styles
   ========================================================= */

/* Archive Hero */
.archive-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.archive-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 162, 151, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.archive-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.archive-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D3A297;
  margin-bottom: 24px;
  padding: 10px 20px;
  background: rgba(211, 162, 151, 0.1);
  border: 1px solid rgba(211, 162, 151, 0.3);
  border-radius: 999px;
}

.archive-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.archive-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-weight: 300;
}

/* Archive Content */
.archive-content {
  padding: 80px 24px 100px;
  background: #fff;
}

.archive-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  gap: 40px;
}

.archive-post-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #f0ece7;
}

.archive-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -12px rgba(26, 26, 26, 0.1);
  border-color: rgba(211, 162, 151, 0.3);
}

.post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Post Card Image */
.post-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.archive-post-card:hover .image-wrapper {
  transform: scale(1.06);
}

.post-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 26, 26, 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Post Card Content */
.post-card-content {
  padding: 32px;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #999;
  margin-bottom: 16px;
}

.meta-dot {
  color: #D3A297;
}

.read-time {
  color: #999;
}

.post-card-title {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.archive-post-card:hover .post-card-title {
  color: #D3A297;
}

.post-card-excerpt {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 24px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D3A297;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more svg {
  transition: transform 0.3s ease;
}

.archive-post-card:hover .read-more {
  gap: 14px;
}

.archive-post-card:hover .read-more svg {
  transform: translateX(4px);
}

/* Pagination */
.archive-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #e8e4df;
  background: #fff;
  color: #1a1a1a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.archive-pagination .page-numbers svg {
  width: 18px;
  height: 18px;
}

/* No Posts Found */
.no-posts-found {
  text-align: center;
  padding: 100px 40px;
  background: #f9f7f4;
  border-radius: 4px;
  border: 1px dashed #D3A297;
}

.no-posts-found h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.no-posts-found p {
  font-size: 15px;
  color: #666;
  margin: 0 0 32px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #D3A297;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #c49288;
  transform: translateY(-2px);
}

/* ========== ARCHIVE SIDEBAR ========== */
/* Reuse sidebar styles from single.php with minor adjustments */
.archive-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  margin-bottom: 40px;
  padding: 32px;
  background: #f9f7f4;
  border-radius: 4px;
  border: 1px solid rgba(211, 162, 151, 0.15);
}

.widget-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(211, 162, 151, 0.3);
}

/* Search */
.search-form {
  display: flex;
  gap: 0;
}

.search-field {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  border-radius: 4px 0 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: #fff;
  transition: border-color 0.25s ease;
}

.search-field:focus {
  outline: none;
  border-color: #D3A297;
}

.search-submit {
  padding: 14px 18px;
  background: #D3A297;
  border: 1px solid #D3A297;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-submit:hover {
  background: #c49288;
  border-color: #c49288;
}

/* Categories */
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  margin: 0;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-link:hover {
  border-color: #D3A297;
  transform: translateX(4px);
}

.category-name {
  font-size: 13px;
  font-weight: 400;
}

.category-count {
  font-size: 11px;
  color: #999;
  background: #f9f7f4;
  padding: 4px 10px;
  border-radius: 999px;
}

.category-link:hover .category-count {
  background: #D3A297;
  color: #fff;
}

/* Recent Posts */
.recent-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  margin: 0;
}

.recent-post-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.recent-post-link:hover {
  transform: translateX(4px);
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.recent-post-info {
  flex: 1;
}

.recent-post-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 6px;
  color: #1a1a1a;
  transition: color 0.25s ease;
}

.recent-post-link:hover .recent-post-title {
  color: #D3A297;
}

.recent-post-date {
  font-size: 11px;
  color: #999;
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  font-size: 11px !important;
  padding: 6px 14px;
  background: #fff;
  color: #666;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #e8e4df;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

/* Responsive */
@media (max-width: 968px) {
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .archive-sidebar {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 600px) {
  .archive-hero {
    padding: 120px 20px 60px;
  }
  
  .archive-content {
    padding: 60px 20px 80px;
  }
  
  .posts-grid {
    gap: 32px;
  }
  
  .post-card-content {
    padding: 24px;
  }
  
  .post-card-title {
    font-size: 22px;
  }
  
  .archive-pagination {
    flex-wrap: wrap;
  }
}/* =========================================================
   Blog Page Template Styles
   ========================================================= */

/* Blog Hero */
.blog-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 162, 151, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.blog-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D3A297;
  margin-bottom: 24px;
  padding: 10px 20px;
  background: rgba(211, 162, 151, 0.1);
  border: 1px solid rgba(211, 162, 151, 0.3);
  border-radius: 999px;
}

.blog-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.blog-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 40px;
  font-weight: 300;
}

/* Blog Filters */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e8e4df;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

/* Blog Content */
.blog-content {
  padding: 80px 24px 100px;
  background: #fff;
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-post-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #f0ece7;
}

.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -12px rgba(26, 26, 26, 0.1);
  border-color: rgba(211, 162, 151, 0.3);
}

.post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Post Card Image */
.post-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.blog-post-card:hover .image-wrapper {
  transform: scale(1.06);
}

.post-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 26, 26, 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Post Card Content */
.post-card-content {
  padding: 28px;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #999;
  margin-bottom: 16px;
}

.meta-dot {
  color: #D3A297;
}

.read-time {
  color: #999;
}

.post-card-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.blog-post-card:hover .post-card-title {
  color: #D3A297;
}

.post-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D3A297;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more svg {
  transition: transform 0.3s ease;
}

.blog-post-card:hover .read-more {
  gap: 14px;
}

.blog-post-card:hover .read-more svg {
  transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #e8e4df;
  background: #fff;
  color: #1a1a1a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-pagination .page-numbers svg {
  width: 18px;
  height: 18px;
}

/* No Posts Found */
.no-posts-found {
  text-align: center;
  padding: 100px 40px;
  background: #f9f7f4;
  border-radius: 4px;
  border: 1px dashed #D3A297;
}

.no-posts-found h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.no-posts-found p {
  font-size: 15px;
  color: #666;
  margin: 0 0 32px;
}

.btn-return-home {
  display: inline-block;
  padding: 14px 32px;
  background: #D3A297;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-return-home:hover {
  background: #c49288;
  transform: translateY(-2px);
}

/* ========== BLOG SIDEBAR ========== */
.blog-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  margin-bottom: 40px;
  padding: 32px;
  background: #f9f7f4;
  border-radius: 4px;
  border: 1px solid rgba(211, 162, 151, 0.15);
}

.widget-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(211, 162, 151, 0.3);
}

/* About Widget */
.about-content {
  text-align: center;
}

.about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px;
  font-weight: 300;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D3A297;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-link:hover {
  gap: 12px;
}

.about-link svg {
  transition: transform 0.3s ease;
}

.about-link:hover svg {
  transform: translateX(4px);
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 0;
}

.search-field {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  border-radius: 4px 0 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: #fff;
  transition: border-color 0.25s ease;
}

.search-field:focus {
  outline: none;
  border-color: #D3A297;
}

.search-submit {
  padding: 14px 18px;
  background: #D3A297;
  border: 1px solid #D3A297;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-submit:hover {
  background: #c49288;
  border-color: #c49288;
}

/* Categories Widget */
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  margin: 0;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-link:hover {
  border-color: #D3A297;
  transform: translateX(4px);
}

.category-name {
  font-size: 13px;
  font-weight: 400;
}

.category-count {
  font-size: 11px;
  color: #999;
  background: #f9f7f4;
  padding: 4px 10px;
  border-radius: 999px;
}

.category-link:hover .category-count {
  background: #D3A297;
  color: #fff;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  margin: 0;
}

.recent-post-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.recent-post-link:hover {
  transform: translateX(4px);
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.recent-post-info {
  flex: 1;
}

.recent-post-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 6px;
  color: #1a1a1a;
  transition: color 0.25s ease;
}

.recent-post-link:hover .recent-post-title {
  color: #D3A297;
}

.recent-post-date {
  font-size: 11px;
  color: #999;
}

/* Tag Cloud Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  font-size: 11px !important;
  padding: 6px 14px;
  background: #fff;
  color: #666;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #e8e4df;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
}

/* Newsletter Widget */
.newsletter-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: #fff;
  transition: border-color 0.25s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #D3A297;
}

.newsletter-submit {
  padding: 14px 20px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #D3A297;
  border-color: #D3A297;
}

/* Responsive */
@media (max-width: 968px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .blog-sidebar {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .sidebar-sticky {
    position: static;
  }
  
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-hero {
    padding: 120px 20px 60px;
  }
  
  .blog-content {
    padding: 60px 20px 80px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .post-card-content {
    padding: 24px;
  }
  
  .post-card-title {
    font-size: 20px;
  }
  
  .blog-pagination {
    flex-wrap: wrap;
  }
  
  .blog-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 10px;
  }
}

.home .hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}/* =========================================================
   Contact Page Template Styles
   ========================================================= */

/* Contact Hero */
.contact-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, #f9f7f4 0%, #f5f0eb 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 162, 151, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D3A297;
  margin-bottom: 24px;
  padding: 10px 20px;
  background: rgba(211, 162, 151, 0.1);
  border: 1px solid rgba(211, 162, 151, 0.3);
  border-radius: 999px;
}

.contact-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-weight: 300;
}

/* Contact Content */
.contact-content {
  padding: 80px 24px;
  background: #fff;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

/* Contact Info Column */
.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.contact-info-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-weight: 300;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #f9f7f4;
  border-radius: 4px;
  border: 1px solid rgba(211, 162, 151, 0.15);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #D3A297;
  transform: translateX(4px);
  box-shadow: 0 8px 24px -8px rgba(211, 162, 151, 0.2);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  color: #D3A297;
  flex-shrink: 0;
}

.contact-card-content {
  flex: 1;
}

.contact-card-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}

.contact-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 8px;
  font-style: normal;
}

.contact-link {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: #D3A297;
}

.contact-card-note {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D3A297;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card-link:hover {
  gap: 12px;
}

.contact-card-link svg {
  transition: transform 0.3s ease;
}

.contact-card-link:hover svg {
  transform: translateX(4px);
}

/* Hours List */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #1a1a1a;
}

.hours-row span:last-child {
  color: #666;
}

/* Social Links */
.contact-social {
  padding-top: 32px;
  border-top: 1px solid #f0ece7;
}

.social-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f9f7f4;
  border: 1px solid #e8e4df;
  border-radius: 999px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #D3A297;
  border-color: #D3A297;
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Form Column */
.contact-form-wrapper {
  background: #f9f7f4;
  padding: 48px;
  border-radius: 4px;
  border: 1px solid rgba(211, 162, 151, 0.15);
}

.form-header {
  margin-bottom: 32px;
}

.form-title {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.form-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-weight: 300;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  transition: all 0.25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #D3A297;
  box-shadow: 0 0 0 3px rgba(211, 162, 151, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b5b0a8;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Checkbox */
.form-checkbox {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid #e8e4df;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease;
}

.checkbox-label input:checked + .checkbox-custom {
  background: #D3A297;
  border-color: #D3A297;
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  flex: 1;
}

/* Submit Button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: #D3A297;
  border-color: #D3A297;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(211, 162, 151, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-submit-btn svg {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

.form-privacy {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin: 0;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 162, 151, 0.1);
  border-radius: 50%;
  color: #D3A297;
}

.success-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.success-message {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-weight: 300;
}

/* Map Section */
.contact-map-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 20px 60px -20px rgba(26, 26, 26, 0.2);
  text-align: center;
  max-width: 400px;
}

.map-title {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.map-address {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 24px;
}

.map-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #D3A297;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: #c49288;
  transform: translateY(-2px);
}

/* CTA Section */
.contact-cta {
  padding: 100px 24px;
  background: linear-gradient(180deg, #f5f0eb 0%, #f9f7f4 100%);
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.cta-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-aura {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #D3A297;
  color: #fff;
  border: 1px solid #D3A297;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-aura:hover {
  background: #c49288;
  border-color: #c49288;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 12px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-form-wrapper {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 120px 20px 60px;
  }
  
  .contact-content {
    padding: 60px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .contact-map-section {
    height: 400px;
  }
  
  .map-overlay {
    padding: 24px;
    max-width: 300px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-aura,
  .btn-contact {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}