:root {
  --ink: #121311;
  --paper: #f2f0e9;
  --white: #fff;
  --acid: #d8ff45;
  --line: rgba(18, 19, 17, 0.18);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.section-pad { padding: 120px 5vw; }

.main-logo {
  height: 160px;
  padding-top: 10px;
}

/* ---------------------------------------------
   HEADER
--------------------------------------------- */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 0 2vw; /* unified with hero-content */
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: .35s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 14px;
}

/* ---------------------------------------------
   NAVIGATION
--------------------------------------------- */

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.bag-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}

.main-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
}

/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,7,.62), rgba(5,8,7,.06) 70%),
              linear-gradient(0deg, rgba(5,8,7,.32), transparent 45%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 5vw; /* matches header padding */
  bottom: 13vh;
  width: min(760px, 75vw);
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 10vw, 154px);
  line-height: .78;
  letter-spacing: -.065em;
  font-weight: 500;
}

.hero h1 em {
  font-family: var(--serif);
  font-weight: 500;
}

.hero-copy {
  max-width: 540px;
  margin: 38px 0 34px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 600;
  transition: .25s ease;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--acid);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--acid);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .13em;
  font-weight: 600;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  height: 50px;
  width: 1px;
  background: rgba(255,255,255,.7);
}

/* ---------------------------------------------
   MEDIA QUERIES
--------------------------------------------- */

@media (max-width: 980px) {
  .section-pad { padding: 90px 5vw; }

  /* Fix logo alignment on tablets */
  .main-logo {
    height: 88px;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
    padding: 0 2vw; /* keep aligned */
    display: flex;
    align-items: center;
  }

  .main-logo {
    height: 90px;
    padding-top: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    color: var(--ink);
    text-shadow: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    transform: translateY(-100%);
    transition: .35s ease;
  }

  .main-nav.open { transform: translateY(0); }

  .hero { min-height: 660px; }
  .hero-content { left: 5vw; right: 6vw; bottom: 12vh; width: auto; }
  .hero h1 { font-size: clamp(64px, 20vw, 100px); }
  .hero-copy { font-size: 16px; margin: 28px 0; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}



/*code below for the contact page*/
/*==================================================
CONTACT PAGE
==================================================*/

.contact-hero {
    position: relative;
    height: 78vh;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
}

.contact-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /*
    Moves the crop slightly downward so more of the
    people are visible while keeping the kite present.
    */
    object-position: center 42%;
}

.contact-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .42),
            rgba(0, 0, 0, .08) 55%,
            rgba(0, 0, 0, .18)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .48),
            transparent 48%
        );
}

.contact-inner {
    position: absolute;
    z-index: 2;
    left: 4.5vw;
    bottom: 12vh;
    width: min(760px, 78vw);
}

.contact-hero .section-kicker {
    margin-bottom: 22px;
    font-size: 13px;
}

.contact-hero h1 {
    margin: 0;
    font-size: clamp(78px, 9vw, 148px);
    line-height: .82;
    letter-spacing: -.065em;
    font-weight: 500;
}

.contact-hero h1 em {
    font-family: var(--serif);
    font-weight: 500;
}

.contact-hero .hero-copy {
    max-width: 610px;
    margin: 34px 0 0;
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
}


/*==================================================
CONTACT FORM AREA
==================================================*/

.contact-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 620px);
    justify-content: center;
    align-items: start;
    gap: 90px;

    max-width: 1180px;
    margin: 0 auto;

    /*
    Much shorter than the original section-pad.
    */
    padding: 72px 5vw 82px;
}

.contact-details h2 {
    margin: 0 0 34px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.contact-details p {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-details strong {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.contact-details a {
    display: inline-block;
    border-bottom: 1px solid var(--line);
    transition: border-color .2s ease;
}

.contact-details a:hover {
    border-color: var(--ink);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 28px;
    padding: 12px 0 16px;

    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);

    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.5;

    transition: border-color .25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(18, 19, 17, .45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ink);
}

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

.contact-form button {
    width: 210px;
    margin-top: 8px;
}


/*==================================================
TABLET AND MOBILE
==================================================*/

@media (max-width: 900px) {

    .contact-hero {
        height: 72vh;
        min-height: 620px;
    }

    .contact-image {
        object-position: 54% center;
    }

    .contact-inner {
        left: 5vw;
        right: 5vw;
        bottom: 10vh;
        width: auto;
    }

    .contact-hero h1 {
        font-size: clamp(64px, 17vw, 104px);
    }

    .contact-hero .hero-copy {
        font-size: 17px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 58px 6vw 68px;
    }
}

@media (max-width: 560px) {

    .contact-hero {
        height: 78svh;
        min-height: 600px;
    }

    .contact-image {
        object-position: 58% center;
    }

    .contact-grid {
        padding-top: 48px;
    }

    .contact-form button {
        width: 100%;
    }
}