@charset "UTF-8";
/* Variables */
/* Site Colors */
:root {
  --orange: #FF5900;
  --light-blue: #33CCFF;
  --dark-gray: #494949;
  --light-gray: #bbb;
  --white: #FFF;
}

/* Site Fonts:

Sans-serif: "aktiv-grotesk", Helvetica, Arial, sans-serif;
Sans-serif: "aktiv-grotesk-extended", Helvetica, Arial, sans-serif;
Sans-serif: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
Sans-serif: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;

*/
/* ---------------------------
   Global Reset / Base Styles
---------------------------- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #151515;
}

main {
  flex: 1 0 auto;
}

img {
  height: auto;
  max-width: 100%;
  margin: 0;
}

a:focus img {
  border: 2px solid var(--light-blue);
}

a:focus figcaption {
  color: var(--light-blue);
}

a:hover figcaption {
  color: var(--light-blue);
}

figure {
  margin: 0;
  padding: 0;
}

hr {
  margin: 2em 0;
}

a {
  text-decoration: none;
}

ul, li {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  margin: 0;
  list-style: none;
}

/* ---------------------------
   Accessibility Utilities
---------------------------- */
/* Hide visually but keep accessible to AT */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.visually-hidden:focus, .visually-hidden:active {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  margin: 0;
}

/* Honeypot wrapper */
.hp-wrap {
  position: relative;
}

/* Honeypot field — hidden from users & AT */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

/* ---------------------------
   Copy-to-Clipboard Toast
---------------------------- */
.copy-toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(25, 25, 25, 0.95); /* dark background */
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  pointer-events: none;
  /* match site typography */
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 0.875rem; /* same as footer text */
  font-weight: 400;
  letter-spacing: 0.01em;
  /* motion */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-toast--show {
  opacity: 1;
  transform: translateY(0);
}

/*
Breakpoints
< 478px: mobile portrait
< 767px: mobile landscape
< 991px: tablet
> 1280px: large desktops
> 1440px: xl-desktops
> 1920px: xxl-desktops


MQ Breakpoints:

@media (min-width: 10em) and (max-width: 36em) {
}

@media (min-width: 36.0625em) and (max-width: 48em) {
}

@media (min-width: 48.0625em) and (max-width: 62em) {
}

@media (min-width: 62.0625em) and (max-width: 75em) {
}

@media (min-width: 75.0625em) and (max-width: 87.5em) {
}

@media (min-width: 87.5625em) {
} */
h1 {
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}

h2 {
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}

h3 {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
}

p {
  font-family: "aktiv-grotesk", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03125em;
  margin: 0 0 1em 0;
  color: var(--white);
}

figcaption {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--white);
  margin-top: 0.5em;
}

.accent-orange {
  color: var(--orange);
}

/* Responsive Typography */
h1 {
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  color: var(--light-blue);
  margin: 0;
}

@media only screen and (min-width: 20em) {
  h1 {
    font-size: 2em;
  }
}
@media only screen and (min-width: 48em) {
  h1 {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 62em) {
  h1 {
    font-size: 3em;
  }
}
.sample-head {
  text-align: center;
  margin: 0;
}

.bio-head {
  text-align: left;
  margin: 0 0 0.25em 0;
}

h2 {
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--orange);
  margin: 0 0 0.5em 0;
}

@media only screen and (min-width: 10em) {
  h2 {
    font-size: 1.5em;
  }
}
@media only screen and (min-width: 48em) {
  h2 {
    font-size: 1.75em;
  }
}
@media only screen and (min-width: 62em) {
  h2 {
    font-size: 2em;
  }
}
h3 {
  font-size: 1.0625em;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: var(--light-blue);
  margin: 0 0 0.25em 0;
}

.client-label {
  font-size: 1.65em;
  color: #a0a0a0;
  text-align: center;
  margin: 0.5em 0 0.5em 0;
}

/* Form Styles */
.contact-content {
  padding: 2em 0 0 0;
  margin: auto;
  width: 90%;
}

@media only screen and (min-width: 62em) {
  .contact-content {
    max-width: 48em;
  }
}
@media only screen and (min-width: 20em) {
  form {
    max-width: 36em;
    padding: 1em 0 1em 0;
    margin: auto;
  }
}
label {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  display: block;
  font-weight: 400;
  color: var(--white);
  padding: 0 0 1em 0;
}

input, textarea {
  border: solid 1px var(--white);
  border-radius: 0.15em;
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  padding: 0.35em;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--light-blue);
}

textarea {
  vertical-align: top;
  height: 5em;
}

button {
  background-color: var(--orange);
  border-width: 0;
  border-radius: 0.25em;
  color: var(--white);
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.5em 0.65em 0.5em 0.65em;
  margin-top: 1em;
}

button:focus {
  background-color: var(--light-blue);
}

button:hover {
  background-color: var(--light-blue);
  cursor: pointer;
}

.hidden {
  visibility: hidden;
}

/* Form Styles */
/* Scroll Back Item */
#return-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25em;
  background: rgba(0, 0, 0, 0.7);
  width: 3em;
  height: 3em;
  border-radius: 0.46875em;
  /* start hidden (fade only, not removed from flow) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

#return-to-top i {
  color: var(--white);
  position: relative;
  left: 0.75em;
  top: 0.75em;
  font-size: 1.25em;
  transition: all 0.3s ease;
}

/* visible state toggled by JS */
#return-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hover styles */
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
  color: var(--light-blue);
  top: 0.3125em;
}

/* Focus-visible (keyboard users) */
#return-to-top:focus-visible {
  background: rgba(0, 0, 0, 0.9);
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
}

#return-to-top:focus-visible i {
  color: var(--light-blue);
  top: 0.3125em;
}

@media (prefers-reduced-motion: reduce) {
  #return-to-top,
  #return-to-top i {
    transition: none;
  }
}
/* Scroll Back Item */
/* Grid Layout */
.work-sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(37em, 1fr));
  justify-items: center;
  max-width: 75em;
  width: 100%;
  gap: 1em;
  margin: 1em auto;
}

@media only screen and (min-width: 20em) {
  .work-sample-grid {
    grid-template-columns: repeat(auto-fill, minmax(20em, 1fr));
  }
}
@media only screen and (min-width: 62em) {
  .work-sample-grid {
    grid-template-columns: repeat(auto-fill, minmax(30em, 1fr));
  }
}
/* Grid Layout */
.work-sample {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  max-width: 90em;
  margin: 2em auto 2em auto;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75em;
  object-fit: contain;
  width: 24em;
  height: 18em;
  background-color: var(--white);
  padding: 3em;
}

.cover-item {
  max-width: 22em;
  height: auto;
  margin: 0;
}

#cover-item {
  align-self: center;
  max-width: 60em;
  height: auto;
  margin: 1em;
}

.page-spread {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.page-size {
  max-width: 40em;
  height: auto;
  margin: 0;
}

@media only screen and (min-width: 48em) {
  .page-size {
    max-width: 50%;
  }
}
.calendar-cover {
  display: flex;
  justify-items: center;
  max-width: 37em;
  width: 100%;
  margin: 2em auto 0 auto;
  gap: 0;
}

.calendar-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 37em;
  width: 100%;
  margin: 0;
  gap: 0;
}

.calendar-backcover {
  display: flex;
  justify-items: center;
  max-width: 37em;
  width: 100%;
  margin: 0 auto 4em auto;
  gap: 0;
}

.news-pub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 0 auto;
}

.news_cover {
  max-width: 24em;
  height: auto;
  margin: 1em;
}

.news_inside {
  max-width: 48em;
  height: auto;
  margin: 1em;
}

.news-season {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0.035em;
  color: var(--orange);
  margin: 2em auto 0 auto;
}

.package-promo {
  max-width: 48em;
  height: auto;
}

.web-page {
  width: 100%;
  height: 100%;
  max-width: 65em;
  margin: 1em auto 2em auto;
}

.desktop {
  max-width: 48em;
}

#iMac {
  max-width: 46em;
  margin: 2em;
}

#iPad {
  max-width: 20em;
  margin: 2em;
}

#iPhone {
  max-width: 10em;
  margin: 2em;
}

/* center the footer area itself */
footer {
  display: flex;
  justify-content: center;
}

/* single row when there's room; wrap naturally when there isn't */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: baseline; /* key: align by text baseline */
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2em;
  text-align: center;
  color: #fff; /* footer text + icons */
  background-size: 1em 1em;
  background-color: #202020;
  background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
}

/* text: compact, allowed to wrap but never push icon away */
.footer-info {
  margin: 0;
  font-size: 0.875rem; /* ~14px */
  line-height: 1.3;
  flex: 0 1 auto; /* shrink/wrap; no grow */
  min-width: 0; /* allow wrapping inside flex */
}

/* === Footer icons: clean + aligned === */
.icons {
  display: inline-flex; /* inline with text */
  align-items: center; /* vertical center with text line */
  line-height: 1; /* kill extra top/bottom space */
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.icon-btn {
  display: inline-flex; /* keep baseline + center glyph */
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: inherit; /* white by default from footer */
  cursor: pointer;
}

/* Glyph size + baseline; hover colors the icon only (no blue block) */
.icon-btn i {
  font-size: 1rem; /* tweak 1.10–1.20 to taste */
  line-height: 1;
  display: inline-block;
  vertical-align: -0.125em; /* FA baseline tweak */
  transition: color 0.15s ease, transform 0.15s ease;
}

.icon-btn:hover i {
  color: var(--light-blue);
  transform: translateY(-1px);
}

/* Accessible focus ring without changing icon color */
.icon-btn:focus {
  outline: none;
}

.icon-btn:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* --- Breadcrumbs ---*/
.breadcrumb a {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  color: var(--white);
}

.breadcrumb a:focus {
  color: var(--light-blue);
}

.breadcrumb a:hover {
  color: var(--light-blue);
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 400;
  line-height: 1.5;
  color: var(--orange);
  padding: 0;
  margin: 2em;
}

.breadcrumb li {
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
}

.breadcrumb li::before {
  content: "→";
  color: var(--white);
  margin: 0.5em;
}

.breadcrumb li:first-child::before {
  content: "";
  color: var(--white);
}

/* --- Navigation Menu ---*/
/* --- Desktop ---*/
.header-container {
  /*display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em;*/
  margin: 0;
  background-size: 1em 1em;
  background-color: #202020;
  background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}

.container-icon {
  display: flex;
  align-items: center;
}

.primary-logo, a {
  height: 5em;
  margin-left: 0.5em;
}

.nav-list {
  list-style-type: none;
  margin-right: 1em;
}

.nav-list .list-item {
  display: inline-block;
  margin: 0;
}

.list-item a {
  padding: 0 1em;
  color: var(--white);
}

.list-item a:hover {
  color: var(--light-blue);
}

.list-item a:focus {
  color: var(--light-blue);
}

.menu {
  display: inline-block;
  cursor: pointer;
  display: none;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--white);
  border-radius: 5px;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

/* --- Mobile ---*/
@media all and (max-width: 48em) {
  .navbar {
    flex-direction: column;
    position: relative;
  }
  .navbar .container-icon {
    width: 100%;
  }
  .menu {
    display: block;
    position: absolute;
    right: 1.5em;
    top: 2.25em;
  }
  .nav-list {
    list-style-type: none;
    width: 100%;
    text-align: left;
    margin: 1em 0;
    display: none;
  }
  .nav-list .list-item {
    display: block;
    padding: 1em 0;
    margin: 0;
  }
  .nav-list .list-item:hover {
    background-color: #313131;
    margin: 0;
  }
  .primary-logo, a {
    height: 5em;
    margin-left: 0.5em;
  }
  .nav-active {
    display: block;
  }
}
/* --- Navigation Menu ---*/
/* Layout */
.cover-splash {
  display: flex;
  align-items: center;
  background-image: url(../img/67Sunset.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  height: 100%;
}

.branding-head {
  font-family: "aktiv-grotesk-extended", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.125em;
  color: var(--white);
  margin: 0 0 0.25em 0;
}

@media only screen and (min-width: 20em) {
  .branding-head {
    font-size: 2em;
  }
}
@media only screen and (min-width: 48em) {
  .branding-head {
    font-size: 3em;
  }
}
.branding-subhead {
  font-family: "aktiv-grotesk-extended", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.25em 0;
}

@media only screen and (min-width: 20em) {
  .branding-subhead {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 48em) {
  .branding-subhead {
    font-size: 1.65em;
  }
}
@media only screen and (min-width: 62em) {
  .branding-subhead {
    font-size: 1.85em;
  }
}
.intro {
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin: 0;
}

@media only screen and (min-width: 20em) {
  .intro {
    font-size: 1.125em;
  }
}
@media only screen and (min-width: 48em) {
  .intro {
    font-size: 1.325em;
  }
}
@media only screen and (min-width: 62em) {
  .intro {
    font-size: 1.625em;
  }
}
.intro2 {
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin: 0;
  padding: 1em 0 0 0;
}

@media only screen and (min-width: 20em) {
  .intro2 {
    font-size: 1.0625em;
  }
}
@media only screen and (min-width: 48em) {
  .intro2 {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 62em) {
  .intro2 {
    font-size: 1.325em;
  }
}
.intro-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 24em;
  width: 100%;
  background-color: hsla(240, 100%, 9%, 0.55);
}

.intro-section {
  width: 90%;
}

@media only screen and (min-width: 20em) {
  .intro-section {
    max-width: 90%;
  }
}
@media only screen and (min-width: 48em) {
  .intro-section {
    max-width: 80%;
  }
}
@media only screen and (min-width: 62em) {
  .intro-section {
    max-width: 55em;
  }
}
.bio-section {
  padding: 2em 0 2em 0;
  margin: auto;
  width: 90%;
}

@media only screen and (min-width: 48em) {
  .bio-section {
    max-width: 48em;
  }
}
.about-content {
  padding: 2em 0 0 0;
  margin: auto;
  width: 90%;
}

@media only screen and (min-width: 62em) {
  .about-content {
    max-width: 48em;
  }
}
.work-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 2em;
  max-width: 75em;
  padding: 2em 0 2em 0;
  margin: auto;
}

.preview-logo img {
  object-fit: contain;
  object-position: center;
  border-radius: 0.75em;
  background-color: var(--white);
  width: 18em;
  height: 18em;
  padding: 1em;
}

.preview-image img {
  object-fit: cover;
  object-position: top;
  border-radius: 0.75em;
  width: 18em;
  height: 18em;
}

/*# sourceMappingURL=main.css.map */
