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

/* ================= DESIGN SYSTEM ================= */
:root {
  --primary: #0b0b0b;
  --accent: #c8a96a;
  --bg: #ffffff;
  --text: #222;
  --max-width: 1100px;
}

/* ================= GLOBAL ================= */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

#wrapper {
  width: 100%;
}

/* ================= HEADER ================= */
header {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.header-top {
  max-width: var(--max-width);
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-img {
  height: 70px;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* ================= NAV ================= */
nav {
  border-bottom: 1px solid #eee;
  background: #fff;
}

nav ul {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  padding: 14px;
}

nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

nav a:hover {
  color: var(--accent);
}

/* ================= HERO ================= */
.hero {
  height: 300px;
  background: url("banner.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero h1 {
  position: relative;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  text-align: center;
}

/* ================= CONTENT ================= */
main {
  max-width: var(--max-width);
  margin: auto;
  padding: 70px 20px;
}

.section-box {
  margin-bottom: 55px;
}

.section-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.section-box p {
  max-width: 750px;
}

/* ================= PROFILE ================= */
.profile-img {
  width: 260px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* ================= FORM ================= */
form {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

input[type="submit"] {
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

input[type="submit"]:hover {
  background: var(--accent);
  color: black;
}

/* ================= FOOTER ================= */
footer {
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  margin-top: 40px;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: var(--accent);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    height: 220px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
}

.video-section {
  padding: 60px 20px;
  text-align: left;
}

.video-section video {
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
}
.work-img,
.fall-img {
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  display: block;
  margin: 20px 0;
}