@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

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

:root {
  --white: #FFFFFF;
  --ivory: #FFFDF8;
  --rose-gold: #B76E79;
  --rose-gold-light: #C9868F;
  --soft-pink: #F8E8E8;
  --blush: #FDF5F3;
  --text-primary: #2A2A2A;
  --text-secondary: #888888;
  --text-light: #BBBBBB;
  --border: rgba(183, 110, 121, 0.15);
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Noto Sans KR', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  height: 68px;
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.4s;
}

.nav.scrolled .nav-logo { color: var(--text-primary); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav.scrolled .nav-links a { color: var(--text-primary); }

.nav-cta {
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white) !important;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.nav.scrolled .nav-cta {
  color: var(--rose-gold) !important;
  border-color: var(--rose-gold);
}

.nav.scrolled .nav-cta:hover {
  background: var(--rose-gold);
  color: var(--white) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}

.nav.scrolled .nav-mobile-toggle span { background: var(--text-primary); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 0.25) 0%,
    rgba(42, 42, 42, 0.35) 50%,
    rgba(42, 42, 42, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0.7;
}

.hero-ornament span {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-ornament svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 1;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--soft-pink);
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.4s;
}

.hero-btn:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Section Common ── */
.section {
  padding: 120px 0;
}

.section-label {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
}

.section-divider {
  width: 50px;
  height: 1px;
  background: var(--rose-gold);
  margin: 24px 0;
}

/* ── About / Editorial ── */
.about {
  background: var(--ivory);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* ── Hall Types ── */
.halls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.hall-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.hall-card-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hall-card:hover .hall-card-img {
  transform: scale(1.05);
}

.hall-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(42, 42, 42, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  transition: background 0.4s;
}

.hall-card:hover .hall-card-overlay {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(183, 110, 121, 0.6) 100%
  );
}

.hall-card-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.hall-card-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hall-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}

.hall-card:hover .hall-card-desc {
  transform: translateY(0);
  opacity: 1;
}

.hall-card-capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  font-size: 11px;
  color: var(--white);
  letter-spacing: 1px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s 0.1s;
}

.hall-card:hover .hall-card-capacity {
  transform: translateY(0);
  opacity: 1;
}

/* ── Gallery ── */
.gallery {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(183, 110, 121, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(183, 110, 121, 0.3);
}

.gallery-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s;
}

.gallery-item:hover .gallery-item-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

/* ── Planner ── */
.planner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.planner-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.planner-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.planner-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.planner-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.planner-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.2;
}

.planner-feature h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.planner-feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Catering ── */
.catering {
  background: var(--ivory);
}

.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.catering-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.catering-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.catering-card:hover {
  box-shadow: 0 8px 32px rgba(183, 110, 121, 0.1);
  transform: translateY(-4px);
}

.catering-card svg {
  width: 36px;
  height: 36px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1;
  margin-bottom: 16px;
}

.catering-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.catering-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.catering-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* ── CTA ── */
.cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?w=1920&q=80') center/cover no-repeat;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.55);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta .section-label { color: rgba(255,255,255,0.6); }

.cta .section-title {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-desc {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--rose-gold);
}

.btn-primary:hover {
  background: var(--rose-gold-light);
  border-color: var(--rose-gold-light);
}

.btn-outline {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ── Footer ── */
.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--rose-gold);
  background: var(--rose-gold);
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.6);
}

.footer-social a:hover svg { fill: var(--white); }

.footer-col-title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--rose-gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom a {
  color: var(--rose-gold);
  transition: opacity 0.3s;
}

.footer-bottom a:hover { opacity: 0.7; }

/* ── Features Page ── */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.45);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content .section-label {
  color: rgba(255,255,255,0.6);
}

.page-hero-content .section-title {
  color: var(--white);
  font-size: 52px;
}

/* ── Features Detail ── */
.feature-detail {
  padding: 100px 0;
}

.feature-detail:nth-child(even) {
  background: var(--ivory);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-detail:nth-child(even) .feature-detail-grid {
  direction: rtl;
}

.feature-detail:nth-child(even) .feature-detail-grid > * {
  direction: ltr;
}

.feature-detail-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.feature-detail-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-detail-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--rose-gold);
  border-radius: 50%;
  margin-top: 8px;
}

/* ── Schedule / Calendar ── */
.schedule {
  background: var(--ivory);
}

.schedule-calendar {
  max-width: 800px;
  margin: 60px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}

.schedule-month {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.schedule-nav {
  display: flex;
  gap: 8px;
}

.schedule-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 16px;
  color: var(--text-secondary);
}

.schedule-nav button:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.schedule-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
}

.schedule-weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 16px 32px 24px;
  gap: 4px;
}

.schedule-day {
  text-align: center;
  padding: 10px 4px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 4px;
  transition: all 0.2s;
  cursor: default;
}

.schedule-day.booked {
  background: var(--soft-pink);
  color: var(--rose-gold);
  font-weight: 500;
  cursor: pointer;
}

.schedule-day.available {
  cursor: pointer;
}

.schedule-day.available:hover {
  background: var(--blush);
  color: var(--rose-gold);
}

.schedule-day.empty { visibility: hidden; }

.schedule-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
}

.schedule-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.schedule-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.schedule-legend-dot.booked { background: var(--soft-pink); }
.schedule-legend-dot.available { border: 1px solid var(--text-light); }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form { margin-top: 40px; }

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--rose-gold);
  transition: all 0.3s;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--rose-gold-light);
}

.contact-info {
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-item h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-map {
  margin-top: 40px;
  width: 100%;
  height: 280px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.contact-map-placeholder {
  text-align: center;
}

.contact-map-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1;
  margin-bottom: 12px;
}

.contact-map-placeholder p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 36px; }
  .about-grid,
  .planner-grid,
  .catering-inner,
  .contact-grid,
  .feature-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-detail:nth-child(even) .feature-detail-grid { direction: ltr; }
  .halls-grid { grid-template-columns: 1fr; }
  .hall-card-img { height: 400px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 32px 24px;
    gap: 20px;
    backdrop-filter: blur(12px);
  }

  .nav-links.active a { color: var(--text-primary); }
  .nav-links.active .nav-cta {
    color: var(--rose-gold) !important;
    border-color: var(--rose-gold);
  }

  .hero { min-height: 600px; }
  .hero-title { font-size: 38px; letter-spacing: 2px; }
  .hero-subtitle { font-size: 12px; }
  .section { padding: 80px 0; }
  .section-title { font-size: 30px; }

  .about-image img,
  .planner-image img,
  .catering-image img,
  .feature-detail-img img { height: 360px; }

  .about-image::before { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .about-stat-num { font-size: 28px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

  .catering-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta { padding: 100px 0; }

  .page-hero { height: 40vh; min-height: 320px; }
  .page-hero-content .section-title { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-btn { padding: 14px 36px; }
  .hall-card-img { height: 320px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .schedule-weekdays, .schedule-days { padding: 12px 16px; }
  .schedule-header { padding: 20px 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
