:root {
  --dark-teal: #29525f;
  --mid-teal: #c47c75;
  --light-teal: #b4d8d7;
  --beige: #f2ece6;
  --taupe: #6b5149;
  --rose: #c47c75;
  --cocoa: #6b5149;
  --ink: #3e3532;
  --cream: #f8f4f0;
  --paper: #f2ece6;
  --white: #ffffff;
  --max-width: 1200px;
  --serif: "GFS Didot", Didot, "Times New Roman", serif;
  --sans: "Glacial Indifference", "Helvetica Neue", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body, button, input, textarea {
  letter-spacing: 0;
}

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

img {
  display: block;
  width: 100%;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3, .brand, blockquote {
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  color: var(--dark-teal);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  color: var(--dark-teal);
  font-size: 1.5rem;
  line-height: 1.3;
}

.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 1.5rem;
  position: relative;
}

.brand {
  color: var(--dark-teal);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  width: 58px;
}

.nav-logo img {
  display: block;
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.nav-links a, .footer-links a {
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover, .footer-links a:hover {
  color: var(--dark-teal);
}

.button {
  align-items: center;
  background: var(--dark-teal);
  border: 1px solid var(--dark-teal);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 52px;
  padding: 0.9rem 1.8rem;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--mid-teal);
  border-color: var(--mid-teal);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0.75rem 1.25rem;
}

.hero {
  align-items: center;
  color: var(--white);
  display: flex;
  min-height: 760px;
  overflow: hidden;
  padding: 9rem max(1.5rem, calc((100vw - var(--max-width)) / 2)) 5rem;
  position: relative;
}

.hero-image, .hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2000&q=88");
  background-position: center 46%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(25, 59, 59, 0.78) 0%, rgba(41, 82, 95, 0.48) 48%, rgba(41, 82, 95, 0.12) 100%);
}

.hero-content {
  max-width: 710px;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: var(--light-teal);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.08;
  margin-bottom: 1.75rem;
}

.hero h1 em {
  color: var(--light-teal);
  display: block;
  font-weight: 400;
}

.hero-copy {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--dark-teal);
  display: inline-flex;
  font-size: 0.73rem;
  font-weight: 600;
  gap: 0.7rem;
  letter-spacing: 0.1em;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
}

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

.scroll-cue {
  bottom: 2rem;
  font-size: 0.68rem;
  left: 50%;
  letter-spacing: 0.13em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 1;
}

.eyebrow {
  color: var(--rose);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: 8rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.section-heading {
  margin: 0 auto 4.5rem;
  max-width: 760px;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--taupe);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.25fr 0.75fr;
}

.service-card {
  background: var(--paper);
  border: 1px solid rgba(132, 117, 104, 0.18);
  display: flex;
  gap: 2rem;
  min-height: 270px;
  padding: 2.5rem;
}

.service-card:not(.service-featured) {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card p {
  color: #586568;
}

.service-card .text-link {
  margin-top: 1rem;
}

.service-featured {
  background:
    linear-gradient(rgba(41, 82, 95, 0.32), rgba(41, 82, 95, 0.32)),
    url("images/photos/full-proposal-planning.jpeg") 55% 62% / cover no-repeat;
  grid-row: span 2;
  min-height: 564px;
  padding: 4rem;
}

.service-featured > div {
  align-self: flex-end;
}

.service-featured h3 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.service-featured h3,
.service-featured p,
.service-featured .text-link {
  text-shadow: 0 2px 14px rgba(20, 53, 61, 0.72);
}

.service-featured p, .service-featured .text-link {
  color: var(--light-teal);
}

.process {
  align-items: stretch;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding-left: 0;
  padding-right: 0;
}

.process-image {
  background-image: url("images/photos/same-page-method.jpeg");
  background-position: 53% 70%;
  background-size: cover;
  min-height: 720px;
}

.process-content {
  align-self: center;
  margin: 0 auto;
  max-width: 620px;
  padding: 5rem clamp(2rem, 7vw, 7rem);
  width: 100%;
}

.process-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid rgba(132, 117, 104, 0.28);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 2rem 1fr;
  padding: 1.7rem 0;
}

.process-list li > span {
  color: var(--mid-teal);
  font-size: 0.72rem;
  font-weight: 600;
}

.process-list h3 {
  margin-bottom: 0.35rem;
}

.process-list p {
  color: var(--taupe);
  margin-bottom: 0;
}

.portfolio-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 0.7fr;
  margin-bottom: 3.5rem;
}

.portfolio-heading > p {
  color: var(--taupe);
}

.gallery {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: 300px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-chapter-one {
  grid-column: 1 / 8;
  grid-row: 1 / span 2;
}

.gallery-chapter-two {
  grid-column: 7 / 13;
  grid-row: 3 / span 2;
}

.gallery-chapter-three {
  grid-column: 8 / 13;
  grid-row: 2;
}

.gallery-chapter-four {
  grid-column: 1 / 7;
  grid-row: 4;
}

.gallery-chapter-five {
  grid-column: 8 / 13;
  grid-row: 1;
}

.gallery-chapter-six {
  grid-column: 1 / 7;
  grid-row: 3;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-main img {
  object-position: 50% 55%;
}

.gallery-garden {
  object-position: 50% 48%;
}

.gallery-chapter-four img {
  object-position: 42% 52%;
}

.gallery-chapter-five img {
  object-position: 50% 58%;
}

.gallery-chapter-six img {
  object-position: 50% 60%;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  background: linear-gradient(transparent, rgba(19, 49, 53, 0.85));
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 4rem 2rem 1.7rem;
  position: absolute;
  right: 0;
}

.gallery figcaption span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.gallery figcaption strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.contact-section {
  background: var(--beige);
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 0.8fr 1.2fr;
  scroll-margin-top: 78px;
}

.contact-intro > p:not(.eyebrow) {
  color: #596568;
}

.contact-note {
  border-top: 1px solid rgba(132, 117, 104, 0.4);
  margin-top: 3rem;
  padding-top: 2rem;
}

.contact-note > span {
  color: var(--dark-teal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-note ol {
  color: var(--taupe);
  padding-left: 1.2rem;
}

.contact-note li {
  padding: 0.35rem 0 0.35rem 0.5rem;
}

.inquiry-form {
  background: var(--white);
  border: 1px solid rgba(132, 117, 104, 0.15);
  box-shadow: 0 22px 55px rgba(41, 82, 95, 0.08);
  padding: clamp(2rem, 5vw, 4rem);
}

.form-row {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr 1fr;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  color: var(--taupe);
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-group input, .form-group textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(132, 117, 104, 0.45);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.65rem 0;
  transition: border-color 180ms ease;
  width: 100%;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--mid-teal);
  outline: none;
}

.optional {
  color: var(--mid-teal);
  font-size: 0.62rem;
  margin-left: 0.35rem;
}

.submit-button {
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-message {
  font-size: 0.9rem;
  margin: 1rem 0 0;
  min-height: 1.5rem;
  text-align: center;
}

.form-message.success {
  color: var(--mid-teal);
}

.form-message.error {
  color: #9f382d;
}

.site-footer {
  align-items: center;
  background: #1d424c;
  color: var(--light-teal);
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4.5rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.footer-logo {
  align-items: center;
  background: var(--paper);
  display: flex;
  height: 180px;
  justify-content: center;
  width: 180px;
}

.footer-logo img {
  display: block;
  height: 168px;
  object-fit: contain;
  width: 168px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
  justify-self: center;
  text-align: center;
  width: min(100%, 280px);
}

.footer-links a {
  color: var(--light-teal);
}

.copyright {
  font-size: 0.72rem;
  justify-self: center;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery img, .button { transition: none; }
}

@media (max-width: 800px) {
  .section {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 1.05rem;
  }

  .button-small {
    font-size: 0.62rem;
    min-height: 40px;
    padding: 0.65rem 0.85rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(25, 59, 59, 0.8), rgba(41, 82, 95, 0.34));
  }

  .hero-actions, .portfolio-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-grid, .process, .portfolio-heading, .contact-section, .site-footer {
    grid-template-columns: 1fr;
  }

  .service-featured {
    grid-row: auto;
    min-height: 460px;
    padding: 2.5rem;
  }

  .process-image {
    min-height: 450px;
  }

  .process-content {
    padding: 4rem 1.5rem;
  }

  .gallery {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-chapter-one {
    grid-column: 1 / 3;
    grid-row: 1 / span 2;
  }

  .gallery-chapter-two {
    grid-column: 2;
    grid-row: 4 / span 2;
  }

  .gallery-chapter-three {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-chapter-four {
    grid-column: 1;
    grid-row: 5;
  }

  .gallery-chapter-five {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-chapter-six {
    grid-column: 1;
    grid-row: 4;
  }

  .site-footer {
    justify-items: center;
    padding-bottom: 3rem;
    padding-top: 3rem;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .copyright {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-actions {
    gap: 1.5rem;
  }

  .service-card {
    min-height: auto;
    padding: 2rem;
  }

  .service-featured {
    min-height: 410px;
  }

  .gallery {
    display: block;
  }

  .gallery figure {
    height: 340px;
    margin-bottom: 1rem;
  }

  .gallery img {
    min-height: 0;
  }

  .gallery .gallery-chapter-one,
  .gallery .gallery-chapter-two,
  .gallery .gallery-chapter-four {
    height: 410px;
  }

  .gallery .gallery-chapter-three,
  .gallery .gallery-chapter-six {
    height: 300px;
  }

  .gallery-chapter-six img {
    background: var(--dark-teal);
    object-fit: contain;
    object-position: center;
  }

  .gallery-chapter-six figcaption {
    background: linear-gradient(rgba(19, 49, 53, 0.9), transparent);
    bottom: auto;
    padding-bottom: 4rem;
    padding-top: 1.4rem;
    top: 0.65rem;
  }

  .form-row {
    display: block;
  }

  .inquiry-form {
    padding: 2rem 1.35rem;
  }
}

/* Editorial page concept */
body {
  background: var(--dark-teal);
}

h2 em {
  color: var(--rose);
  font-weight: 400;
}

.site-header {
  background: rgba(242, 236, 230, 0.95);
  border-bottom-color: rgba(107, 81, 73, 0.18);
}

.button:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.hero {
  min-height: 800px;
}

.hero-image {
  filter: saturate(0.72);
  width: 50%;
}

.hero-image-left {
  background-image: url("images/photos/hero-left.jpeg");
  background-position: 50% 60%;
  right: auto;
}

.hero-image-right {
  background-image: url("images/photos/hero-right.jpeg");
  background-position: 60% 66%;
  left: auto;
}

.hero-overlay {
  background: rgba(41, 82, 95, 0.57);
}

.hero-binding {
  bottom: 0;
  left: 50%;
  position: absolute;
  top: 78px;
  width: 1px;
  z-index: 2;
}

.hero-binding::before,
.hero-binding::after {
  background: rgba(242, 236, 230, 0.55);
  content: "";
  height: 43%;
  left: 0;
  position: absolute;
  width: 1px;
}

.hero-binding::before {
  top: 0;
}

.hero-binding::after {
  bottom: 0;
}

.hero-binding span {
  border: 1px solid rgba(242, 236, 230, 0.78);
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
}

.hero-content {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero h1 em {
  display: inline;
}

.hero-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.hero-actions {
  justify-content: center;
}

.page-sheet {
  box-shadow: 0 -18px 45px rgba(13, 43, 51, 0.2);
  position: relative;
  scroll-margin-top: 78px;
}

.page-sheet::before {
  background: linear-gradient(135deg, var(--dark-teal) 0 49%, var(--light-teal) 50% 100%);
  box-shadow: -3px 3px 8px rgba(41, 82, 95, 0.14);
  content: "";
  height: 42px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  z-index: 3;
}

.page-marker {
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  position: absolute;
  right: max(4.5rem, calc((100vw - var(--max-width)) / 2));
  text-transform: uppercase;
  top: 2rem;
  z-index: 2;
}

.page-one {
  background: var(--paper);
  margin: -3.5rem 1.5rem 0;
  z-index: 4;
}

.page-two {
  margin-top: -1.5rem;
  z-index: 5;
}

.page-three {
  background: var(--light-teal);
  margin: -1.5rem 1.5rem 0;
  z-index: 6;
}

.page-four {
  margin: -1.5rem 1.5rem 0;
  z-index: 7;
}

.section-heading > p:last-child,
.service-card p,
.process-list p,
.portfolio-heading > p,
.contact-note ol {
  color: var(--cocoa);
}

.service-card {
  background: var(--cream);
  border-color: rgba(107, 81, 73, 0.18);
}

.service-featured {
  background:
    linear-gradient(rgba(41, 82, 95, 0.32), rgba(41, 82, 95, 0.32)),
    url("images/photos/full-proposal-planning.jpeg") 55% 62% / cover no-repeat;
}

.service-featured p,
.service-featured .text-link {
  color: var(--light-teal);
}

.process {
  background: var(--cream);
}

.process-list li {
  border-top-color: rgba(107, 81, 73, 0.25);
}

.gallery figure {
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(41, 82, 95, 0.14);
  padding: 0.65rem;
}

.gallery figcaption {
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
}

.gallery figcaption span {
  color: var(--light-teal);
}

.contact-section {
  background: var(--paper);
}

.contact-note,
.inquiry-form,
.form-group input,
.form-group textarea {
  border-color: rgba(107, 81, 73, 0.3);
}

.form-group label {
  color: var(--cocoa);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}

.site-footer {
  background: #1a3c46;
}

@media (max-width: 800px) {
  .hero-overlay {
    background: rgba(41, 82, 95, 0.48);
  }

  .page-one,
  .page-three,
  .page-four {
    margin-left: 0.65rem;
    margin-right: 0.65rem;
  }

  .page-marker {
    right: 3.5rem;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    align-items: center;
  }

  .page-sheet::before {
    height: 32px;
    width: 32px;
  }

  .page-marker {
    font-size: 0.56rem;
    right: 2.8rem;
    top: 1.25rem;
  }

  .gallery-chapter-six figcaption {
    bottom: auto;
  }
}

/* Opening cover and page-turn transition */
.intro-cover {
  display: none;
  inset: 0;
  overflow: hidden;
  position: fixed;
  z-index: 200;
}

.intro-pending {
  overflow: hidden;
}

.intro-pending .intro-cover {
  display: block;
}

.intro-page {
  align-items: center;
  background: var(--paper);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  transform: translate3d(0, 0, 0) rotate(0);
  transform-origin: top left;
  will-change: transform, border-radius;
}

.intro-logo {
  display: block;
  height: auto;
  max-height: 72vh;
  max-width: 680px;
  object-fit: contain;
  width: min(62vw, 680px);
}

.intro-fold {
  background: linear-gradient(315deg, var(--dark-teal) 0 49%, var(--light-teal) 50% 100%);
  border: 0;
  bottom: 0;
  box-shadow: -6px -6px 18px rgba(41, 82, 95, 0.16);
  cursor: pointer;
  height: 88px;
  padding: 0;
  position: absolute;
  right: 0;
  transform-origin: bottom right;
  transition: filter 180ms ease, transform 300ms ease;
  width: 88px;
  z-index: 2;
}

.intro-fold:hover {
  filter: brightness(1.06);
  transform: scale(1.12);
}

.intro-fold:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: -8px;
}

.intro-cover:not(.is-peeling) .intro-logo {
  animation: intro-content-in 700ms ease-out both;
}

.intro-cover.is-peeling .intro-page {
  animation: peel-page-away 1350ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-cover.is-peeling .intro-fold {
  transform: scale(1.65);
}

@keyframes intro-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes peel-page-away {
  0% {
    border-bottom-right-radius: 0;
    transform: translate3d(0, 0, 0) rotate(0);
  }
  28% {
    border-bottom-right-radius: 16%;
    transform: translate3d(-2%, -3%, 0) rotate(-1deg);
  }
  100% {
    border-bottom-right-radius: 42%;
    transform: translate3d(-20%, -115%, 0) rotate(-8deg);
  }
}

@media (max-width: 520px) {
  .intro-logo {
    max-height: 68vh;
    width: 84vw;
  }

  .intro-fold {
    height: 64px;
    width: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-cover {
    display: none !important;
  }
}
