html, body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: "Pinyon Script";
    font-weight:300;

background-color: white;

}

::-webkit-scrollbar { 
    display: none; 
}

@font-face {
  font-family: 'Pinyon Script', cursive;
}

@font-face {
  font-family: 'nimbus-sans-l_bold-condensed';
    src: url(fonts/nimbus-sans-l_bold-condensed.ttf);
}

@font-face {
  font-family: 'nimbus-sans-l_regular-condensed';
    src: url(fonts/nimbus-sans-l_regular-condensed.ttf);
}


@font-face {
  font-family: 'Vulf-Mono-LightItalic';
    src: url(fonts/Vulf-Mono-LightItalic.ttf);
}




@font-face {
  font-family: arrow;
  src: url(imgs/arrow.otf);
}


.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <700>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.public-sans-<uniquifier> {
  font-family: "Public Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/* BREAKPONT 1 BREAKPONT 1 BREAKPONT 1 BREAKPONT 1 BREAKPONT 1 BREAKPONT 1 BREAKPONT 1 BREAKPONT 1 BREAKPONT 1   */



@media screen and (min-width:850px){



  body {
    margin: 0;
    font-family: "Public Sans", sans-serif;
    font-weight: 300;
  }

  /* ================= NAV ================= */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 16px;
    box-sizing: border-box;

    font-size: 18px;
    text-transform: uppercase;

    z-index: 1000;
    background-color: #FFFFFF;
    overflow: visible;
  }

  .nav-left,
  .nav-right {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  #nav a {
    text-decoration: none;
    color: black;
  }

  .nav-left {
    position: relative;
  }

  .nav-item {
    position: relative;
    display: inline-block;
  }

  .nav-trigger {
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  .dropdown {
    position: absolute;
    left: -14px;
    top: calc(100% + 2px);

    display: flex;
    flex-direction: column;
    gap: 8px;

    min-width: 150px;
    padding: 16px 0px 24px 15px;
    box-sizing: border-box;

    background: #fff;
    white-space: nowrap;
    z-index: 1001;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.14s ease, visibility 0.14s ease;
  }

  .nav-item::after {
    content: "";
    position: absolute;
    left: -14px;
    top: 100%;
    width: calc(100% + 28px);
    height: 6px;
    background: transparent;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown a {
    display: block;
  }

  /* ================= HEADER ================= */
  #name {
    position: fixed;
    inset: 0;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 180px;
    letter-spacing: -0.2px;
    color: white;
    mix-blend-mode: exclusion;

    z-index: 1100;

    font-family: "nimbus-sans-l_regular-condensed";
    text-transform: lowercase;

    transform-origin: center center;
    will-change: transform;

    /* critical fix */
    pointer-events: none;
  }

  #name a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    pointer-events: auto;
  }

#name {
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  transform: translateZ(0);
}

    /* ================= SUBHEADER ================= */

    #subheader {
      font-size: 4vw;
      line-height: 1.1;
      text-align: center;

      max-width: 32ch;
      margin: 7vw auto 0;
    font-family: 'nimbus-sans-l_regular-condensed';
      padding: 0 20px;
    }

    /* ================= HEADER UNAFE ================= */


.header_tile {
  grid-column: 1 / -1;
    padding: 0 30px;
}

.header_tile img {
  width: 100%;
  display: block;

  height: 88vh;          /* controlled, not too tall */
  object-fit: cover;
  object-position: center;
  margin-top: 62px;
}
.header_tile--hero img {
  width: 100%;
  height: 88vh;
}

.header_tile {
  grid-column: 1 / -1;
}

    /* ================= CONTENT ================= */


.page-content.grid {
  padding: 0 30px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4vw;
  margin-top: 7vw; /* space below subheader (matches your old layout) */

  padding-bottom: 28vh;
}

/* tile container controls height */
.tile {
  max-height: 24vw;   /* 👈 adjust this */

}

/* image fills tile + crops */
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}


/* caption container */
.caption {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;

  font-size: 18px;

}

    /* ================= LINKS ================= */

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

    a:hover {
      color: pink;
    }


    /* ================= FOOTER ================= */

 .footer {
    background: #F1F1F1;
    color: #4a4a4a;
    padding: 40px 30px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
 
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .footer * {
    box-sizing: border-box;
  }

  .footer__inner {
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1.9fr 0.62fr 0.52fr 0.72fr;
    grid-template-areas:
      "hours contact nav right"
      "copyright . . terms";
    column-gap: 72px;
    row-gap: 48px;
    align-items: start;
  }

  .footer__hours {
    grid-area: hours;
    align-self: start;
    white-space: nowrap;
  }

  .footer__contact {
    grid-area: contact;
  }

  .footer__nav {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 330px;
  }

  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    color: #7b7b7b;
    white-space: nowrap;
  }

  .footer__terms {
    grid-area: terms;
    justify-self: end;
    align-self: end;
    color: #7b7b7b;
    white-space: nowrap;
  }

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

  .footer a:hover {
    text-decoration: none;
    opacity: 0.82;
  }

  .footer__instagram {
    margin-bottom: 36px;
    display: inline-block;
  }

  .footer__subscribe {
    width: 100%;
    max-width: 330px;
    height: 45px;
    border: 1px solid #575757;
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: stretch;
    background: transparent;
  }

  .footer__subscribe input {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: #4a4a4a;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 0 14px;
    outline: none;
  }

  .footer__subscribe input::placeholder {
    color: #4a4a4a;
    opacity: 1;
  }

  .footer__subscribe button {
    width: 44px;
    height: 100%;
    border: 0;
    border-left: 0;
    background: transparent;
    color: #4a4a4a;
    font: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .footer__message {
    min-height: 18px;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    text-transform: none;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 1400px) {
    .footer__grid {
      grid-template-columns: 1.3fr 0.8fr 0.7fr 0.9fr;
      column-gap: 48px;
    }

    .footer__right {
      min-width: 290px;
    }

    .footer__subscribe {
      max-width: 290px;
    }
  }

  @media (max-width: 980px) {
    .footer {
      padding: 48px 22px 28px;
    }

    .footer__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "hours contact"
        "nav right"
        "copyright terms";
      column-gap: 34px;
      row-gap: 40px;
    }

    .footer__terms {
      justify-self: start;
    }

    .footer__right {
      min-width: 0;
    }

    .footer__subscribe {
      max-width: 100%;
    }
  }

  @media (max-width: 640px) {
    .footer__grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "hours"
        "contact"
        "nav"
        "right"
        "copyright"
        "terms";
      row-gap: 28px;
    }

    .footer__terms {
      justify-self: start;
    }

    .footer__right {
      width: 100%;
    }

  }



}



@media screen and (max-width: 849px) and (min-width: 600px){

  body {
    font-family: "Public Sans", sans-serif;
    font-weight: 300;
  }

  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px 14px;
    box-sizing: border-box;
    font-size: 16px;
    text-transform: uppercase;
    z-index: 1000;
    background-color: #FFFFFF;
    overflow: visible;
  }

  .nav-left,
  .nav-right {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  #nav a {
    text-decoration: none;
    color: black;
  }

  .nav-left {
    position: relative;
  }

  .nav-item {
    position: relative;
    display: inline-block;
  }

  .nav-trigger {
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  .dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
    padding: 14px 14px 18px 0;
    box-sizing: border-box;
    background: #fff;
    white-space: nowrap;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.14s ease, visibility 0.14s ease;
  }

  .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 6px;
    background: transparent;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown a {
    display: block;
  }

  #name {
    position: fixed;
    inset: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 110px;
    letter-spacing: -0.2px;
    color: white;
    mix-blend-mode: exclusion;
    z-index: 1100;
    font-family: "nimbus-sans-l_regular-condensed";
    text-transform: lowercase;
    transform-origin: center center;
    will-change: transform;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  #name a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    pointer-events: auto;
  }

  .header_tile {
    grid-column: 1 / -1;
    padding: 0 20px;
  }

  .header_tile img {
    width: 100%;
    display: block;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    margin-top: 58px;
  }

  #subheader {
    font-size: 6.5vw;
    line-height: 1.08;
    text-align: center;
    max-width: 20ch;
    margin: 8vw auto 0;
    font-family: 'nimbus-sans-l_regular-condensed';
    padding: 0 20px;
  }

  .page-content.grid {
    padding: 0 20px 22vh;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8vw;
  }

  .tile {
    max-height: 46vw;
  }

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

  .caption {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    font-size: 16px;
  }

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

  a:hover {
    color: pink;
  }

  .footer {
    background: #F1F1F1;
    color: #4a4a4a;
    padding: 36px 20px 24px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .footer * {
    box-sizing: border-box;
  }

  .footer__inner {
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hours contact"
      "nav right"
      "copyright terms";
    column-gap: 28px;
    row-gap: 32px;
    align-items: start;
  }

  .footer__hours { grid-area: hours; white-space: nowrap; }
  .footer__contact { grid-area: contact; }
  .footer__nav {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }
  .footer__copyright {
    grid-area: copyright;
    color: #7b7b7b;
    white-space: nowrap;
  }
  .footer__terms {
    grid-area: terms;
    justify-self: start;
    color: #7b7b7b;
    white-space: nowrap;
  }

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

  .footer a:hover {
    text-decoration: none;
    opacity: 0.82;
  }

  .footer__instagram {
    margin-bottom: 24px;
    display: inline-block;
  }

  .footer__subscribe {
    width: 100%;
    max-width: 100%;
    height: 42px;
    border: 1px solid #575757;
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: stretch;
    background: transparent;
  }

  .footer__subscribe input {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: #4a4a4a;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 0 12px;
    outline: none;
  }

  .footer__subscribe input::placeholder {
    color: #4a4a4a;
    opacity: 1;
  }

  .footer__subscribe button {
    width: 44px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #4a4a4a;
    font: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .footer__message {
    min-height: 18px;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    text-transform: none;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}


@media screen and (max-width: 599px){

  body {
    font-family: "Public Sans", sans-serif;
    font-weight: 300;
  }

  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 16px 12px;
    box-sizing: border-box;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 1000;
    background-color: #FFFFFF;
    overflow: visible;
  }

  .nav-left,
  .nav-right {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #nav a {
    text-decoration: none;
    color: black;
  }

  .nav-left {
    position: relative;
  }

  .nav-item {
    position: relative;
    display: inline-block;
  }

  .nav-trigger {
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  .dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 130px;
    padding: 12px 12px 16px 0;
    box-sizing: border-box;
    background: #fff;
    white-space: nowrap;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.14s ease, visibility 0.14s ease;
  }

  .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 6px;
    background: transparent;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown a {
    display: block;
  }

  #name {
    position: fixed;
    inset: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    line-height: 0.95;
    letter-spacing: -0.2px;
    color: white;
    mix-blend-mode: exclusion;
    z-index: 1100;
    font-family: "nimbus-sans-l_regular-condensed";
    text-transform: lowercase;
    transform-origin: center center;
    will-change: transform;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform: translateZ(0);
    text-align: center;
    padding: 0 16px;
  }

  #name a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    pointer-events: auto;
  }

  .header_tile {
    grid-column: 1 / -1;
    padding: 0 16px;
  }

  .header_tile img {
    width: 100%;
    display: block;
    height: 54vh;
    object-fit: cover;
    object-position: center;
    margin-top: 52px;
  }

  #subheader {
    font-size: 10vw;
    line-height: 1.02;
    text-align: center;
    max-width: 14ch;
    margin: 10vw auto 0;
    font-family: 'nimbus-sans-l_regular-condensed';
    padding: 0 16px;
  }

  .page-content.grid {
    padding: 0 16px 18vh;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 10vw;
  }

  .tile {
    max-height: none;
  }

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

  .caption {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    font-size: 14px;
  }

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

  a:hover {
    color: pink;
  }

  .footer {
    background: #F1F1F1;
    color: #4a4a4a;
    padding: 30px 16px 22px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 11px;
    line-height: 1.5;
  }

  .footer * {
    box-sizing: border-box;
  }

  .footer__inner {
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "hours"
      "contact"
      "nav"
      "right"
      "copyright"
      "terms";
    row-gap: 22px;
    align-items: start;
  }

  .footer__hours { grid-area: hours; }
  .footer__contact { grid-area: contact; }
  .footer__nav {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
  }
  .footer__copyright {
    grid-area: copyright;
    color: #7b7b7b;
    white-space: nowrap;
  }
  .footer__terms {
    grid-area: terms;
    justify-self: start;
    color: #7b7b7b;
    white-space: nowrap;
  }

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

  .footer a:hover {
    text-decoration: none;
    opacity: 0.82;
  }

  .footer__instagram {
    margin-bottom: 18px;
    display: inline-block;
  }

  .footer__subscribe {
    width: 100%;
    max-width: 100%;
    height: 40px;
    border: 1px solid #575757;
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: stretch;
    background: transparent;
  }

  .footer__subscribe input {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: #4a4a4a;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 0 10px;
    outline: none;
  }

  .footer__subscribe input::placeholder {
    color: #4a4a4a;
    opacity: 1;
  }

  .footer__subscribe button {
    width: 40px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #4a4a4a;
    font: inherit;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .footer__message {
    min-height: 18px;
    margin-top: 10px;
    font-size: 11px;
    color: #666;
    text-transform: none;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}