/* Empowered Women Travel — recreated from the original Squarespace site */

:root {
  --ink: #222222;
  --muted: #6b6b6b;
  --accent: #c94f7c;
  --accent-dark: #a33861;
  --bg: #ffffff;
  --bg-soft: #faf7f5;
  --rule: #e8e2dd;
}

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

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.site-header {
  padding: 24px 0 12px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.site-logo img {
  max-width: 340px;
  margin: 0 auto 14px;
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

nav.site-nav a {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 2px;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 20, 0.45);
}

.hero .hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 820px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero p.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  margin: 6px 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.btn:hover { background: var(--accent-dark); color: #fff; }

.btn.ghost {
  background: transparent;
  border: 2px solid #fff;
}

.btn.ghost:hover { background: rgba(255,255,255,0.15); }

/* Sections */
section.band { padding: 70px 0; }
section.band.soft { background: var(--bg-soft); }

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
}

.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 10px; }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
}

/* Photo grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 3px;
}

.grid figure { position: relative; overflow: hidden; border-radius: 3px; }
.grid figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 2px;
}

/* Cards (itinerary destinations, reservations) */
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 24px;
}

.card h3 { margin-bottom: 10px; color: var(--accent-dark); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--rule);
}

.price-table td:last-child { text-align: right; font-weight: 600; }

.includes-list {
  list-style: none;
}

.includes-list li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px dotted var(--rule);
  position: relative;
}

.includes-list li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
}

/* Destination cards (Coming Soon page) */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.dest-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dest-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.dest-card .dest-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-card h3 { margin-bottom: 8px; color: var(--accent-dark); }

.dest-card p { font-size: 0.92rem; color: #444; flex: 1; }

.dest-card .btn {
  margin-top: 16px;
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.72rem;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  align-self: flex-start;
}

/* Forms */
.ewt-form {
  max-width: 640px;
  margin: 0 auto;
}

.ewt-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 18px 0 6px;
}

.ewt-form input[type="text"],
.ewt-form input[type="email"],
.ewt-form select,
.ewt-form textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d9d0c9;
  border-radius: 3px;
}

.ewt-form input:focus,
.ewt-form select:focus,
.ewt-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 79, 124, 0.15);
}

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

.ewt-form button.btn {
  border: none;
  cursor: pointer;
  margin-top: 24px;
  font-family: inherit;
}

.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }

/* FAQ */
.faq dt {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  margin-top: 26px;
}

.faq dd { margin-top: 8px; color: #444; }

/* Footer */
footer.site-footer {
  margin-top: 70px;
  padding: 50px 0 30px;
  background: #1f1b1d;
  color: #cfc8cb;
  font-size: 0.85rem;
}

footer.site-footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

footer.site-footer a { color: #e8a9c2; }

.disclaimer {
  border-top: 1px solid #3a3336;
  padding-top: 24px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: #9a9095;
}

.disclaimer strong { color: #cfc8cb; }

.copyright { margin-top: 20px; font-size: 0.72rem; color: #7d747a; }
