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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

a { color: #c0392b; text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: 1100px; width: 100%; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
  background: #fff;
  border-top: 4px solid #c0392b;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  color: #c0392b;
  letter-spacing: -0.03em;
}

.logo span { color: #555; font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.main-nav a {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover { background: #f0f0f0; text-decoration: none; color: #c0392b; }
.main-nav a.active { color: #c0392b; }

.btn-red {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-red:hover { background: #a93226; text-decoration: none; color: #fff; }

.main-nav .btn-red { color: #fff; }
.main-nav .btn-red:hover { color: #fff; background: #a93226; }

.btn-red-lg {
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* ── Hero ── */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80') center center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.48) 55%, rgba(0,0,0,0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.75);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

/* Compact subpage hero */
.subhero {
  position: relative;
  background: #2c2c2c center/cover no-repeat;
  padding: 50px 0 44px;
  color: #fff;
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.subhero .container { position: relative; z-index: 2; }

.subhero .crumbs {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.subhero .crumbs a { color: rgba(255,255,255,0.75); }
.subhero .crumbs a:hover { color: #fff; }

.subhero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.subhero p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Trust Strip ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust-icon {
  width: 22px;
  height: 22px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Sections ── */
.section {
  padding: 40px 0 44px;
}

.section-white { background: #fff; }
.section-light { background: #f4f4f4; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: #222;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 52px;
  height: 3px;
  background: #c0392b;
}

.section-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c0392b;
}

/* ── Hotel cards ── */
.hotel-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 4px 24px 16px;
  scrollbar-width: thin;
  scrollbar-color: #bbb #e8e8e8;
}

.hotel-scroll-wrapper::-webkit-scrollbar { height: 8px; }
.hotel-scroll-wrapper::-webkit-scrollbar-track { background: #e8e8e8; border-radius: 4px; }
.hotel-scroll-wrapper::-webkit-scrollbar-thumb { background: #bbb; border-radius: 4px; }

.hotel-cards {
  display: flex;
  gap: 18px;
  width: max-content;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.hotel-card {
  width: 260px;
  flex-shrink: 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.09);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  color: inherit;
}

.hotel-grid .hotel-card { width: 100%; }

.hotel-card:hover {
  box-shadow: 0 5px 16px rgba(0,0,0,0.16);
  transform: translateY(-2px);
  text-decoration: none;
}

.hotel-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.hotel-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(192, 57, 43, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 2px;
}

.hotel-card-body { padding: 14px 16px 16px; }

.hotel-card-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
  line-height: 1.3;
}

.hotel-card-location {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hotel-card-rating {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.4;
}

.hotel-card-rating strong {
  color: #c0392b;
  font-weight: 700;
}

.hotel-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Membership Teaser ── */
.membership-section { padding: 0 0 44px; background: #f4f4f4; }

.membership-teaser {
  position: relative;
  background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1400&q=80') center center / cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
}

.membership-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.9) 0%, rgba(120,30,20,0.93) 100%);
}

.membership-inner {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.membership-text h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.membership-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  line-height: 1.65;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: #c0392b;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  white-space: nowrap;
}

.btn-white:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.28);
  text-decoration: none;
  color: #c0392b;
}

/* ── Popular Destinations ── */
.destinations-section { padding: 40px 0 44px; background: #fff; border-top: 1px solid #ddd; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.dest-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  display: block;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.dest-card:hover img { transform: scale(1.06); }

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%);
}

.dest-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px 16px;
  color: #fff;
}

.dest-label strong { display: block; font-size: 16px; font-weight: 700; }
.dest-label span { font-size: 12px; color: rgba(255,255,255,0.82); }

/* ── Single review page ── */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

.review-main h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  color: #222;
  margin: 22px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e2e2;
}

.review-main h2:first-child { margin-top: 0; }

.review-main p { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 14px; }

.review-main ul { list-style: none; padding: 0; margin: 0 0 14px; }
.review-main ul li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  border-bottom: 1px solid #f0f0f0;
}
.review-main ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 13px;
  width: 8px;
  height: 8px;
  background: #c0392b;
  border-radius: 50%;
}
.review-main ul.cons li::before { background: #888; }

.rating-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-left: 4px solid #c0392b;
  border-radius: 3px;
}

.rating-number {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: #c0392b;
  line-height: 1;
}

.rating-meta { display: flex; flex-direction: column; gap: 2px; }
.rating-meta strong { font-size: 14px; color: #222; font-weight: 700; }
.rating-meta span { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 0.04em; }

.review-aside {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  padding: 18px 20px;
  position: sticky;
  top: 24px;
}

.review-aside h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 900;
  color: #222;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c0392b;
  display: inline-block;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.fact-row:last-child { border-bottom: none; }
.fact-row .label { color: #777; text-transform: uppercase; letter-spacing: 0.03em; font-size: 11px; font-weight: 700; }
.fact-row .value { color: #333; font-weight: 600; text-align: right; }

.review-cover {
  width: 100%;
  height: 340px;
  background: #ccc center/cover no-repeat;
  border-radius: 4px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* ── Content prose page (about, privacy, terms, contact) ── */
.prose {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  padding: 36px 40px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.prose h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 19px;
  font-weight: 900;
  color: #222;
  margin: 26px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}

.prose h2:first-child { margin-top: 0; }

.prose p { font-size: 15px; line-height: 1.75; color: #444; margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose ul li { font-size: 15px; line-height: 1.65; color: #444; margin-bottom: 4px; }
.prose a { color: #c0392b; font-weight: 600; }

.prose-meta { font-size: 12px; color: #888; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Contact form ── */
.contact-form { margin-top: 14px; }
.contact-form .form-field { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #222;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fafafa;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c0392b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
  background: #c0392b;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.contact-form button:hover { background: #a93226; }
.contact-form .form-status {
  margin-top: 14px;
  padding: 10px 14px;
  background: #fdf2f2;
  border-left: 4px solid #c0392b;
  border-radius: 2px;
  font-size: 13px;
  color: #333;
  display: none;
}
.contact-form .form-status.visible { display: block; }

/* ── Footer ── */
.site-footer {
  background: #2b2b2b;
  color: #999;
  font-size: 13px;
  padding: 28px 0 22px;
  border-top: 4px solid #c0392b;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #3a3a3a;
  margin-bottom: 16px;
}

.footer-brand {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px;
  font-weight: 900;
  color: #ccc;
  margin-bottom: 5px;
}

.footer-tagline { font-size: 12px; color: #777; }

.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: #aaa; font-size: 13px; transition: color 0.15s; }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-disclosure { font-size: 12px; color: #666; max-width: 640px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: #666; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card { height: 180px; }
  .review-layout { grid-template-columns: 1fr; }
  .review-aside { position: static; }
}

@media (max-width: 768px) {
  .logo { font-size: 20px; }
  .hero { min-height: 400px; }
  .hero-inner { padding: 50px 0; max-width: 100%; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .subhero h1 { font-size: 26px; }
  .trust-items { gap: 16px; }
  .hotel-card { width: 230px; }
  .hotel-card-img { height: 145px; }
  .membership-inner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .prose { padding: 26px 24px; }
  .review-cover { height: 240px; }
}

@media (max-width: 560px) {
  .main-nav { display: none; }
  .hero { min-height: 340px; }
  .hero-inner { padding: 36px 0; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .trust-item { font-size: 12px; }
  .trust-items { gap: 12px; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dest-card { height: 150px; }
  .dest-label strong { font-size: 14px; }
}

@media (max-width: 400px) {
  .hotel-card { width: 210px; }
  .hotel-card-img { height: 130px; }
  .trust-items { flex-direction: column; align-items: center; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 4px solid #c0392b;
  border-radius: 3px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  padding: 18px 20px 16px;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.cookie-text { font-size: 12px; color: #555; line-height: 1.55; margin-bottom: 12px; }
.cookie-text a { color: #c0392b; font-weight: 600; }

.cookie-actions { display: flex; gap: 8px; }

.cookie-btn {
  flex: 1;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid #c0392b;
  transition: background 0.15s;
}

.cookie-btn-accept { background: #c0392b; color: #fff; }
.cookie-btn-accept:hover { background: #a93226; }
.cookie-btn-decline { background: #fff; color: #c0392b; }
.cookie-btn-decline:hover { background: #fdf2f2; }

@media (max-width: 480px) {
  .cookie-banner { bottom: 12px; right: 12px; left: 12px; max-width: none; }
}

/* ── Modal (Join Membership) ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.modal-overlay.visible { opacity: 1; pointer-events: auto; }

.modal {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 440px;
  border-top: 4px solid #c0392b;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease-out;
  overflow: hidden;
}

.modal-overlay.visible .modal { transform: translateY(0) scale(1); }

.modal-header { padding: 22px 26px 16px; border-bottom: 1px solid #eee; position: relative; }

.modal-eyebrow {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: #222;
  line-height: 1.25;
  margin-bottom: 6px;
}

.modal-subtitle { font-size: 13px; color: #666; line-height: 1.55; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 3px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover { background: #f0f0f0; color: #222; }

.modal-body { padding: 22px 26px 26px; }

.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.form-field input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #222;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fafafa;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.form-field input:focus {
  outline: none;
  border-color: #c0392b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-field input.error { border-color: #c0392b; background: #fdf2f2; }

.form-error { font-size: 12px; color: #c0392b; margin-top: 4px; display: none; }
.form-error.visible { display: block; }

.modal-submit {
  width: 100%;
  background: #c0392b;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
  transition: background 0.15s;
}

.modal-submit:hover { background: #a93226; }

.modal-fineprint { font-size: 11px; color: #888; text-align: center; margin-top: 12px; line-height: 1.5; }

.modal-success { display: none; text-align: center; padding: 30px 26px 34px; }
.modal.success-state .modal-header,
.modal.success-state .modal-body { display: none; }
.modal.success-state .modal-success { display: block; }

.success-icon {
  width: 56px;
  height: 56px;
  background: #c0392b;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  color: #222;
  margin-bottom: 8px;
}

.success-text { font-size: 14px; color: #555; line-height: 1.6; max-width: 320px; margin: 0 auto 18px; }

.success-close-btn {
  display: inline-block;
  background: transparent;
  color: #c0392b;
  border: 1px solid #c0392b;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}

.success-close-btn:hover { background: #fdf2f2; }
