/* ----------------------------------
   French Walk — Final Clean Version
---------------------------------- */

html, body {
  margin: 0;
  height: 100%;
}

/* Full-bleed background */
.hero {
  min-height: 100vh;
  width: 100%;
  background: url("hero.jpg") center center / cover no-repeat;
  position: relative;
}

/* Layout container */
.content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;

  /* LOWER placement */
  padding-top: 48vh;

  padding-left: 24px;
  padding-right: 24px;
}

/* Text width constraint */
.lockup {
  max-width: 720px;
}

/* Title */
h1 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: white;
}

/* Supporting text */
p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  color: white;
}

/* Email underline */
.email {
  display: inline-block;
  margin-top: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

/* ----------------------------------
   Mobile Adjustments
---------------------------------- */

@media (max-width: 768px) {

  .content {
    padding-top: 54vh; /* slightly lower on mobile */
  }

  h1 {
    font-size: 34px;
  }

  p {
    font-size: 15px;
  }
}