/* ============================================
   madebyhc — est. 06
   Typography-first, minimal, premium
   ============================================ */

/* Manrope (self-hosted variable font, weights 200–800) */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-y: scroll; /* Always show scrollbar to prevent layout shift */
  scrollbar-gutter: stable; /* Reserve space for scrollbar */
}

body {
  background: #ffffff;
  color: #000000;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography System */
.hero {
  font-weight: 200;
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-align: center;
}

.page-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 1.875rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  padding-top: clamp(1rem, 3vh, 2rem);
}

.hero-line {
  display: block;
}

.hero .dot {
  color: #ff0066;
  display: inline-block;
  transform-origin: center;
}

.tagline {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  opacity: 0.6;
  text-align: center;
  margin-top: 1.5rem;
}

.body-text {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 auto;
}

.emphasis {
  font-weight: 600;
}

/* Layout */
main {
  flex: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 10vw);
  position: relative;
}

/* Page Navigation */
.page-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  z-index: 50;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.page-nav.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.page-nav > * {
  pointer-events: auto;
}

.page-logo {
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1;
  letter-spacing: -1px;
  text-decoration: none;
  color: #000000;
  transition: opacity 0.2s ease;
}

.page-logo:hover {
  opacity: 0.6;
}

.page-logo .dot {
  color: #ff0066;
}

.page-nav-links {
  display: none;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-nav-links.hide-on-scroll {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.page-nav-links a {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.page-nav-links a:hover,
.page-nav-links a[aria-current="page"] {
  opacity: 1;
}

.page-nav-links a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
  opacity: 1;
}

/* Burger Menu */
.burger-menu {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.burger-menu:hover {
  opacity: 0.6;
}

.burger-menu:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

.burger-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.burger-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: clamp(4rem, 15vw, 6rem);
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.08);
  z-index: 200;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.mobile-menu-nav a {
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a[aria-current="page"] {
  opacity: 1;
}

/* Hide page logo on homepage only (all screen sizes) */
body:has(#site-title) .page-logo {
  opacity: 0;
  pointer-events: none;
}

/* Show page nav links on desktop only */
@media (min-width: 769px) {
  .page-nav-links {
    display: flex;
  }

  /* Hide burger menu and mobile menu on desktop */
  .burger-menu,
  .mobile-menu {
    display: none;
  }

  /* Hide scroll-burger on desktop */
  .scroll-header .scroll-burger {
    display: none;
  }
}

/* Show burger menu on mobile only */
@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
}

/* Scroll Header */
.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 5vw, 3rem);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-header .scroll-burger {
  display: none;
}

.scroll-header.visible {
  transform: translateY(0);
}

.scroll-header-logo {
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  line-height: 1;
  text-decoration: none;
  color: #000000;
  transition: opacity 0.2s ease;
}

.scroll-header-logo:hover {
  opacity: 0.6;
}

.scroll-header-logo .dot {
  color: #ff0066;
}

.scroll-header-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.scroll-header-nav a {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.scroll-header-nav a:hover,
.scroll-header-nav a[aria-current="page"] {
  opacity: 1;
}

.scroll-header-nav a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
  opacity: 1;
}

/* Hide scroll header nav on mobile, show burger menu */
@media (max-width: 768px) {
  .scroll-header-nav {
    display: none !important;
  }

  .scroll-header .scroll-burger {
    display: block;
  }
}

section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(3rem, 5vh, 8rem) 0;
}

/* Homepage hero section needs centering and min-height */
main section:first-child:not(:has(.page-title)) {
  min-height: 70vh;
  justify-content: center;
}

/* Content page sections with page-title: no min-height, explicit top padding */
section:has(.page-title) {
  min-height: 0;
  padding-top: clamp(3rem, 10vh, 8rem);
}

/* Navigation - Organic */
.philosophy-preview {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-decoration: none;
  color: inherit;
  font-style: italic;
  position: relative;
}

.quote-left {
  flex-shrink: 0;
  width: clamp(16px, 3vw, 24px);
  height: clamp(16px, 3vw, 24px);
  fill: currentColor;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  transform: rotate(180deg);
}

.quote-text {
  display: inline-block;
}

.philosophy-preview:hover {
  transform: translateX(4px);
  color:#666;
}

.philosophy-preview:hover .quote-left {
  opacity: 0.4;
}

.philosophy-preview:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 8px;
}

/* Client Banner */
.client-section {
  padding: clamp(5rem, 5vh, 12rem) 0;
}

.client-banner {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-image-container {
  position: relative;
  width: 100%;
  height: 60vh;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

.client-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  max-width: 60%;
  height: 60%;
  object-fit: contain;
}

.client-image.active {
  opacity: 1;
}

.client-link {
  display: inline-block;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  text-decoration: none;
  color: #000000;
  transition: transform 0.2s ease;
}

.client-link:hover {
  transform: translateX(4px);
}

.client-link:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

/* Content Pages */
.statement-list {
  list-style: none;
  max-width: 600px;
  margin: clamp(2rem, 5vh, 4rem) auto 0;
  padding: 0 1.5rem;
}

.statement-list li {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(2rem, 5vh, 4rem);
  text-align: center;
}

/* Rotating Quotes */
.rotating-quotes {
  position: relative;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

/* Fade entire list during transitions */
.rotating-quotes.transitioning {
  opacity: 0;
}

.quote-item {
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  cursor: pointer;
}

.quote-item.active {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.quote-heading {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
  color: #666666;
  transition: font-weight 0.3s ease, color 0.3s ease, transform 0.2s ease;
  padding: 0.5rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.quote-heading strong {
  font-weight: 700;
}

.quote-item:not(.active):hover .quote-heading {
  color: #000000;
  transform: translateX(2px);
}

.quote-item.active .quote-heading {
  font-weight: 600;
  color: #000000;
  cursor: default;
}

.quote-item.active:hover .quote-heading {
  transform: none;
}

.quote-context {
  display: none;
  margin-top: clamp(1rem, 3vh, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quote-item.active .quote-context {
  display: block;
}


.quote-context p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quote-context p:last-child {
  margin-bottom: 0;
}

/* Ensure smooth reordering with flexbox */
.rotating-quotes {
  display: flex;
  flex-direction: column;
}

.client-item {
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.client-name {
  font-weight: 600;
}

a.client-name {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a.client-name:hover {
  border-bottom-color: currentColor;
}

a.client-name:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

/* Contact */
.contact {
  text-align: center;
}

.contact a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover {
  border-bottom-color: #000000;
}

.contact a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

.contact p {
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-page {
  text-align: center;
  margin-bottom: clamp(3rem, 8vh, 5rem);
}

.contact-page a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-page a:hover {
  border-bottom-color: #000000;
}

.contact-note {
  margin-top: 1rem;
}

.contact-note a {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #000000;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.contact-note a:hover {
  opacity: 1;
}

.contact-address {
  text-align: center;
  font-style: normal;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #000000;
  opacity: 0.6;
}

.contact-address p {
  margin-bottom: 0.25rem;
}

/* Legal Page */
.legal-index {
  list-style: none;
  max-width: 62ch;
  margin: 0 auto clamp(3rem, 8vh, 5rem);
  padding: 0;
}

.legal-index li {
  margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
}

.legal-index a {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  display: inline-block;
}

.legal-index a:hover {
  border-bottom-color: #000000;
}

.legal-section {
  max-width: 62ch;
  margin: clamp(4rem, 10vh, 8rem) auto clamp(4rem, 10vh, 8rem);
  text-align: left;
}

.legal-section h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
  margin-top: clamp(3rem, 8vh, 5rem);
  line-height: 1.25;
}

.legal-section h3 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.legal-section p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.legal-section ul,
.legal-section ol {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 5vw, 10vw);
  opacity: 0.5;
  font-size: 0.875rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.7;
}

footer a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

.lang-toggle {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.lang-toggle a {
  color: #000000;
  text-decoration: none;
  margin: 0 0.5rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.lang-toggle a:hover,
.lang-toggle a.active {
  opacity: 1;
}

.lang-toggle a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

/* Animations */
@keyframes dotDrop {
  0% {
    transform: translateY(-14px);
  }
  60% {
    transform: translateY(2px);
  }
  80% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero .dot.animate {
  animation: dotDrop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Optional: Breathing animation on hover */
@keyframes breathe {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.04) translateY(0);
  }
}

.hero .dot:hover {
  animation: breathe 2s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

/* Desktop Banner Sizing */
@media (min-width: 769px) {
  .client-banner {
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
  }

  .client-image-container {
    height: 70vh;
  }

  .client-image {
    max-width: 60%;
    height: 65%;
    object-fit: contain;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  main {
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section {
    min-height: auto;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Homepage hero section - reduced padding, not centered */
  main section:first-child:not(:has(.page-title)) {
    min-height: auto;
    padding: clamp(2rem, 8vh, 4rem) 0 1rem;
    justify-content: flex-start;
  }

  /* Add more top padding for page-title on mobile to clear fixed header */
  .page-title {
    padding-top: clamp(4rem, 10vh, 6rem);
  }

  /* Consistent top spacing for content on mobile */
  .statement-list {
    margin-top: 2rem;
  }

  .legal-section {
    margin-top: 2rem;
  }

  .client-section {
    padding: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tagline {
    margin-top: 0.5rem;
  }

  .statement-list li {
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
  }

  .client-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .client-image-container {
    min-height: 30vh;
    max-height: 35vh;
    width: 100%;
    padding: 0 1rem;
  }

  .client-image {
    max-width: 70%;
    height: 60%;
    object-fit: contain;
  }

  .client-link {
    margin-bottom: 1.5rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .philosophy-preview,
  .body-text {
    text-align: center;
    width: 100%;
  }

  .contact {
    padding-top: 2rem;
  }
}

@media (max-width: 480px) {
  main {
    padding: 0.75rem;
  }

  .hero {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  section {
    padding: 0.75rem 0;
  }

  section:first-child {
    padding: 1.5rem 0 0.75rem;
  }

  .client-section {
    padding: 1.5rem 0 0.75rem;
  }

  .client-image-container {
    min-height: 22vh;
    max-height: 25vh;
    padding: 0 1rem;
  }

  .client-image {
    max-width: 75%;
    height: 60%;
  }

  .client-link {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
}

/* Sundial — dark mode after sunset */
html.dark {
  color-scheme: dark;
}

html.dark body {
  background: #000000;
  color: #ffffff;
}

html.dark .scroll-header,
html.dark .mobile-menu {
  background: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html.dark .mobile-menu {
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.4);
}

html.dark .burger-dot {
  background: #ffffff;
}

html.dark .page-logo,
html.dark .scroll-header-logo,
html.dark .scroll-header-nav a,
html.dark .page-nav-links a,
html.dark .mobile-menu-nav a,
html.dark .philosophy-preview,
html.dark .client-link,
html.dark .contact a,
html.dark .contact-page a,
html.dark .contact-address,
html.dark footer a,
html.dark .lang-toggle a,
html.dark .legal-index a,
html.dark .quote-heading {
  color: #ffffff;
}

html.dark .quote-item:not(.active) .quote-heading {
  color: #aaaaaa;
}

html.dark .quote-item:not(.active):hover .quote-heading {
  color: #ffffff;
}

html.dark .quote-item.active .quote-heading,
html.dark .quote-context p {
  color: #ffffff;
}

html.dark .contact a:hover,
html.dark .contact-page a:hover,
html.dark .legal-index a:hover {
  border-bottom-color: #ffffff;
}

html.dark :focus-visible,
html.dark a.client-name:focus-visible {
  outline-color: #ffffff;
}

/* Keep client logos on white — they're designed for it */
html.dark .client-image-container {
  background: #ffffff;
  border-radius: 2px;
}

/* Sundial fun fact — always visible, clickable toggle */
.sundial-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

.sundial-toggle:hover {
  opacity: 0.7;
}

.sundial-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* Print Styles */
@media print {
  .page-nav,
  .scroll-header,
  .mobile-menu,
  .burger-menu,
  .lang-toggle,
  .client-image-container {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: none;
  }

  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
  }
}