@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

header .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c8a96a;
  text-decoration: none;
  letter-spacing: 0.03em;
}

header .logo span {
  color: #fff;
  font-weight: 400;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover { color: #c8a96a; }

/* ── Hero ── */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  opacity: 0.9;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: #c8a96a;
  color: #111;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover { background: #b8954f; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid #c8a96a;
  color: #c8a96a;
}

.btn-outline:hover { background: #c8a96a; color: #111; }

/* ── Sections ── */
section {
  padding: 4rem 2rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

section p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  color: #444;
}

/* ── City Grid ── */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.city-card {
  background: #f5f0e8;
  border: 2px solid #c8a96a;
  border-radius: 6px;
  padding: 1.2rem 2rem;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.city-card:hover { background: #c8a96a; color: #111; }

/* ── CTA Section ── */
.cta {
  background: #c8a96a;
  color: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.cta h2 { margin: 0 0 0.75rem; font-size: 2rem; }
.cta p  { color: #3a2d00; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }

/* ── Forms ── */
.form-wrap {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}

.form-wrap label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}

.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: #222;
}

.form-wrap textarea { min-height: 140px; resize: vertical; }

.form-wrap button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
}

/* ── About ── */
.about-bio {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
  color: #333;
}

.about-bio h3 { color: #c8a96a; margin-top: 2rem; }

/* ── Area embed ── */
.area-embed {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Back link ── */
.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #c8a96a;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover { text-decoration: underline; }

/* ── Footer ── */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.875rem;
}

footer a { color: #c8a96a; text-decoration: none; }

/* ── Responsive nav ── */
@media (max-width: 600px) {
  header { flex-direction: column; height: auto; padding: 1rem; gap: 0.5rem; }
  nav a { margin-left: 10px; font-size: 0.85rem; }
}
