/* ===== CSS Variables ===== */
:root {
  --brown-dark:   #5c3d1e;
  --brown-mid:    #8b5e3c;
  --brown-light:  #c49a6c;
  --amber:        #e8a838;
  --amber-soft:   #f5c97a;
  --cream:        #fdf6ee;
  --cream-dark:   #f5e8d5;
  --wax:          #fffaf3;
  --smoke:        #f0e6d6;
  --border:       #ddc9b0;
  --text:         #3a2510;
  --text-light:   #7a5c3e;
  --shadow-warm:  rgba(92, 61, 30, 0.12);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ===== Animated flame background ===== */
.flame-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.flame {
  position: absolute;
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  opacity: 0.06;
  animation: flicker 8s ease-in-out infinite alternate;
}

.f1 {
  width: 600px; height: 700px;
  background: radial-gradient(ellipse, #e8a838, #c94b00 60%, transparent);
  top: -200px; right: -150px;
  animation-duration: 9s;
}
.f2 {
  width: 400px; height: 500px;
  background: radial-gradient(ellipse, #f5c97a, #e8a838 50%, transparent);
  bottom: -100px; left: -100px;
  animation-duration: 11s;
  animation-delay: -3s;
}
.f3 {
  width: 300px; height: 350px;
  background: radial-gradient(ellipse, #c49a6c, #8b5e3c 50%, transparent);
  top: 40%; left: 30%;
  opacity: 0.04;
  animation-duration: 13s;
  animation-delay: -5s;
}

@keyframes flicker {
  0%   { transform: scale(1) rotate(-2deg); opacity: 0.05; }
  40%  { transform: scale(1.05) rotate(1deg); opacity: 0.08; }
  100% { transform: scale(0.97) rotate(2deg); opacity: 0.05; }
}

/* ===== Layout ===== */
.container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

/* ===== Header ===== */
.site-header {
  text-align: center;
  margin-bottom: 3rem;
}

.candle-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.75rem;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { filter: drop-shadow(0 0 6px #e8a83860); }
  to   { filter: drop-shadow(0 0 18px #e8a83899); }
}

.site-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
}

.site-header h1 em {
  font-style: italic;
  color: var(--brown-mid);
}

.subtitle {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== Alerts ===== */
.alert {
  padding: .9rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.alert-error {
  background: #fdf0ed;
  border: 1px solid #e8a09a;
  color: #8b2e2e;
}

/* ===== Form Sections ===== */
.poll-form { display: flex; flex-direction: column; gap: 1.75rem; }

.form-section {
  background: var(--wax);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  box-shadow: 0 4px 20px var(--shadow-warm);
  transition: box-shadow .3s;
}

.form-section:hover {
  box-shadow: 0 8px 32px rgba(92, 61, 30, 0.16);
}

.section-label {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--amber);
  color: var(--brown-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 2px 12px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}

.form-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.field { margin-bottom: 1.5rem; }
.field:last-child { margin-bottom: 0; }

.field > label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .65rem;
}

.optional {
  font-weight: 300;
  color: var(--text-light);
  font-size: .82rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.2);
}

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

/* ===== Radio & Checkbox Cards ===== */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.radio-card,
.check-card {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  background: var(--cream-dark);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: .5rem 1.1rem;
  font-size: .88rem;
  color: var(--brown-mid);
  font-weight: 400;
  transition: all .2s;
  user-select: none;
}

.radio-card input,
.check-card input {
  accent-color: var(--amber);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.radio-card:hover,
.check-card:hover {
  border-color: var(--amber);
  background: #fff8ee;
  color: var(--brown-dark);
}

.radio-card:has(input:checked),
.check-card:has(input:checked) {
  background: linear-gradient(135deg, #fff3dc, #fde9b8);
  border-color: var(--amber);
  color: var(--brown-dark);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(232, 168, 56, 0.25);
}

/* ===== GDPR Section ===== */
.gdpr-section { border-color: var(--amber-soft); background: #fffcf4; }

.gdpr-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.gdpr-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: .75rem;
}

.gdpr-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.gdpr-box ul li {
  font-size: .85rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}

.gdpr-box ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.gdpr-note {
  margin-top: .85rem;
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--brown-dark);
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color .2s;
}

.consent-label:hover { border-color: var(--amber); }

.consent-label input {
  accent-color: var(--amber);
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== Submit Button ===== */
.submit-wrap {
  text-align: center;
  padding: 1rem 0;
}

.btn-submit {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-dark));
  color: var(--cream);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 0 6px 24px rgba(92, 61, 30, 0.35);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--brown-dark), #3a2510);
  box-shadow: 0 10px 32px rgba(92, 61, 30, 0.5);
  transform: translateY(-2px);
}

.btn-submit:active { transform: translateY(0); }

.btn-icon { font-size: 1.1rem; }

.submit-note {
  margin-top: .85rem;
  font-size: .78rem;
  color: var(--text-light);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-light);
}

.site-footer a { color: var(--brown-mid); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ===== Thank you page ===== */
.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.thank-you-card {
  text-align: center;
  background: var(--wax);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 40px var(--shadow-warm);
  max-width: 500px;
  width: 100%;
}

.big-candle { font-size: 4rem; margin-bottom: 1rem; animation: glow-pulse 3s ease-in-out infinite alternate; }

.thank-you-card h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--brown-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ty-sub {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.ty-note {
  font-size: .88rem;
  color: var(--brown-light);
  font-style: italic;
}

/* ===== Responsive ===== */
@media (max-width: 520px) {
  .form-section { padding: 1.5rem 1rem 1.25rem; }
  .radio-group, .checkbox-group { gap: .5rem; }
  .radio-card, .check-card { font-size: .82rem; padding: .45rem .9rem; }
}

/* ===== Logo & Header ===== */
.logo-area {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-dark), var(--amber-soft));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 16px var(--shadow-warm);
}

/* Ha van éles logó: */
.logo-area img {
  max-height: 100px;
  max-width: 220px;
  object-fit: contain;
}

/* ===== Figyelmeztető sáv ===== */
.notice-banner {
  background: linear-gradient(135deg, #fff8e6, #ffefc4);
  border: 1px solid var(--amber);
  border-radius: 10px;
  padding: .75rem 1.25rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
}

/* ===== Intro kártya ===== */
.intro-card {
  text-align: center;
  margin-bottom: .5rem;
}

.intro-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.intro-card h1 em {
  font-style: italic;
  color: var(--brown-mid);
}

.intro-text {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto .75rem;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.5rem;
  margin-top: .5rem;
}

.contact-info a {
  color: var(--brown-mid);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  transition: color .2s;
}

.contact-info a:hover { color: var(--brown-dark); text-decoration: underline; }

/* ===== Info Section (időpontok, ár) ===== */
.info-section {
  background: var(--wax);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px var(--shadow-warm);
  position: relative;
}

.info-section > .section-label {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--amber);
  color: var(--brown-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 2px 12px;
  border-radius: 20px;
}

/* ===== Workshop kártyák ===== */
.workshop-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.workshop-card {
  background: var(--cream-dark);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.workshop-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 2px 12px;
  margin-bottom: .65rem;
}

.workshop-badge.summer {
  background: linear-gradient(135deg, #ffe08a, #ffb347);
  color: #7a4500;
}

.workshop-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: .5rem;
}

.workshop-desc {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: .75rem;
  line-height: 1.6;
}

.workshop-dates {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .75rem;
}

.workshop-dates li {
  font-size: .88rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.workshop-dates li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.workshop-duration {
  font-size: .82rem;
  color: var(--brown-light);
  font-style: italic;
}

/* ===== Ár blokk ===== */
.price-box {
  background: #fffcf4;
  border: 1.5px solid var(--amber-soft);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .75rem;
}

.price-label {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.price-promo {
  background: linear-gradient(135deg, #fff3dc, #fde9b8);
  border: 1px solid var(--amber);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .88rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.price-includes {
  margin-bottom: 1rem;
}

.price-includes h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--brown-dark);
  margin-bottom: .5rem;
}

.price-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.price-includes ul li {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.special-events {
  font-size: .85rem;
  color: var(--text-light);
  background: var(--cream-dark);
  border-radius: 8px;
  padding: .75rem 1rem;
  line-height: 1.6;
}

/* ===== Helyszín ===== */
.location-box {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-light);
  background: var(--cream-dark);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  line-height: 1.6;
}

.location-box span:first-child { font-size: 1.2rem; }

/* ===== Vertical radio ===== */
.radio-group.vertical {
  flex-direction: column;
}

.radio-card.wide {
  border-radius: 10px;
  padding: .75rem 1.1rem;
}

/* ===== Required csillag ===== */
.req {
  color: #c94b00;
  font-weight: 700;
}

/* ===== Záró szöveg ===== */
.closing-section {
  margin: 1.75rem 0 1rem;
}

.closing-card {
  background: var(--wax);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 16px var(--shadow-warm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.closing-card p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Dokumentumok sáv ===== */
.docs-bar {
  font-size: .82rem;
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
  line-height: 1.8;
}

.docs-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}

.docs-links a {
  color: var(--brown-mid);
  font-weight: 700;
  text-decoration: none;
  font-size: .88rem;
}

.docs-links a:hover { text-decoration: underline; }

/* ===== Responsive kiegészítések ===== */
@media (max-width: 520px) {
  .info-section { padding: 1.5rem 1rem; }
  .price-main { flex-direction: column; gap: .25rem; }
  .closing-card { padding: 1.25rem 1rem; }
  .contact-info { gap: .5rem 1rem; }
}

/* ===== Dátum kártyák ===== */
.date-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.date-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
}

.date-card:hover {
  border-color: var(--brown-mid);
  box-shadow: 0 8px 24px var(--shadow-warm);
  transform: translateY(-3px);
}

.date-card.selected {
  border-color: var(--brown-dark);
  border-width: 2.5px;
  box-shadow: 0 8px 28px rgba(92, 61, 30, 0.3);
}

.date-card-special {
  border-style: dashed;
}

.date-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,18,8,0.72) 0%, rgba(30,18,8,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: .85rem;
  transition: background .2s;
}

.date-card:hover .date-card-overlay {
  background: linear-gradient(to bottom, rgba(30,18,8,0.82) 0%, rgba(30,18,8,0.3) 60%, transparent 100%);
}

.date-card.selected .date-card-overlay {
  background: linear-gradient(to bottom, rgba(30,18,8,0.9) 0%, rgba(30,18,8,0.4) 60%, transparent 100%);
}

.date-card-theme {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .85rem;
  color: var(--amber-soft);
  margin-bottom: .3rem;
  display: block;
}

.date-card-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .15rem;
}

.date-card-time {
  font-size: .82rem;
  color: var(--cream-dark);
  margin-bottom: .6rem;
  opacity: .85;
}

.date-card-btn {
  width: 100%;
  background: var(--amber);
  color: var(--brown-dark);
  border: none;
  border-radius: 30px;
  padding: .5rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.date-card-btn:hover {
  background: var(--amber-soft);
}

.date-card.selected .date-card-btn {
  background: var(--cream);
  color: var(--brown-dark);
}

.date-error {
  color: #c94b00;
  font-size: .85rem;
  margin-top: .5rem;
}

/* ===== Logó ===== */


/* ===== Fizetési notice a gomb felett ===== */
.notice-banner-bottom {
  background: linear-gradient(135deg, #fff8e6, #ffefc4);
  border: 1px solid var(--amber);
  border-radius: 10px;
  padding: .7rem 1.25rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

/* ===== Responsive kiegészítések ===== */
@media (max-width: 520px) {
  .info-section { padding: 1.5rem 1rem; }
  .price-main { flex-direction: column; gap: .25rem; }
  .closing-card { padding: 1.25rem 1rem; }
  .contact-info { gap: .5rem 1rem; }
  .date-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== Kártya akció gombok ===== */
.date-card-actions {
  display: flex;
  gap: .5rem;
}

.date-card-preview-btn {
  flex: 1;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: .5rem .75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.date-card-preview-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.date-card-btn {
  flex: 1;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 8, 0.82);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.lightbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.8);
}

/* Date selection hint */
.date-select-hint {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}




/* Workshop intro text */
.workshop-intro {
  margin-bottom: 1.25rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Perfect for section */
.perfect-for {
  background: var(--cream-dark);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.perfect-for h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: .75rem;
}

.perfect-for ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}

.perfect-for ul li {
  font-size: .88rem;
  color: var(--text-light);
}

@media (max-width: 520px) {
  .perfect-for ul {
    grid-template-columns: 1fr;
  }
}




/* Social icons */
.social-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

/* ===== Logo ===== */
.site-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow-warm);
}

/* ===== Date cards — all equal height ===== */
.date-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.date-card {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
}

/* ===== Price includes — font match and heading fix ===== */
.price-includes h4 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--brown-dark) !important;
  margin-bottom: .6rem;
}

.price-includes ul li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: .95rem !important;
  color: var(--text-light);
  line-height: 1.7;
}

.location-box {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: .85rem 1.25rem;
}

/* ===== Price promo and special events — matching font size ===== */
.price-promo {
  font-size: .92rem !important;
  font-family: 'DM Sans', sans-serif !important;
}

.special-events {
  font-size: .92rem !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ===== Location box — single line ===== */
.location-box {
  display: block !important;
}

/* ===== Phone field — match other inputs ===== */
input[type="tel"] {
  background: var(--wax) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--brown-dark) !important;
}

input[type="tel"]::placeholder {
  color: var(--brown-light) !important;
}

/* ===== Phone input — force same size as other inputs ===== */
input[type="tel"] {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  padding: .75rem 1rem !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ===== Perfect-for icons — line style matching social icons ===== */
.perfect-for ul li {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.perfect-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brown-mid);
}

/* ===== Docs link icon ===== */
.docs-links a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.docs-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brown-mid);
}

/* ===== Date card duration text ===== */
.date-card-duration {
  font-size: .8rem;
  color: var(--cream-dark);
  opacity: .85;
  margin-top: .1rem;
}

/* ===== Name/email fields — match phone field style ===== */
input[type="text"],
input[type="email"] {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  background: var(--wax) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--brown-dark) !important;
  padding: .75rem 1rem !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: var(--brown-light) !important;
}

/* ===== Logo — fits within circle, no overflow ===== */
.site-logo {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: var(--wax);
  border: 2px solid var(--border) !important;
  box-shadow: 0 4px 20px var(--shadow-warm) !important;
  padding: .5rem;
}

/* ===== Textarea — match other fields ===== */
textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  background: var(--wax) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--brown-dark) !important;
  padding: .75rem 1rem !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
}

textarea::placeholder {
  color: var(--brown-light) !important;
}

/* ===== Logo — blends into background, larger ===== */
.site-logo {
  width: 240px !important;
  height: 240px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ===== Price amount — same size as label ===== */
.price-amount-small {
  font-size: 1rem !important;
  font-weight: 700 !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ===== Logo — fully immersed, no border ===== */
.logo-area {
  background: transparent;
}
