:root{
  --bg: #f5f6f7;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent: #7c5a3a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.08);
  --max: 1080px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* TOP NAV */
.top-nav{
  background: var(--card);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-logo a{
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 18px;
  letter-spacing: .5px;
}

.nav-links{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a{
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: .2s ease;
}

.nav-links a:hover{
  color: var(--accent);
  background: rgba(124, 90, 58, .08);
}

.nav-links a[aria-current="page"]{
  color: var(--accent);
  background: rgba(124, 90, 58, .12);
}

/* Layout */
.wrap{
  max-width: var(--max);
  margin: clamp(18px, 4vw, 48px) auto;
  padding: 0 clamp(14px, 3vw, 28px);
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Header image */
.hero{
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #e5e7eb;
  overflow: hidden;
}
.hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.content{
  padding: clamp(18px, 4vw, 40px);
  text-align: center;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
}

h2{
  margin: 0 0 18px;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--text);
  font-weight: 650;
}

h3{
  margin: 26px 0 12px;
  font-size: clamp(16px, 2vw, 20px);
}

p{
  margin: 0 auto 16px;
  max-width: 70ch;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
}

.hr{
  height: 1px;
  background: rgba(17,24,39,.08);
  margin: 26px auto;
  max-width: 70ch;
}

/* Cards inside content */
.inner-card{
  margin: 18px auto 0;
  max-width: 560px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  background: #fff;
}

.inner-card a{ display:block; }

/* Buttons / links */
.button-link{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(17,24,39,.12);
  transition: .2s ease;
}
.button-link:hover{
  border-color: rgba(124, 90, 58, .45);
  background: rgba(124, 90, 58, .08);
  color: var(--accent);
}

/* BOTTOM NAV / FOOTER */
.bottom-nav{
  margin-top: 60px;
  background: var(--card);
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  box-shadow: 0 -2px 10px rgba(0,0,0,.05);
}

.bottom-links{
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.bottom-links a{
  text-decoration: none;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  transition: .2s ease;
}

.bottom-links a:hover{
  color: var(--accent);
  background: rgba(124, 90, 58, .08);
}

/* Forms */
.form{
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
label{
  display:block;
  font-weight: 600;
  margin: 12px 0 6px;
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.14);
  font: inherit;
  background: #fff;
}
textarea{ min-height: 140px; resize: vertical; }
.small{
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 520px){
  :root{ --radius: 14px; }
  .hero{ aspect-ratio: 16 / 9; }
  .nav-inner{ padding: 0 14px; }
  .nav-links{ gap: 10px; }
}