:root {
  --gold: #e6a51f;
  --orange: #e8741e;
  --dark: #111;
  --white: #fff;
  --muted: #a29c9c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--white);
  font-family: "Poppins", "Trebuchet MS", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  padding: 12px clamp(24px, 7vw, 100px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}

.logo {
  width: 168px;
  height: 107px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4.2vw, 64px);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav a {
  white-space: nowrap;
}

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

.hero,
.event {
  position: relative;
  min-height: 930px;
  background-image: linear-gradient(rgba(0, 0, 0, .24), rgba(0, 0, 0, .24)), url("https://static.wixstatic.com/media/29be93_8290fdce66ee4db7b6764d90b95fc920~mv2.jpg/v1/fill/w_1265,h_921,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/29be93_8290fdce66ee4db7b6764d90b95fc920~mv2.jpg");
  background-position: center top;
  background-size: cover;
}

.hero-copy {
  position: absolute;
  top: 28%;
  left: clamp(28px, 11vw, 145px);
  width: min(430px, 78vw);
}

h1,
.event h2 {
  margin: 0 0 34px;
  color: var(--white);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: 0;
}

.outline-button,
.filled-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  height: 48px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.filled-button {
  min-width: 240px;
  height: 72px;
  color: #fff;
  background: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 420px;
}

.split-image {
  min-height: 420px;
}

.gold-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 46px clamp(28px, 7vw, 120px);
  color: #fff;
  text-align: center;
  background: var(--gold);
}

.gold-panel h2,
.mission h2,
.about h2,
.gallery h2,
.contact h2 {
  margin: 0 0 34px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.gold-panel p {
  max-width: 330px;
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 300;
}

.mission {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;
  min-height: 1080px;
  color: #fff;
  background: var(--gold);
}

.mission-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 390px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}

.mission p,
.about p {
  margin: 0 0 46px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.mission img {
  object-position: center top;
}

.menu-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  background: #fff;
}

.three-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: #fff;
}

.three-gallery img {
  height: 844px;
}

.about {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 955px;
  color: #fff;
  background: var(--gold);
}

.about > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}

.gallery {
  padding: 70px 8px 90px;
  color: #fff;
  text-align: center;
  background: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 48px;
}

.gallery-grid img {
  height: 614px;
}

.gallery-grid img:nth-child(n+3) {
  height: 520px;
}

.gallery-grid img:nth-child(5) {
  grid-column: 1 / -1;
  height: 440px;
}

.outline-button.dark {
  color: #fff;
  border-color: #fff;
}

.event {
  min-height: 760px;
  background-image: linear-gradient(rgba(0, 0, 0, .32), rgba(0, 0, 0, .32)), url("https://0ee03066.thejuicemarket.pages.dev/media/29be93_17191999ff5f4596a785b45a82abe809-mv2_jpg/v1/fill/w_980-h_653-al_c-q_85-usm_0.66_1.00_0.01-enc_auto/29be93_17191999ff5f4596a785b45a82abe809-mv2.jpg");
  background-position: center;
}

.contact {
  padding: 96px 24px 40px;
  color: #fff;
  text-align: center;
  background: var(--gold);
}

.contact form {
  width: min(700px, 100%);
  margin: 0 auto 56px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  margin: 0 0 14px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, .9);
  padding: 14px 10px;
  color: #fff;
  background: transparent;
  font: 16px Arial, sans-serif;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .9);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  width: 150px;
  height: 54px;
  border: 0;
  color: #111;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 54px 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: var(--gold);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.email,
.copyright {
  display: block;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 18px;
}

.copyright {
  font-size: 15px;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 12px 16px 18px;
  }

  .logo {
    width: 138px;
    height: 88px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    font-size: 12px;
  }

  .hero,
  .event {
    min-height: 620px;
  }

  .hero-copy {
    top: 22%;
    left: 24px;
  }

  .split,
  .mission,
  .about,
  .three-gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .split-image,
  .three-gallery img,
  .gallery-grid img,
  .gallery-grid img:nth-child(n+3),
  .gallery-grid img:nth-child(5) {
    height: 420px;
  }

  .mission,
  .about {
    min-height: 0;
  }

  .mission img {
    min-height: 680px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
