/* IANNONE ECS — Variant 17: Dark Industrial Bento, Generation 2
   Photographic modules. Steel rules. Capability-led business site. */

:root {
  --bg: #101214;
  --panel: #1a1e22;
  --panel-2: #15181b;
  --ink: #f2efe8;
  --muted: #8d9398;
  --note: #c8cccf;
  --accent: #e35c2b;
  --accent-2: #c44d24;
  --steel: rgba(242, 239, 232, 0.14);
  --steel-strong: rgba(242, 239, 232, 0.28);
  --danger: #e07060;
  --focus: #e35c2b;
  --max: 1240px;
  --sans: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "Consolas", "Courier New", monospace;
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 200;
  padding: 0.65rem 0.9rem;
  background: var(--accent);
  color: #140c09;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.wrap {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* -------------------------------------------------------------------------- */
/* Slim steel header                                                          */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #101214;
  border-bottom: 1px solid var(--steel-strong);
  box-shadow: 0 1px 0 var(--steel);
}

.header-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0 28%, var(--steel-strong) 28% 100%);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 3.4rem;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 4.5rem 0 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand strong {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.brand span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-row .brand:hover {
  color: var(--accent);
}

.desktop-nav {
  display: none;
  gap: 1.05rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: var(--muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  position: absolute;
  top: 0.45rem;
  right: 0.75rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.75rem;
  border: 1px solid var(--steel-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-panel {
  display: none;
  border-top: 1px solid var(--steel);
  background: var(--panel);
  padding: 0.5rem 1rem 1.1rem;
}

.nav-panel.is-open {
  display: block;
}

.nav-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--steel);
}

.nav-panel a:last-child {
  border-bottom: 0;
}

@media (min-width: 960px) {
  .header-row {
    grid-template-columns: auto 1fr auto;
    padding: 0 1rem;
  }

  .nav-toggle,
  .nav-panel,
  .nav-panel.is-open {
    display: none;
  }

  .desktop-nav {
    display: flex;
    justify-content: flex-end;
  }
}

/* -------------------------------------------------------------------------- */
/* Type                                                                       */
/* -------------------------------------------------------------------------- */

h1,
h2,
h3 {
  margin: 0 0 0.65em;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}

h3 {
  font-size: 1.15rem;
}

.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead {
  margin: 0;
  color: var(--ink);
  max-width: 42rem;
}

.note {
  max-width: 48rem;
  color: var(--note);
  font-size: 0.95rem;
}

.note--spaced,
.form-hint--spaced {
  margin-top: 1rem;
}

.mono-line {
  margin: 0 0 0.55rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* -------------------------------------------------------------------------- */
/* Buttons / sections                                                         */
/* -------------------------------------------------------------------------- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #160c08;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--steel-strong);
}

.btn-ghost:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: 3.25rem 0;
}

.section.tight {
  padding-top: 1.5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--steel-strong);
}

.section-head h2 {
  margin: 0;
}

.section-head span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.anchor-offset {
  scroll-margin-top: 4.5rem;
}

/* -------------------------------------------------------------------------- */
/* Photographic modules                                                       */
/* -------------------------------------------------------------------------- */

.module {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
}

.meta-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  background: rgba(16, 18, 20, 0.88);
  border-top: 1px solid var(--steel);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background: #0c0e10;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(242, 239, 232, 0.08);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.photo-frame:hover img,
.photo-frame:focus-within img {
  transform: scale(1.03);
}

.photo-frame.contain img {
  object-fit: contain;
  background: #0c0e10;
}

.photo-frame.contain:hover img,
.photo-frame.contain:focus-within img {
  transform: none;
}

/* -------------------------------------------------------------------------- */
/* Homepage hero — two-module split                                           */
/* -------------------------------------------------------------------------- */

.hero {
  padding: 0.7rem 0 0.4rem;
}

.hero-grid {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  min-width: 0;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.2rem 1.5rem;
  order: 1;
  overflow: visible;
}

.hero-copy h1,
.hero-support,
.hero-cred {
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-copy h1 {
  margin: 0;
}

.hero-support {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-cred {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--steel);
  max-width: 38rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.hero-photo {
  order: 2;
  min-height: 16.5rem;
}

.hero-photo img {
  min-height: 16.5rem;
  object-position: 42% 50%;
}

.hero-photo .meta-bar {
  position: relative;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--ink);
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
    min-height: min(85vh, 52rem);
    align-items: stretch;
  }

  .hero-photo {
    order: 1;
    min-height: min(85vh, 52rem);
  }

  .hero-copy {
    order: 2;
    padding: 1.8rem 1.55rem 1.7rem;
  }

  .hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  .hero-photo .meta-bar {
    position: absolute;
  }
}

/* -------------------------------------------------------------------------- */
/* Need rows                                                                  */
/* -------------------------------------------------------------------------- */

.need-stack {
  display: grid;
  gap: 0.45rem;
}

.need {
  display: grid;
  gap: 0;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.need-copy {
  padding: 1.25rem 1.15rem 1.4rem;
  order: 1;
  min-width: 0;
}

.need-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
}

.need-lead {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.need-example {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.need-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.need-figure {
  order: 2;
  min-height: 14rem;
}

.need-figure img {
  height: 14rem;
  min-height: 14rem;
}

.need-figure .meta-bar {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

@media (min-width: 880px) {
  .need {
    grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.72fr);
    align-items: center;
  }

  .need-copy {
    grid-column: 1;
    padding: 1.45rem 1.4rem 1.5rem;
  }

  .need-figure {
    grid-column: 2;
    align-self: center;
    height: 14rem;
    min-height: 14rem;
    width: auto;
    max-width: 100%;
  }

  .need--image-start {
    grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.35fr);
  }

  .need--image-start .need-copy {
    grid-column: 2;
    order: 2;
  }

  .need--image-start .need-figure {
    grid-column: 1;
    order: 1;
  }

  .need-figure img {
    height: 14rem;
    min-height: 14rem;
    max-height: 14rem;
    width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* Process / how I can help                                                   */
/* -------------------------------------------------------------------------- */

.process-grid {
  display: grid;
  gap: 0.45rem;
}

.process-cell {
  padding: 1.05rem 1.05rem 1.15rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-cell h3 {
  margin: 0;
  font-size: 1.08rem;
}

.process-note {
  margin: 1.1rem 0 0;
  max-width: 48rem;
  color: var(--ink);
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------------------------------------------------------------------------- */
/* Experience + closing CTA                                                   */
/* -------------------------------------------------------------------------- */

.experience-module {
  padding: 1.5rem 1.3rem 1.6rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
}

.experience-module h2 {
  margin-bottom: 0.7rem;
}

.experience-module p {
  margin: 0 0 0.9rem;
  max-width: 46rem;
  color: var(--ink);
}

.experience-module p:last-child {
  margin-bottom: 0;
}

.contact-band {
  margin: 0;
  padding: 1.7rem 1.35rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-band h2 {
  margin-bottom: 0.7rem;
  max-width: 22ch;
}

.contact-band p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink);
}

.contact-band .cta-row {
  margin-top: 1.15rem;
}

.mail {
  font-family: var(--mono);
  font-size: 0.86rem;
}

/* -------------------------------------------------------------------------- */
/* Work examples                                                              */
/* -------------------------------------------------------------------------- */

.work-stack {
  display: grid;
  gap: 0.45rem;
}

.work-module {
  display: grid;
  gap: 0;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.work-figure img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.work-figure.contain {
  background: #0c0e10;
}

.work-figure.contain img {
  object-fit: contain;
  height: 18rem;
  background: #0c0e10;
}

.work-copy {
  padding: 1.25rem 1.15rem 1.4rem;
  min-width: 0;
}

.work-copy h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 0.85rem;
}

.work-facts {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.work-facts div {
  display: grid;
  gap: 0.25rem;
}

.work-facts dt {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.work-facts dd {
  margin: 0;
  color: var(--ink);
}

.work-copy .status {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--note);
}

.work-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin: 0;
}

.work-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (min-width: 800px) {
  .work-module {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .work-module--image-end {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .work-module--image-end .work-figure {
    order: 2;
  }

  .work-figure img,
  .work-figure.contain img {
    height: 100%;
    min-height: 18rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Capabilities                                                               */
/* -------------------------------------------------------------------------- */

.cap-lead {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.cap-stack {
  display: grid;
  gap: 0.45rem;
}

.cap-module {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.15rem 1.4rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
}

.cap-module h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cap-module h3 {
  margin: 1.05rem 0 0.4rem;
  font-size: 1.05rem;
}

.cap-module p {
  margin: 0;
  color: var(--ink);
}

.cap-module ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.cap-module li + li {
  margin-top: 0.28rem;
}

.cap-thumb {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 2px;
  background: #0c0e10;
}

.cap-thumb.contain {
  object-fit: contain;
}

.cap-module .work-links {
  margin-top: 1rem;
}

@media (min-width: 800px) {
  .cap-module {
    grid-template-columns: 10.5rem 1fr;
    gap: 1.35rem;
    padding: 1.4rem 1.35rem 1.5rem;
    align-items: start;
  }

  .cap-module.no-thumb {
    grid-template-columns: 1fr;
  }

  .cap-thumb {
    width: 10.5rem;
    height: 10.5rem;
  }
}

.more-link {
  margin: 1.1rem 0 0;
}

/* -------------------------------------------------------------------------- */
/* Inner pages                                                                */
/* -------------------------------------------------------------------------- */

.page-hero {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid var(--steel);
}

.essay {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem 0 4rem;
}

.essay-copy {
  max-width: 42rem;
}

.essay-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.essay-copy p + p {
  margin-top: 1rem;
}

.about-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel);
  max-width: 42rem;
}

.about-photo img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

@media (min-width: 880px) {
  .essay {
    grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.7fr);
    align-items: start;
  }

  .about-photo img {
    height: 22rem;
  }
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 1.4rem;
}

.link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* -------------------------------------------------------------------------- */
/* Form                                                                       */
/* -------------------------------------------------------------------------- */

.form-shell {
  padding: 2rem 0 4.5rem;
}

#contact-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--steel-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-hint {
  margin: 0;
  color: var(--note);
  font-size: 0.92rem;
}

.form-error {
  display: none;
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  color: var(--danger);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.form-error.is-visible {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* 404                                                                        */
/* -------------------------------------------------------------------------- */

.missing {
  min-height: 58vh;
  display: grid;
  align-content: center;
  padding: 3rem 0 4rem;
}

.missing .code {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  color: var(--accent);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--steel-strong);
  background: #0d0f11;
  padding: 1.6rem 0 1.8rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.25rem;
}

.footer-brand strong {
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer a {
  color: var(--muted);
}

.footer a:hover,
.footer-nav a:hover {
  color: var(--ink);
}

.footer-meta {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--steel);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .cta-row .btn {
    flex: 1 1 100%;
  }

  h1 {
    font-size: clamp(1.45rem, 7.2vw, 2.1rem);
  }

  .hero-cred,
  .hero-support {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 1.15rem 1rem 1.25rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Motion                                                                     */
/* -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .photo-frame img,
  .photo-frame:hover img,
  .photo-frame:focus-within img {
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Print                                                                      */
/* -------------------------------------------------------------------------- */

@media print {
  .site-header,
  .nav-toggle,
  .btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }
}
/* Publishing overlay: honeypot + success status. Do not copy back into source designs. */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  display: none;
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
}
.form-success.is-visible {
  display: block;
}
