:root {
  --maxw: 1200px;
  --black: #000000;
  --white: #ffffff;
  --gray: #333333;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #333;
  color: var(--white);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Logo */
.logo-top-wrap {
  width: 100%;
  background: var(--gray);
  padding: 0 10px;
}

.logo-top {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  background: var(--black);
  padding: 30px 0;
  text-align: center;
}

.logo-top img {
  height: 60px;
  width: auto;
}

/* Hero */
.hero-wrap {
  width: 100%;
  background: #333;
  position: relative;
  padding: 0 10px;
}

.hero {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  padding: 20px 40px 60px;
  text-align: center;
}

.hero-overlay h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-overlay h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: clamp(16px, 3vw, 28px);
  margin: 0;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Content */
.content-wrap {
  width: 100%;
  background: var(--gray);
  padding: 0 10px 10px 10px;
}

.content {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  background: var(--black);
  box-sizing: border-box;
  padding-top: 0;
  text-align: center;
  overflow: hidden;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0 0 22px;
  font-size: clamp(28px, 4.5vw, 58px);
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 200;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 18px;
  font-size: clamp(24px, 3.5vw, 42px);
}

h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 16px;
  font-size: clamp(18px, 2.5vw, 26px);
  text-align: left;
}

.body {
  width: 60%;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto;
  opacity: 0.92;
  position: relative;
  text-align: left;
  padding-top: 10px;
}

.body p {
  margin: 0 0 14px;
}

/* Value Props */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 60px auto 0;
  padding: 0 20px;
  max-width: 1100px;
}

.value-prop {
  text-align: center;
}

.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(213, 123, 0, 0.15);
  color: #d57b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid rgba(213, 123, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-prop:hover .value-icon {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(213, 123, 0, 0.4);
}

.value-prop h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--white);
}

.value-prop p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Waitlist Form */
.waitlist-button-wrapper {
  scroll-margin-top: 40px;
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(213, 123, 0, 0.35);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 40px rgba(213, 123, 0, 0.08);
}

.waitlist-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  margin: 0 0 10px;
  text-align: center;
}

.waitlist-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
  text-align: center;
}

.ml-signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.email-cta-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.ml-signup-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 1.1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.05);
  color: #fff;
  min-width: 0;
}

.ml-signup-form input[type="email"]:focus {
  outline: none;
  border-color: #d57b00;
  background: rgba(255,255,255,0.08);
}

.ml-signup-form button {
  height: 56px;
  padding: 0 40px;
  border-radius: 8px;
  border: none;
  background: #d57b00;
  color: #222;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(213, 123, 0, 0.3);
  font-family: "Montserrat", sans-serif;
}

.ml-signup-form button:hover {
  background: #b96500;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(213, 123, 0, 0.4);
}

.ml-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ml-consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.ml-consent-row label {
  cursor: pointer;
}

.signup-success {
  font-size: 1.1rem;
  color: #d57b00;
  font-weight: 600;
}

.signup-error {
  font-size: 0.95rem;
  color: #ff8080;
  margin-top: 12px;
}

/* How It Works */
.how-it-works {
  margin: 60px auto 40px;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 3rem 0;
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: #d57b00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover .step-number {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(213, 123, 0, 0.4);
}

.step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: var(--white);
  text-align: center;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* City Cards */
.cities-header {
  margin: 70px auto 32px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 700px;
}

.cities-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--white);
  text-align: center;
}

.cities-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.cities-header a {
  color: #d57b00;
  text-decoration: none;
}

.cities-header a:hover {
  text-decoration: underline;
}

.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.city-card {
  display: block;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.city-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #222;
}

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

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

.city-card-content {
  padding: 1.5rem;
}

.city-card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
  color: var(--white);
  text-align: left;
}

.city-card-content h3.city-coming-soon {
  color: rgba(255, 255, 255, 0.4);
}

.city-card-dinners-count {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: left;
}

.city-card-coming-soon {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  font-style: italic;
  text-align: left;
}

.explore-by-date {
  text-align: center;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
}

.explore-by-date-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  padding: 1rem 2.5rem;
  background: #d57b00;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(213, 123, 0, 0.3);
}

.explore-by-date-link:hover {
  background: #b96500;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 123, 0, 0.4);
}

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 60px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(213, 123, 0, 0.15);
  color: #d57b00;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .city-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .body {
    width: 70%;
  }

  .hero-overlay {
    width: 80%;
  }

  .value-props {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .city-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .city-card-image {
    height: 200px;
  }
}

@media (max-width: 520px) {
  .body {
    width: 80%;
  }

  .logo-top {
    padding: 20px 0;
  }

  .logo-top img {
    height: 50px;
  }

  .hero-overlay {
    width: 90%;
    padding: 15px 20px 40px;
  }

  .hero-overlay h1 {
    font-size: clamp(24px, 7vw, 40px);
  }

  .hero-overlay h2 {
    font-size: clamp(14px, 4vw, 18px);
  }

  .content {
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 0 !important;
    padding-bottom: 40px !important;
  }

  .value-props {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 30px;
    padding: 0 10px;
  }

  .email-cta-row {
    flex-direction: column;
  }

  .how-it-works {
    margin: 40px auto 30px;
    padding: 30px 10px;
  }

  .how-it-works h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer {
    margin-top: 50px;
    padding: 40px 20px 30px;
  }

  .footer-logo img {
    width: 80px;
  }

  .footer-social {
    gap: 15px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}
