/* Sandy Beach Orient — Coming Soon Landing
   Palette matches the plan marketing PDF:
   Teal dark #0F4A4E · Gold #F3B940 · Terra #B85A2E · Cream #FBF6EA
*/

:root {
  --teal-dark: #0F4A4E;
  --teal-mid:  #1F6D72;
  --gold:      #F3B940;
  --terra:     #B85A2E;
  --terra-hover: #A04D25;
  --cream:     #FBF6EA;
  --cream-alt: #F5EFE2;
  --ink:       #28251D;
  --ink-soft:  #4A463C;
  --muted:     #7A7974;
  --border:    #D4D1CA;
  --white:     #FFFFFF;

  --font-display: "Instrument Serif", "Cambria", "Georgia", serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(15, 74, 78, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 74, 78, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 74, 78, 0.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --container: 1140px;
  --container-narrow: 720px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; transition: color .2s; }
a:hover, a:focus-visible { color: var(--terra-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Top band ---------- */
.topband {
  background: var(--teal-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
}
.topband__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topband__brand { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.brand-mark {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}
.brand-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}
.topband__rule {
  height: 3px;
  background: var(--gold);
}

/* Language switch */
.lang-switch {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.lang-switch:hover { background: rgba(255,255,255,0.10); }
.lang-switch__pill {
  background: var(--gold);
  color: var(--teal-dark);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-weight: 700;
}
.lang-switch__alt { color: rgba(255,255,255,0.75); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse at top, rgba(243,185,64,0.10), transparent 55%),
    var(--cream);
  text-align: center;
  position: relative;
}
.hero__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  width: clamp(220px, 34vw, 340px);
  height: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  filter: drop-shadow(0 8px 24px rgba(15,74,78,0.08));
}
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin: 0 0 0.9rem;
}
.hero__title {
  font-family: var(--font-display);
  color: var(--teal-dark);
  font-weight: 400;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1.4rem;
  letter-spacing: -0.01em;
}
.hero__title-line { display: block; }
.hero__title-line--em { font-style: italic; color: var(--terra); }

.rule {
  display: block;
  height: 2px;
  background: var(--gold);
  border: 0;
  width: 70px;
  margin: 0.4rem 0 1.6rem;
}
.rule--center { margin-left: auto; margin-right: auto; }
.rule--gold { background: var(--gold); }

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ---------- Buttons ---------- */
.btn {
  appearance: none;
  display: inline-block;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--teal-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--teal-dark);
  color: var(--white);
}

/* ---------- Section titles / shared ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--teal-dark);
  margin: 0;
  text-align: center;
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--white); }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  text-align: center;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

/* ---------- Pitch cards ---------- */
.pitch {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pitch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,74,78,0.25);
}
.card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}
.card__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Info / form ---------- */
.info {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--cream);
}
.info__lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  font-size: 1rem;
  line-height: 1.6;
}
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
  font-weight: 500;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(31,109,114,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

.form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.form__note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
  max-width: 380px;
  line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--teal-dark);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.contact .rule { background: var(--gold); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem 2.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
}
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.contact__value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  word-break: break-word;
}
a.contact__value {
  color: var(--white);
  border-bottom: 1px dotted rgba(255,255,255,0.4);
}
a.contact__value:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
  background: #0A363A;
  color: rgba(255,255,255,0.75);
  padding: 1.4rem 0;
  font-size: 0.82rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer__brand { letter-spacing: 0.08em; font-weight: 500; }
.footer__meta { color: rgba(255,255,255,0.55); }

/* ---------- Motion / reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Fine mobile tuning ---------- */
@media (max-width: 480px) {
  .brand-sub { display: none; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
}
