/* Hook House Kitchen — Coming Soon
   Palette pulled from the actual logo + Coming Soon banner:
   deep navy field, chrome hook, cyan-to-blue accents. */

:root {
  --navy-deep:   #0A0E2E;   /* background, darkest corner */
  --navy:        #131A46;   /* background, center glow */
  --cyan:        #22C3E6;   /* primary accent — the "KITCHEN" cyan */
  --blue:        #3C6FE0;   /* secondary accent — the wave blue */
  --bone:        #F4EDDC;   /* warm off-white for body text */
  --white:       #FFFFFF;
  --rule:        rgba(34, 195, 230, 0.35);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--bone);
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% 30%, var(--navy) 0%, var(--navy-deep) 72%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 22px 48px;
  line-height: 1.5;
}

/* Thin cyan keyline, echoing the banner border. */
body::before {
  content: "";
  position: fixed;
  inset: 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
}

.wrap {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

/* ---------- Hero ---------- */

.logo {
  width: 285px;
  max-width: 78%;
  height: auto;
  margin: 0 auto 22px;
  display: block;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(30px, 8.6vw, 37px);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.lede {
  font-size: 16px;
  color: rgba(244, 237, 220, 0.82);
  max-width: 23em;
  margin: 0 auto;
}

.kicker {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* ---------- The three promises — side by side, phone included ---------- */

.promises {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.promise {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 16px 12px 18px;
}

/* The accent rule now sits inside the box, under the heading. */
.promise h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  padding-bottom: 10px;
  line-height: 1.3;
  border-bottom: 2px solid var(--blue);
}

.promise:nth-child(2) h2 { border-bottom-color: var(--cyan); }

.promise p {
  font-size: 12px;
  color: rgba(244, 237, 220, 0.7);
  line-height: 1.5;
  text-wrap: pretty;
}

/* ---------- Signup ---------- */

.signup {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signup h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.signup-note {
  font-size: 13px;
  color: rgba(244, 237, 220, 0.6);
  margin-bottom: 18px;
}

.mc-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;           /* 16px stops iOS zooming on focus */
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 15px 16px;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.email-input::placeholder { color: rgba(244, 237, 220, 0.4); }

.email-input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--cyan);
  border: none;
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.06s ease;
}

.submit-btn:hover { background: #4AD4F0; }
.submit-btn:active { transform: translateY(1px); }

.submit-btn:focus-visible,
.email-input:focus-visible,
.address:focus-visible,
.social:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Inline response after submitting the signup form. */
.form-msg {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-msg.is-visible { opacity: 1; }
.form-msg.is-success { color: var(--cyan); font-weight: 600; }
.form-msg.is-error   { color: #FFB4A2; }

.submit-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ---------- Footer ---------- */

footer {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.find-us {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 220, 0.45);
  margin-bottom: 10px;
}

.address {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bone);
  text-decoration: none;
  transition: color 0.15s ease;
}

.address:hover { color: var(--cyan); }

/* Instagram handle — sits above the signup, as a softer second ask. */
.social-line {
  margin-top: 36px;
  text-align: center;
}

.social {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}

.social:hover { border-bottom-color: var(--cyan); }

.social-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(244, 237, 220, 0.55);
}

.footer-note {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 220, 0.38);
}

/* ---------- Utility ---------- */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Desktop ---------- */

@media (min-width: 760px) {
  .wrap { max-width: 660px; }
  .logo { width: 360px; }
  .lede { font-size: 17px; }
  h1 { font-size: 39px; }

  .promises {
    gap: 14px;
    margin-top: 44px;
  }
  .promise { padding: 22px 18px 24px; }
  .promise h2 { font-size: 12px; letter-spacing: 0.14em; }
  .promise p  { font-size: 13.5px; }
  .kicker { font-size: 17px; }

  .mc-form { flex-direction: row; gap: 8px; }
  .email-input { text-align: left; }
  .submit-btn { width: auto; white-space: nowrap; padding: 16px 26px; }

  .signup { max-width: 460px; margin-left: auto; margin-right: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
