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

:root {
  --bg: #e8e4dc;
  --surface: #dedad0;
  --surface-2: #d0cbc0;
  --text: #2e2a24;
  --muted: #8a8278;
  --pink: #c0614a;
  --cyan: #4a8fa8;
  --purple: #7a6a9a;
  --gold: #b8922a;
  --accent: #c0614a;
  --border: #c4bfb4;
}

body {
  font-family: 'Georgia', serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Navbar ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 5, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #2a1f4a;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: box-shadow 0.2s, opacity 0.2s !important;
  box-shadow: 0 0 12px #ff2d7866;
}

.nav-cta:hover {
  opacity: 1 !important;
  box-shadow: 0 0 24px #ff2d78aa;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, #ff2d7818 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 50%, #00f5e418 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 100%, #bf5fff22 0%, transparent 55%),
    var(--bg);
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 30%, var(--pink) 70%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Beach scene ── */
.beach-scene {
  width: 100%;
  max-width: 860px;
  margin: 2.5rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.beach-scene svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  transition: box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  box-shadow: 0 0 18px #ff2d7855;
}

.btn-primary:hover {
  opacity: 1;
  box-shadow: 0 0 32px #ff2d78aa, 0 0 64px #bf5fff44;
}

.btn-secondary {
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  box-shadow: 0 0 10px #00f5e422;
}

.btn-secondary:hover {
  opacity: 1;
  box-shadow: 0 0 20px #00f5e466;
}

.btn-eat {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  box-shadow: 0 0 10px rgba(184,146,42,0.2);
}

.btn-eat:hover {
  opacity: 1;
  box-shadow: 0 0 20px rgba(184,146,42,0.45);
}

/* ── Contact ── */
.contact {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.contact-inner {
  width: 100%;
  max-width: 560px;
}

.contact h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact > .contact-inner > p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3d2f62;
}

.form-group select option {
  background: var(--surface-2);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px #00f5e415;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: #0d0920;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
  margin-top: 1rem;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Hero Drop Zone ── */
.hero-drop-zone {
  width: min(480px, 90vw);
  height: 280px;
  border: 2px dashed var(--border);
  border-radius: 8px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-drop-zone:hover,
.hero-drop-zone.drag-over {
  border-color: var(--cyan);
  box-shadow: 0 0 24px #00f5e433, inset 0 0 40px #00f5e408;
}

.hero-drop-zone.has-image {
  border-color: var(--pink);
  box-shadow: 0 0 32px #ff2d7844;
}

.hero-drop-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}

.hero-drop-icon {
  font-size: 1.75rem;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
  line-height: 1;
}

#heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  footer { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
