/* ==========================================================================
   Twilight Pine Dark-Cabin Theme - Lake Naomi CSS
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Color Palette representing the deep twilight woods and cedar logs */
  --pine-twilight: #121e16;       /* Deep Woodland Charcoal (hsl(143, 24%, 9%)) */
  --pine-deep: #1c2e22;           /* Dark Forest Moss for cards (hsl(142, 24%, 15%)) */
  --pine-medium: #2a4232;         /* Accent Forest (hsl(142, 21%, 21%)) */
  --pine-light: #6b8f77;          /* Soft Sage Green (hsl(140, 15%, 49%)) */
  --wood-cedar: #bca085;          /* Light Cedarwood highlight (hsl(30, 30%, 63%)) */
  --wood-cedar-hover: #a88a6d;    /* Cedarwood hover states */
  --bg-dark: #121e16;             /* Core background */
  --bg-card: #1c2e22;             /* Surface panels */
  --text-light: #f3f6f3;          /* High-Contrast Cozy White */
  --text-muted: #b4c2b7;          /* Silver-Sage for body text */
  --border-dark: rgba(243, 246, 243, 0.08);
  --border-active: rgba(243, 246, 243, 0.18);
  
  /* Fonts */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-clean: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

.text-accent {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pine-light);
  margin-bottom: 0.5rem;
  display: block;
}

.highlight {
  color: var(--wood-cedar);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-clean);
  text-decoration: none;
}

.btn-primary {
  background-color: #ffffff;
  color: var(--pine-twilight);
}

.btn-primary:hover {
  background-color: #e5ede7;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(243, 246, 243, 0.05);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  background-color: rgba(243, 246, 243, 0.15);
  border-color: var(--border-active);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background-color: #217031;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #164f21;
  transform: translateY(-1px);
}

/* Section Containers */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 5px;
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 30, 22, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
  transition: var(--transition-clean);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  background-color: var(--pine-medium);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-clean);
}

nav ul li a:hover {
  color: var(--text-light);
}

.nav-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-light);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 130px;
  padding-bottom: 60px;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(243, 246, 243, 0.04);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-pricing-box {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.price-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-pill .pill-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  font-weight: 600;
}

.price-pill .pill-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-top: 2px;
}

.price-pill .pill-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Slider Frame */
.hero-visual {
  position: relative;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.hero-img-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-visual-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--text-light);
  z-index: 10;
}

.hero-visual-caption h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-visual-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

/* Highlights Bar */
.highlights-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto 60px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-item i {
  color: var(--text-light);
  font-size: 1.25rem;
  background: var(--pine-medium);
  border: 1px solid var(--border-dark);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.highlight-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Gallery Masonry */
.gallery-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

/* Grid Column Spans */
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  height: 240px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-clean);
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.95;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: var(--text-light);
}

.gallery-card-info h4 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-card-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 15, 11, 0.98);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
}

.lightbox-caption {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 12px;
}

.lightbox-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--text-light);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--wood-cedar);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(243, 246, 243, 0.06);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--wood-cedar);
  color: var(--pine-twilight);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }


/* Shabbat & Interior Grid */
.shabbos-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.shabbos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.shabbos-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.shabbos-desc-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.shabbos-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.shabbos-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.shabbos-card-icon {
  background-color: var(--pine-medium);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shabbos-card.highlighted-minyan {
  border-left: 3px solid var(--wood-cedar);
}

.shabbos-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.shabbos-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shabbos-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--wood-cedar);
  background-color: rgba(188, 160, 133, 0.1);
  border: 1px solid rgba(188, 160, 133, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

/* Shabbat Visual Collage */
.shabbos-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 460px;
}

.collage-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--bg-card);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-1 {
  grid-column: 1 / 8;
  grid-row: 1 / 8;
  z-index: 2;
}

.collage-2 {
  grid-column: 6 / 13;
  grid-row: 4 / 12;
  z-index: 1;
}

.collage-3 {
  grid-column: 2 / 6;
  grid-row: 7 / 13;
  z-index: 3;
}


/* Value / Cost Savings */
.value-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.comparison-card {
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-dark);
}

.card-saving {
  background-color: var(--bg-card);
}

.savings-amount-banner {
  margin: 16px 0;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  border: 1px dashed var(--pine-light);
}

.savings-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.savings-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comparison-list li i {
  color: var(--pine-light);
}

/* Local Activities */
.local-activities-wrapper {
  margin-top: 60px;
}

.activities-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.activity-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pine-medium);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.15rem;
}

.activity-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

.activity-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* Rates Calculator Widget */
.calc-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-intro h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.calc-intro-p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  background: var(--pine-medium);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-body h5 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-body p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
}

.contact-body a {
  text-decoration: none;
  color: inherit;
}

.calculator-widget {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.widget-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.widget-subtitle {
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.calc-group {
  margin-bottom: 16px;
}

.calc-label {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-dark);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
}

.toggle-btn {
  background: none;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-clean);
}

.toggle-btn.active {
  background-color: var(--wood-cedar);
  color: var(--pine-twilight);
}

.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

.calc-input:focus {
  outline: none;
  border-color: var(--wood-cedar);
  background-color: var(--pine-twilight);
}

.price-summary-panel {
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 20px 0;
  border: 1px solid var(--border-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.summary-row.total-row {
  border-top: 1px dashed var(--border-dark);
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

.summary-row.total-row span:first-child {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
}

.summary-row.total-row span:last-child {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-light);
}

.savings-tag {
  color: #81c784;
  font-weight: 700;
}

.calc-book-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}


/* FAQs Accordion */
.faq-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: var(--transition-clean);
}

.faq-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--pine-light);
  transition: var(--transition-clean);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-dark);
}

.faq-body-content {
  padding: 20px 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  max-height: 400px;
}


/* Footer */
footer {
  background-color: #0c140e;
  color: var(--text-muted);
  padding: 50px 20px 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(243, 246, 243, 0.04);
  border: 1px solid var(--border-dark);
  color: var(--wood-cedar);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-links h4 {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition-clean);
}

.footer-links ul li a:hover {
  color: var(--text-light);
}

.footer-contact h4 {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p i {
  color: var(--wood-cedar);
  width: 14px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(244, 247, 244, 0.25);
}

.footer-bottom a {
  color: rgba(244, 247, 244, 0.25);
  text-decoration: none;
}


/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 110px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-desc {
    max-width: 600px;
  }
  .hero-pricing-box {
    width: 100%;
    max-width: 440px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    height: 340px;
  }
  .highlights-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shabbos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .shabbos-collage {
    height: 360px;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Reset masonry spans for tablets */
  .col-4, .col-5, .col-7, .col-8, .col-6 {
    grid-column: span 6;
  }
  
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-pricing-box {
    flex-direction: column;
    gap: 12px;
  }
  
  .highlights-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  
  .col-4, .col-5, .col-7, .col-8, .col-6 {
    grid-column: span 12;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .input-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
