:root {
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --gray: #b3b3b3;
  --white: #ffffff;
  --accent: #c59d5f;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1599058917212-d750089bc07e") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 2px;
}

.tagline {
  margin: 20px 0 30px;
  font-size: 1.2rem;
  color: var(--gray);
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta:hover {
  background: var(--accent);
  color: var(--black);
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}

.section.dark {
  background: var(--dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* MAP */
.map {
  margin-top: 30px;
  border: 2px solid var(--dark);
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* SOCIALS */
.socials {
  margin-top: 20px;
}

.socials a {
  margin: 0 15px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}

/* LINKS */
a {
  color: var(--accent);
}
