/* ============================================
   Heavenly Delights — Warm & Natural Design
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #faf7f2;
  color: #2a2a2a;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- NAVIGATION ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #faf7f2;
  border-bottom: 1px solid #e8e2d8;
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2a2a2a;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #2a2a2a;
}

.nav-cta {
  background: #2a2a2a;
  color: #faf7f2 !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e8e2d8;
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  background: #2a2a2a;
  border-radius: 2px;
}

/* ---- CONTACT BAR ---- */

.contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: #2a2a2a;
  font-size: 13px;
  color: #aaa;
}

.contact-bar a {
  color: #f5e6c8;
  text-decoration: none;
  font-weight: 500;
}

.contact-bar a:hover {
  color: #fff;
}

.contact-bar span {
  color: #555;
}

/* ---- HERO ---- */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow,
.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  color: #faf7f2;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: #444; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ccc;
  color: #555;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: #999; color: #2a2a2a; }

.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tags span {
  background: #f0ebe3;
  color: #7a7060;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.hero-photo {
  position: relative;
}

.hero-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #2a2a2a;
  color: #f5e6c8;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-badge small {
  display: block;
  color: #aaa;
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}

/* ---- SECTION COMMON ---- */

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* ---- MENU ---- */

.menu-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  border-top: 1px solid #e8e2d8;
  padding-top: 80px;
}

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

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e2d8;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.menu-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  padding: 16px;
}

.menu-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.menu-card-body p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ---- EVENTS & CALENDAR ---- */

.events-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  border-top: 1px solid #e8e2d8;
  padding-top: 80px;
}

.calendar-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* Calendar widget */
.calendar-widget {
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 80px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.cal-nav {
  background: none;
  border: 1px solid #e8e2d8;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cal-nav:hover {
  background: #f0ebe3;
  color: #2a2a2a;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-day-label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 0 8px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  border-radius: 8px;
  transition: all 0.15s;
}

.cal-day.empty {
  color: transparent;
}

.cal-day.today {
  font-weight: 700;
  color: #2a2a2a;
  background: #f0ebe3;
}

.cal-day.has-event {
  background: #b8860b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cal-day.has-event:hover {
  background: #9a7209;
  transform: scale(1.1);
}

.cal-day.past {
  color: #ccc;
}

/* Events list */
.events-list {
  display: grid;
  gap: 16px;
}

.event-card {
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 56px;
}

.event-date .date-month-day {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: #b8860b;
  line-height: 1.2;
}

.event-date .date-weekday {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.event-details h3 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.event-details p {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.events-note {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* ---- STORY ---- */

.story-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.story-card {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  color: #faf7f2;
}

.story-photo {
  aspect-ratio: 3/4;
  background: #444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 14px;
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5e6c8;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.story-card p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.story-card p:last-child { margin-bottom: 0; }

.story-card strong {
  color: #f5e6c8;
}

/* ---- CTA ---- */

.cta-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.cta-card {
  background: #f0ebe3;
  border-radius: 16px;
  padding: 60px;
  text-align: center;
}

.cta-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-card p {
  color: #666;
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 15px;
}

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

/* ---- PAGE HERO (compact) ---- */

.page-hero {
  max-width: 650px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.page-hero .hero-lead {
  max-width: 100%;
  margin-bottom: 16px;
}

.page-hero a {
  color: #b8860b;
  font-weight: 600;
}

/* ---- INFO CARDS ---- */

.info-cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  padding: 28px;
}

.info-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ---- FORMS ---- */

.form-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.form-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.site-form {
  display: grid;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e8e2d8;
  border-radius: 8px;
  background: #faf7f2;
  font: inherit;
  font-size: 14px;
  color: #2a2a2a;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #b8860b;
}

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

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

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #b8860b;
}

.file-input {
  font-size: 14px;
  color: #666;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: #2a2a2a;
  color: #faf7f2;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.form-submit:hover { background: #444; }

.form-note {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 16px;
}

/* ---- FOOTER ---- */

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  border-top: 1px solid #e8e2d8;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-size: 13px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #555; }

/* ---- ANIMATIONS ---- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: revealUp 700ms cubic-bezier(0.22, 0.75, 0.28, 1) forwards;
}

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

/* ---- RESPONSIVE: TABLET ---- */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 40px 40px;
    gap: 40px;
  }

  .hero-photo { max-width: 400px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .calendar-layout { grid-template-columns: 1fr; }

  .story-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .info-cards { grid-template-columns: 1fr; }
}

/* ---- RESPONSIVE: MOBILE ---- */

@media (max-width: 768px) {
  .header-shell { padding: 10px 20px; }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #faf7f2;
    border-bottom: 1px solid #e8e2d8;
    flex-direction: column;
    padding: 16px 20px;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #e8e2d8;
  }

  .site-nav a:last-child { border-bottom: none; }

  .nav-cta {
    text-align: center;
    padding: 12px 18px;
    border-radius: 6px;
    border-bottom: none !important;
  }

  .hero {
    padding: 40px 20px 32px;
    gap: 32px;
  }

  .hero h1 { font-size: clamp(28px, 8vw, 36px); }

  .hero-photo-main { aspect-ratio: 1; }

  .hero-badge {
    bottom: -12px;
    left: -8px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .menu-section,
  .events-section,
  .story-section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .menu-grid { grid-template-columns: 1fr; }

  .calendar-widget { position: static; }

  .story-card { padding: 32px; }

  .cta-card { padding: 32px; }

  .page-hero {
    padding: 40px 20px 24px;
  }

  .page-hero h1 { font-size: clamp(26px, 7vw, 34px); }

  .info-cards { padding-left: 20px; padding-right: 20px; }

  .form-section { padding-left: 20px; padding-right: 20px; }

  .field-row { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; }

  .site-footer { padding: 24px 20px; }

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

  .footer-links a { margin: 0 12px; }
}
