:root {
  --beige: #F4F2EE;
  --taupe: #C4B8A8;
  --grey: #8A8A8A;
  --dark: #6E6E6E;
  --orange: #EB935C;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--beige);
  color: var(--dark);
}

/* HEADER */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 240px;
}

.logo-text .name {
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.logo-text .role {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--grey);
}

nav a {
  margin-left: 30px;
  letter-spacing: 2px;
  font-size: 14px;
  cursor: pointer;
}

nav a.active {
  color: var(--orange);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 80px;
}

.hero-left blockquote {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.reel {
  position: relative;
  width: 420px;
}

.reel img {
  width: 100%;
  border-radius: 4px;
}

.reel-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  padding: 10px 14px;
  font-family: "Playfair Display", serif;
}

.hero-right img {
  width: 100%;
  border-radius: 4px;
}

/* CTA */
.cta {
  text-align: right;
  padding: 80px;
}

.cta h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
}

.cta p {
  letter-spacing: 2px;
  margin: 10px 0 30px;
}

.cta span {
  color: var(--orange);
}

.buttons .btn {
  border: 1px solid var(--taupe);
  padding: 12px 26px;
  margin-left: 12px;
  text-decoration: none;
  color: var(--dark);
}

.buttons .primary {
  background: var(--orange);
  color: white;
  border: none;
}
