:root {
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}

/* Search */
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 4px 4px 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  max-width: 720px;
  transition: box-shadow 0.2s;
}

.search-bar:focus-within {
  box-shadow: 0 4px 20px rgba(124,58,237,0.15);
  border-color: #c4b5fd;
}

.search-segment {
  flex: 1;
  padding: 8px 14px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  min-width: 0;
  position: relative;
}

.search-segment:last-of-type { border-right: none; }

.search-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.search-value, .search-input {
  font-size: 13px;
  color: var(--muted);
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-family: inherit;
}

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

.search-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: none; color: white;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--primary-hover); }

/* Guests dropdown */
.guests-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 280px;
  z-index: 50;
  border: 1px solid var(--border);
}

.guests-dropdown.open { display: block; }

.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.guest-row + .guest-row { border-top: 1px solid var(--border); }

.guest-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest-controls button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.guest-controls button:hover { border-color: var(--primary); color: var(--primary); }
.guest-controls span { min-width: 20px; text-align: center; font-weight: 500; }

/* Nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 4px;
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); font-weight: 600; }

.currency-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.currency-btn {
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.15s;
}
.currency-btn.active {
  background: white;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.menu-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

/* Categories */
.categories {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow-x: auto;
}

.categories-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.15s;
  border: none;
  background: transparent;
}
.cat-item:hover { background: #f1f5f9; color: var(--text); }
.cat-item.active {
  color: var(--text);
  border-bottom: 2px solid var(--text);
  border-radius: 0;
  padding-bottom: 6px;
}
.cat-icon { font-size: 22px; }

.cat-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.action-btn:hover, .action-btn.active {
  border-color: var(--primary);
  color: var(--primary);
}

/* Main */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

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

.results-header h2 {
  font-size: 18px;
  font-weight: 600;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

/* Grid & Map */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

#mapView {
  display: none;
  height: 70vh;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

#mapView.active { display: block; }
.listings-grid.hidden { display: none; }

@media (max-width: 1100px) { .listings-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-actions { display: none; }
}
@media (max-width: 520px) { .listings-grid { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: #e2e8f0;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.05); }

.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: white;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.badge-booked {
  background: #b91c1c !important;
  color: #fff !important;
}

.booked-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.book-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}

.heart {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #374151;
  transition: all 0.15s;
}
.heart:hover, .heart.liked { color: #ef4444; }
.heart:hover { transform: scale(1.1); }

.card-body { padding: 14px 6px 10px; }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3px;
  gap: 8px;
}

.card-title { font-size: 15px; font-weight: 600; }
.card-rating { font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.card-desc { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.card-meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.amenity {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f3e8ff;
  color: #6b21a8;
  font-weight: 500;
}
.amenity.off { background: #f1f5f9; color: #94a3b8; }

.card-price { font-size: 15px; font-weight: 700; }
.card-price span { font-weight: 400; color: var(--muted); font-size: 13px; }

/* Detail page */
.detail-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 460px;
}
.detail-gallery .main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.detail-gallery .side-imgs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.detail-gallery .side-imgs img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 20px;
}
.detail-header h1 { font-size: 26px; font-weight: 700; line-height: 1.25; }
.detail-rating { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.detail-location { font-size: 15px; color: var(--muted); margin-bottom: 16px; }

.detail-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
}
.detail-meta span { display: flex; align-items: center; gap: 6px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  margin-top: 28px;
}

.detail-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 28px;
}
.detail-section h2:first-child { margin-top: 0; }
.detail-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.amenity-item .icon { font-size: 20px; }

/* Booking card */
.booking-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.booking-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.booking-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}

.booking-rating {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3e8ff;
  color: #6b21a8;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.form-field {
  padding: 10px 12px;
  border-right: 1px solid var(--border);
}
.form-field:last-child { border-right: none; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
}
.form-field input, .form-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
}

.book-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.book-btn:hover { background: var(--primary-hover); }

.booking-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.modal h3 { font-size: 22px; margin-bottom: 8px; }
.modal p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.modal .book-btn { margin-top: 0; }

/* Empty */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state h3 { font-size: 20px; margin-bottom: 8px; color: var(--text); }

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: white;
}

/* Clubs page */
.clubs-hero {
  text-align: center;
  padding: 60px 20px 40px;
}
.clubs-hero h1 { font-size: 32px; margin-bottom: 12px; }
.clubs-hero p { color: var(--muted); max-width: 500px; margin: 0 auto; }

@media (max-width: 800px) {
  .detail-gallery { grid-template-columns: 1fr; max-height: none; }
  .detail-gallery .side-imgs { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

/* Agent Disclaimer */
.agent-disclaimer {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 20px 0 28px;
  font-size: 14px;
  color: #9a3412;
  line-height: 1.55;
}

/* Nearby Clubs */
.clubs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.club-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
}
.club-item strong { display: block; font-size: 14px; }
.club-type { font-size: 12px; color: #64748b; }
.club-distance {
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  white-space: nowrap;
}


.reviews-list { display: flex; flex-direction: column; gap: 12px; }
.review-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
}
.review-top { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.review-item p { font-size: 14px; color: #334155; line-height: 1.5; margin: 0; }

.card-thumbs {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px;
}
.card-thumbs img {
  height: 42px; width: 100%; object-fit: cover; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.7); background: #e2e8f0;
}
.photo-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 24px;
}
.photo-cell { margin: 0; }
.photo-cell img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; background: #e2e8f0; }
.photo-cell figcaption { font-size: 12px; color: #64748b; margin-top: 6px; }
@media (max-width: 800px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .card-thumbs img { height: 32px; }
}

/* Refined UI */
body { background: #f4f1ec; }
header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.logo-icon { background: linear-gradient(135deg, #111827, #7c3aed); }
.search-bar { border-color: #e7e2d9; box-shadow: 0 8px 30px rgba(15,23,42,.04); }
.category-bar { background: transparent; border-bottom: none; }
.listings-section { padding-top: 8px; }
.listings-grid { gap: 22px; }
.card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,23,42,.12); }
.card-img { height: 230px; }
.card-img img { height: 230px; object-fit: cover; }
.card-thumbs {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  padding: 5px;
  border-radius: 10px;
}
.card-body { padding: 14px 16px 16px; }
.card-title { font-size: 15px; letter-spacing: -.01em; }
.card-price { font-size: 16px; margin-top: 8px; }
.amenities { gap: 6px; }
.amenity { background: #f4f1ec; border: none; font-size: 11px; }
.photo-strip { gap: 12px; }
.photo-cell img { height: 180px; border-radius: 16px; }
.booking-card { border: none; box-shadow: 0 16px 50px rgba(15,23,42,.12); border-radius: 20px; }
.book-btn { border-radius: 12px; letter-spacing: .04em; }
.agent-disclaimer { border-radius: 14px; }
footer { background: transparent; color: #64748b; }

.hero-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-main, .hero-grid figure { margin: 0; position: relative; }
.hero-main img, .hero-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block; background: #e2e8f0;
}
.hero-main { min-height: 420px; border-radius: 18px 0 0 18px; overflow: hidden; }
.hero-main img { height: 420px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.hero-grid figure { overflow: hidden; border-radius: 8px; min-height: 206px; }
.hero-grid img { height: 206px; }
.hero-grid figcaption {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(0,0,0,.62); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 8px; border-radius: 6px;
}
@media (max-width: 800px) {
  .hero-gallery { grid-template-columns: 1fr; }
  .hero-main { border-radius: 16px; }
  .hero-main img { height: 240px; }
}

.card-thumbs{display:none!important}

.hoods {
  padding: 36px 24px 8px;
  max-width: 1400px;
  margin: 0 auto;
}
.hoods-kicker {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.hoods-title {
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.hoods-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hood-card {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: #e2e8f0;
  text-align: left;
}
.hood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.hood-card:hover img,
.hood-card.active img { transform: scale(1.05); }
.hood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.72));
}
.hood-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}
.hood-copy h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hood-copy p {
  font-size: 13px;
  opacity: .92;
  margin-top: 2px;
}
.hood-card.active { outline: 3px solid var(--primary); outline-offset: 2px; }
@media (max-width: 1100px) {
  .hoods-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hood-card { height: 220px; }
}
@media (max-width: 640px) {
  .hoods { padding: 24px 16px 4px; }
  .hoods-title { font-size: 24px; }
  .hoods-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hood-card { height: 180px; border-radius: 16px; }
  .hood-copy h3 { font-size: 16px; }
}

.effort {
  padding: 28px 24px 8px;
}
.effort-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.effort-title {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.effort-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.effort-card {
  background: #f4f1ec;
  border-radius: 22px;
  padding: 24px 22px 26px;
  min-height: 210px;
}
.effort-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ece7ff;
  color: #6d28d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
}
.effort-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.effort-card p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.55;
}
.owners-banner {
  max-width: 1400px;
  margin: 28px auto 8px;
  padding: 0 24px;
}
.owners-inner {
  background: #5b4dff;
  color: #fff;
  border-radius: 28px;
  padding: 36px 40px;
}
.owners-kicker {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 650;
  opacity: .9;
  margin-bottom: 8px;
}
.owners-inner h2 {
  font-size: 32px;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.owners-inner p {
  max-width: 560px;
  opacity: .92;
  margin-bottom: 18px;
}
.owners-btn {
  display: inline-block;
  background: #fff;
  color: #3b2fd4;
  text-decoration: none;
  font-weight: 650;
  padding: 10px 16px;
  border-radius: 999px;
}
@media (max-width: 1100px) {
  .effort-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .effort { padding: 20px 16px 4px; }
  .effort-title { font-size: 24px; }
  .effort-grid { grid-template-columns: 1fr; }
  .effort-card { min-height: 0; }
  .owners-banner { padding: 0 16px; }
  .owners-inner { padding: 24px 20px; border-radius: 20px; }
  .owners-inner h2 { font-size: 24px; }
}

.lang-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
}
.lang-ico { font-size: 12px; font-weight: 700; color: #64748b; }
.lang-select {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: inherit;
}
.caution-note {
  margin-top: 10px;
  font-size: 14px;
  color: #334155;
}
iframe.skiptranslate, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}
body { top: 0 !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { font-size: 0 !important; }

.mocha-banner{max-width:1400px;margin:16px auto 0;padding:0 24px;display:flex;align-items:center;gap:12px;color:#fff;text-decoration:none}
.mocha-banner img{width:64px;height:64px;object-fit:cover;border-radius:12px}
.mocha-banner span{display:block;background:#5b4dff;border-radius:14px;padding:14px 16px;flex:1;font-size:15px}


.hero-grid figcaption,.hero-main figcaption{display:none!important}

.pay-breakdown{border:1px solid #e2e8f0;border-radius:12px;padding:10px 12px;margin:0 0 14px;background:#f8fafc}
.pay-breakdown .pay-row{display:flex;justify-content:space-between;gap:12px;padding:6px 0;font-size:14px}
.pay-breakdown .pay-total-row{border-top:1px solid #e2e8f0;margin-top:6px;padding-top:10px;font-weight:700}


.pay-breakdown{border:1px solid #d4d4f5;border-radius:12px;padding:12px 14px;margin:0 0 16px;background:#f4f2ff}
.pay-breakdown .pay-row{display:flex;justify-content:space-between;gap:12px;padding:7px 0;font-size:14px;color:#334155}
.pay-breakdown .pay-total-row{border-top:1px solid #ddd6fe;margin-top:6px;padding-top:10px;font-weight:700;color:#0f172a;font-size:16px}
.pay-breakdown .breakdown-note{margin:8px 0 0;font-size:12px;color:#64748b}


.has-ticker { padding-bottom: 42px; }
.ms-ticker {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  height: 36px;
  overflow: hidden;
  background: #111827;
  color: #fff;
  border-top: 2px solid #7c3aed;
  display: flex;
  align-items: center;
}
.ms-ticker-track {
  display: flex;
  width: max-content;
  animation: ms-ticker-move 42s linear infinite;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.ms-ticker-track span { padding-right: 48px; }
@keyframes ms-ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.header-top { justify-content: space-between; }
.nav-main { display: flex; align-items: center; gap: 16px; margin-left: 8px; }
.header-search-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 12px;
}
.header-search-row .search-bar { max-width: none; width: 100%; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-main { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-right {
    display: none;
    position: absolute;
    top: 62px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(15,23,42,.12);
    z-index: 220;
  }
  .nav-right.open { display: flex; }
  .header-inner { position: relative; }
  .header-search-row { padding: 0 16px 10px; }
  .search-bar { max-width: none; }
}

.logo-mark { width: 38px; height: 38px; display: block; border-radius: 12px; }
.logo span { font-weight: 800; letter-spacing: .02em; }

.site-footer {
  text-align: center;
  padding: 18px 16px 56px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
