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

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

:root {
  --bg: #f0ebe0;
  --bg-card: #e8e1d3;
  --fg: #1a3a2a;
  --fg-muted: #4a6a55;
  --border: #d5cdb8;
  --primary: #1a3a2a;
  --primary-fg: #f5f0e6;
  --secondary: #d5cdb8;
  --secondary-fg: #1a3a2a;
  --accent: #b8954a;
  --accent-fg: #1a2e20;
  --destructive: #c0392b;
  --radius: 0.5rem;
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --whatsapp: #25D366;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-serif { font-family: var(--font-serif); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 1rem; }
.container-lg { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.section { padding: 5rem 1rem; }
.section-sm { padding: 2.5rem 1rem; }

.bg-main { background: var(--bg); }
.bg-card { background: var(--bg-card); }
.bg-primary { background: var(--primary); color: var(--primary-fg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-fg);
  border-color: var(--secondary);
}
.btn-secondary:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--bg-card); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { opacity: 0.9; }

.btn-amber {
  background: var(--amber-600);
  color: #fff;
  border-color: var(--amber-600);
}
.btn-amber:hover { opacity: 0.9; }

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: none;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }

.btn-outline-white {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-outline-light {
  background: transparent;
  color: var(--primary-fg);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.btn-block { width: 100%; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-body { padding: 1.5rem; }
.card-flat { border: none; box-shadow: none; }
.card-flat:hover { transform: none; box-shadow: none; }

.tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(0,0,0,0.05);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius);
}

.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(184, 149, 74, 0.1);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--fg-muted); }
.text-accent { color: var(--accent); }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }

.leading-relaxed { line-height: 1.7; }

.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(26, 58, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle-lg {
  width: 3rem;
  height: 3rem;
}

.icon-circle svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

.check-list { display: flex; flex-direction: column; gap: 0.75rem; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(26, 58, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-icon-accent { background: rgba(184, 149, 74, 0.2); }
.check-icon-accent svg { color: var(--accent); }

.check-icon svg { width: 0.75rem; height: 0.75rem; color: var(--primary); }

.star { color: var(--amber-400); }
.star-sm { width: 0.75rem; height: 0.75rem; }
.star-md { width: 1rem; height: 1rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.w-full { width: 100%; }
.min-w-180 { min-width: 180px; }

.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: var(--radius); }

.overflow-hidden { overflow: hidden; }
.shrink-0 { flex-shrink: 0; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-half {
  position: relative;
  min-height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-60 {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-tag {
  color: rgba(253, 230, 138, 0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(240, 235, 224, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213, 205, 184, 0.5);
  height: 4rem;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.025em;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 960px) {
  .navbar-links { display: flex; }
}

.navbar-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.navbar-link:hover { color: var(--fg); background: rgba(213, 205, 184, 0.3); }
.navbar-link.active {
  color: var(--fg);
  background: rgba(213, 205, 184, 0.6);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.nav-dropdown-trigger svg {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 1.5rem;
  min-width: 580px;
}

.nav-dropdown-col {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown-link {
  display: block;
  padding: 0.3rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  border-radius: calc(var(--radius) / 2);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-link:hover {
  background: var(--bg-card);
  color: var(--fg);
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .navbar-actions { display: flex; }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg);
}

@media (min-width: 960px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-links { padding: 1rem; }

.mobile-menu-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
  transition: background 0.2s;
}

.mobile-menu-link:hover { background: var(--bg-card); }
.mobile-menu-link.active {
  background: var(--primary);
  color: var(--primary-fg);
}

.mobile-footer {
  padding: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 4rem 1rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; }

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-social svg { width: 1rem; height: 1rem; }

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s;
}

.floating-wa:hover { transform: translateY(-2px); }
.floating-wa svg { width: 1.5rem; height: 1.5rem; }
.floating-wa-text { display: none; }

@media (min-width: 640px) {
  .floating-wa-text { display: inline; }
}

.cta-section {
  padding: 5rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 58, 42, 0.1);
}

.form-input::placeholder { color: var(--fg-muted); }

.form-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.25rem;
  display: none;
}

.form-error.show { display: block; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.success-message {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(26, 58, 42, 0.05);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--fg);
}

.success-message.show { display: flex; }
.success-message svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.two-col img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 1024px) {
  .two-col img { height: 28rem; }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .booking-grid { grid-template-columns: 3fr 2fr; }
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--fg);
  text-align: left;
}

.faq-trigger svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-trigger svg { transform: rotate(180deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.separator {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

.pt-16 { padding-top: 4rem; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.service-img-wrap {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-img-wrap img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.learn-more svg { width: 0.75rem; height: 0.75rem; }

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateY(120%);
  transition: transform 0.3s ease;
  max-width: 360px;
}

.toast.show { transform: translateY(0); }
.toast-title { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.25rem; }
.toast-desc { font-size: 0.75rem; opacity: 0.8; }

.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
}

@media (max-width: 640px) {
  .hide-mobile { display: none !important; }
  .section { padding: 3rem 1rem; }
}
